Hi,
I’m using Guriddo PHP 5.5.1 and it’s nice.
But there’s something wrong with Inline Autocomplete.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
$grid->setColProperty("CUSTOMERID ", array("label" => "Customerid", "width" => 75, "hidden" => true, "searchoptions" => array("sopt" => array('cn', 'nc')))); // It's working if direct colum autocomplete like this // $grid->setAutocomplete("CUSTOMERID",false," // SELECT RR.CustomerID, RR.NAMA // FROM CUSTOMER rr // WHERE upper(RR.nama) like '%' || upper( ? ) || '%' // ORDER BY rr.NAMA // ",null,true,true); $grid->setColProperty("NAMA ", array("label" => "Customer", "width" => 75, "editable" => true, "searchoptions" => array("sopt" => array('cn', 'nc')))); $grid->setAutocomplete("NAMA", "#CUSTOMERID", " SELECT rr.NAMA, rr.NAMA, rr.CUSTOMERID FROM CUSTOMER rr WHERE upper(RR.nama) like '%' || upper( ? ) || '%' ORDER BY rr.NAMA ", array("itemLength" => 50), true, true); |
It’s working fine in Normal / modal form navigation. But not saving CUSTOMERID column on Inline.
TIA,
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top