Send additional request param to combo enableFilteringMode

Hi,

As I understand the following method call makes that when you change the content of the combobox it sends a request to the server with the following request parameters.
z.enableFilteringMode(true,“php/complete.php”,cache);

php/complete.php?pos=0&mask=TEXT

I need to send an adittional parameter to that url. For example:
php/complete.php?pos=0&mask=TEXT&param1=anotherParam

Is it possible or is there another way to achieve that?

Thank you

Alfredo Osorio

Hi,

you need to call z.enableFilteringMode(true,“php/complete.php?param1=anotherParam”,cache); when param1 needs being set.