I had the same problem with a dropdown defined like this:
PHP Code:
$app_list_strings['mydropdown']=array (
'0' => '0 %',
'20' => '20 %',
'40' => '40 %',
'60' => '60 %',
'80' => '80 %',
'100' => '100 %',
);
By changing the dropdown to the following (all database values starting with "0" and having 4 digits) the problem was solved.
PHP Code:
$app_list_strings['mydropdown']=array (
'0000' => '0 %',
'0020' => '20 %',
'0040' => '40 %',
'0060' => '60 %',
'0080' => '80 %',
'0100' => '100 %',
);
You'll get some curious effect if the database values on the left side have only 3 digits, "100" starting with a "1". :-)
goog luck!
hk
Bookmarks