Grouping along with autocomplete

Hi,

I’ve a case where the values of 2nd combo (child) are dependent on the selected value in 1st combo (parent). There can be thousands of values for child combo. Thus for child combo auto-complete feature makes more sense. However, I’m not able to find the way to fuse grouping along with auto-complete feature.

In grouping, PARENT value is sent for child combo’s filtering component. Is it possible to send the MASK value of auto-complete feature along with PARENT value?

Thanks,
Chetan

If you are using

comboA.attachChildCombo(comboB,“some.php”);

Where comboB is in filtering mode, each time when comboA changed, it will reload comboB as

some.php?parent=ID

but entering any data in the comboB will trigger reloading as

some.php?parent=ID&mask=MASK

so both parameters will be sent to the server side.