Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Gunnar Larsson on May 01, 2008 10:53
open dhtmlx forum
Add further arguments to php-file

Hi!

Is it possible to supply further arguments to the php file used to return data to fill the combobox(es)?, i.e. something like complete.php?pos=0&mask=TEXT&table=TABLENO (instead of complete.php?pos=0&mask=TEXT), where TABLENO is a variable that is not related to the combobox and is set dynamically?

Regards,
Gunnar Larsson



Answer posted by Support on May 02, 2008 05:09
You can set any additional variables during combo initialization
    combo.enableFilteringMode(true,"complete.php?table=TABLENO");

or in any later moment as
    combo._xml="complete.php?table=TABLENO";