I have a custom filtered grid where first row for each column is used by end users to search for a particular value in a column. (each row has a text box where user's can enter the value they need to search for) Initially -
when the grid is loaded on the page, text box in row 1 for each column is empty and data is displayed in the grid.
user can enter whatever value he wants to search in a particular column and hit enter, this would reload the grid with the correct filtered records.
Issue - How do we allow user to search for null values in a column. Since currently if the textbox in row 1 is empty, we display grid back to default status i.e load all records.
Thanks