Hello, I'm trying to add a "class" attribute to my form label.
I read this comment (http://fuelphp.com/forums/topics/view/9238/10#11057) that show a way to achieve this, but when I do that with my model $_properties array i get an error.
ErrorException [ Notice ]: Undefined index: label
COREPATH/classes/form/instance.php @ line 593
protected static $_properties = array(
'id',
'sigla' => array(
//'label' => array('label' =>'Sigla'),
'data_type' => 'varchar',
'validation' => array('required', 'max_length' => array(20)),
'form' => array(
'label' => array('label' => 'Sigla', 'class' => 'control-label'),
)
),
.
.
.