crisu83 / yiistrap

Twitter Bootstrap for the Yii PHP framework.
http://www.getyiistrap.com
BSD 3-Clause "New" or "Revised" License
286 stars 176 forks source link

bs3 Make TbFormInputElement consistent with parent CFormInputElement: #239

Closed marcovtwout closed 10 years ago

marcovtwout commented 10 years ago

Make TbFormInputElement consistent with parent CFormInputElement:

  1. add $coreTypes. Note that this change is NOT backwards compatible (although previous behavior was undocumented).
  2. use class or path alias as $type.

With these changes you can use TbForm in the same manner as original CForm:

'elements' => array(
    'name' => array('type' => 'text'),
    'date' => array('type' => 'zii.widgets.jui.CJuiDatePicker'),
),