Problem reading select options using SelectOptionsConnector.
Client side:
var formData = [
{type: "select", label: "Reason", connector:"scr/loadReason.php"}
];
myForm.loadStruct(formData,"json");
Server side:
$optConn = new SelectOptionsConnector($res,"Oracle");
$optConn->enable_log("/tmp/test.log",true);
$optConn->render_table("ROUTE_SERVER.OVERRIDE_REASON_","OVRS_ID", "OVRS_ID,OVRS_DESC");
My intial assesment was that the problem is with Oracle, since, this option seems to work with MySQL. However, additional investigation found that this same steup works okay using Chrome and doesn’t work using IE. Can someone assist with this?