Grid

Hi,
function customFilter(){
 
  var text_value = $(‘filter_order_id’).value.replace(/\s+/g,"");
  mygrid.filterBy(“0”,function(a){
      return eval(a+text_value);}
  });
}

i am not able to check for range values in this function i am getting error.

There is the issue in your code -  the unnecessary “}”:

mygrid.filterBy(“0”,function(a){
      return eval(a+text_value); //}   
 });