Grid Filter only empty rows

Hi,

I have a grid, with a rows that have some values and others dont.

I know how to filterBy , and how to remove the filter>

How can i be able to show only empty rows.

Martin N. Moche

Please, try to use:
mygrid.filterBy(index,function(a){ return (a=="");});

Thx so much, it works :slight_smile: