Having a multiselect field for fruits, I would like to have an option where user can tell the amount of each item on multiselect list
$crud->field_type('fruits','multiselect',
array( "1" => "banana", "2" => "orange", "3" => "apple"));
Is there a way to do let user select
5 banana
3 orange
of banana,orange and, apple options?
I would like to solve it using multiselect.