How to set default parameters for all widgets?

Hi, is it possible to set parameters for widgets to replace default values?

I am looking for something like component configurating in config/main.php but for widgets:




        // apply this default settings to all CGridView widgets

        'zii.widgets.grid.CGridView'=>array(

            'itemsCssClass' => 'myClass',

        ),



I just don’t want to set some default values for all widgets manually.

Check this:

http://www.yiiframework.com/doc/guide/1.1/en/topics.theming#customizing-widgets-globally

Thank you, exacly what i was looking for. :)