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,…
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");