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
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”;