YiiBooster icon indicating copy to clipboard operation
YiiBooster copied to clipboard

radioButtonListGroup

Open sachy123 opened this issue 11 years ago • 2 comments

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')) )); ?>

sachy123 avatar Aug 27 '14 13:08 sachy123

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' )

Kurounin avatar Aug 27 '14 14:08 Kurounin

I think this coulb be closed, works for me, thanks!

beatep avatar Nov 03 '14 14:11 beatep