Sorry,
I am not able to set the
zii.widgets.jui.CJuiDatePicker
at the right position in my form view.
I want to position it below the linked input field.
I tried some HTML options but with no result. The widget remains over the input field. I have to press the ESC key to see the input field.
Also I would like to get the DatePicker dragable if this is possible.
This is my code:
$this->widget('zii.widgets.jui.CJuiDatePicker', array(
'id' => 'date-begin',
'model' => $model,
'attribute' => 'Beginn',
'language' => 'de',
'htmlOptions' => array(
'size' => '10',
'maxlength' => '10',
'style' => 'top:100px'
),
));
Please help.