Here is my problem :
->field_type('xxxx','multiselect', array( "1" => "aaaa", "2" => "bbbb", "3" => "cccc", "4" => "dddd", "5" => "eeee")); all works good, but when is added in to table i get 1,2,3,4,5 normal ..now when i do a search for lets say aaaa on the table i get no rezoults because in the table its not aaaa but 1. I fix this by :
->field_type('xxxx','multiselect', array( "aaaa" => "aaaa", "bbbb" => "bbbb", "cccc" => "cccc", "dddd" => "dddd", "eeee" => "eeee")); so now in the table is added aaaa,bbbb and i can do search on them. Is this normal or is this a bug ?