Hello,
I am gonna try to explain my problem the best I can.
I have a few checkboxes, that I transform in JQuery button, with CJuiBUtton widget :
$this->widget('zii.widgets.jui.CJuiButton', array(
'buttonType'=>'checkbox',
'name'=>'days['.$j.'-'.$i.']',
'caption'=>' ',
'id'=>'day-'.$j.'-'.$i,
'htmlOptions'=>array('class'=>'cellinput'),
'value'=>false,
'options'=>array('disabled'=>false),
));
These checkboxes represents an hour, in a day, for a weekly planning. When I change the week, I use Ajax to reload the planning, but the JQuery script isn’t reloaded, so my checkboxes are regular checkboxes, and not JQuery UI buttons.
My Planning is a Widget, and this widget register some scripts (including the JQuery UI script), but they are not reloaded when I use ajax.
If I am not clear, tell me and I will try to explain better.
Thanks you very much