Change makeFilter target column

Hello!

If I use the makefilter option in my grid works fine but i would like to change the colum what filter the function with select box, but when I use the makefilter command again it doesn’t work normaly.

$("#filter_id").change(function() { ind=$("#filter_id").val(); mygrid.makeFilter("txbRecordsListCLSearch",ind); });

mygrid.makeFilter creates new filter logic, but will not remove the previous one ( there is no public API to remove once created filters )

Unfortunately the filters positions cannot be changed dynamically.
You will have to destruct the grid and build new one with the filter in the needed column.