Combo as filter

Hi,
i have a big problem and i dont find solutions surfing on the website.

When i use #connector_select_filter into a grid, and this is a combo; i don’t want the system works with → like ‘%value%’ but i need that is → =value

Becouse for me is the id of a row. And at the moment if i select for example Nation with code 1, the grid shows me al rows with nation code 1, but also 11,12,…,19,21,31,…

How i can solve the problem ?

Many thanks

Emanuele

Hi,
unfortunately there is no way to solve it.

i have the same problem!
any solutions???

In case of server-side filter you can use beforeFilter event on server side

function custom_filter($filter_by){ $index = $filter_by->index("some_field"); if ($index!==false) //there is client side input for the filter $filter_by->rules[$index]["operation"]=" = "; //replace like with = } $conn->event->attach("beforeFilter","custom_filter");

yes, it works!

thank you!
Fabio