I have a GridPanel where there is a column with ListFilter option.After setting specific list options as filter values it works perfectly.
It would be desirable to check dynamically for new values in the specific column(e.g. after new inserting) and change automatic the Filter List options.
What we would like to do actually, is to be able to load the grid filter menu through a custom store or array.
Or at least, be able to create custom items, not at design / definition time, but at run time (i dont want them to be fixed and pre -defined).
Grid filtering is something we would like to implement in our application, but since this is a "plugin", there is no info for this on the official documentation.
Is there any documentation on how i could do this?
Or at least, some links to such an example?
Sort of, what i would really like to have is something in between.
im sure you all used Microsoft Excel. If you ever used its data filter feature, what it does is that it drops down a list of values
that is the equivelant of a "distinct" select running on the sql server, only it is done LOCALLY.
Could i achieve something like this? Right now, i'm in the position to prepare my own custom store of distinct - unique values , depending on the column, but how could i use this as an input / source for the drop down menu about to be dropped when the user clicks the header of a column?
Sort of, what i would really like to have is something in between.
im sure you all used Microsoft Excel. If you ever used its data filter feature, what it does is that it drops down a list of values
that is the equivelant of a "distinct" select running on the sql server, only it is done LOCALLY.
Could i achieve something like this? Right now, i'm in the position to prepare my own custom store of distinct - unique values , depending on the column, but how could i use this as an input / source for the drop down menu about to be dropped when the user clicks the header of a column?
I've never used this myself but it looks like this could do it for you.