YiiBooster
YiiBooster copied to clipboard
radioButtonListGroup
So these are basically going in my database as 0,1,2,3,4
how can I store it as "New" ,"Used" etc., ? code is radioButtonListGroup($model, 'Condition', array('widgetOptions' => array( 'data' => array( 'New', 'As Good as New', 'Used', 'Slightly Damaged', 'For Scrap')) )); ?>
The data array should be associative, as the keys are what are used for option values. In your case you should send the 'data' as array( 'New' => 'New', 'As Good as New' => 'As Good as New', 'Used' => 'Used', 'Slightly Damaged' => 'Slightly Damaged', 'For Scrap' => 'For Scrap' )
I think this coulb be closed, works for me, thanks!