Hello,
I have a FULL dhtmlxGrid using a number of connector_select_filters. The database is expecting ‘1’ but i want to display a different text label in the drop down list “Yes”. The problem is it seems to be using the display text “Yes” instead of the “1” which means it fails when trying to do a sql lookup.
Any help on this would be great as its driving me mad. I have tried lots of different combinations as well as different code examples but no joy.
$options = array(
“1” => “Yes”,
“0” => “No”,
);
$grid->set_options(“positioned”,$options);