I was looking at http://www.yiiframework.com/doc/guide/form.table for doing some batch updates. It appears to break with the zii jui widgets.
<div class="row">
<?php echo CHtml::activeLabelEx($item,'dateAssigned'); ?>
<?php
$this->widget('zii.widgets.jui.CJuiDatePicker', array(
'model'=>$item,
'attribute'=>'['.$i.']dateAssigned',
'options'=>array(
'showAnim'=>'fold',
'dateFormat'=>'yy-mm-dd',
),
));
?>
<?php echo CHtml::error($item,'dateAssigned'); ?>
</div>
Error:
Property "item." is not defined.