hi, im using EAdvancedArBehavior for my tabular input it works ok, but when i try to add my time picker, the picker doesnt show… here is my picker in my form.
<td>
<?php echo $form->labelEx($model,"[$id]time"); ?>
<?php $this->widget('application.extensions.jui_timepicker.JTimePicker', array(
'model'=>$model,
'attribute'=>"[$id]time",
'options'=>array(
'showPeriod'=>false,
'hours'=>array('starts'=>07, 'ends'=>18),
),
'htmlOptions'=>array('size'=>5,'maxlength'=>5),
));?>
</td>