Hi,
I am trying to show data in a postgres DB in a RadVirtualGrid. Data is big and continuously flows and changes, so I decided to use RadVirtualGrid, first I started witf RadGridView with VirtualMode on but decided to use RadVirtualGrid, hope thats the correct decision?
I can show the data correctly and get updates via LISTEN/NOTIFY mechanism of Postgres.(sometimes it stops updating but I think it is a postgres side problem) . I couldnt make the filtering work.
With regards to code I attached, Is it really possible to use the FilteringColumn which is shown when RadVirtualGrid.AllowFiltering==true.
When I enter a value to filter it doesnt work and filter textbox dissapears:
Here I hit 'APPLY FILTERS' button or pres enter key it show like below:
My reqs are:
* Display data with minimum delay
* Filter with column values. Some columns are decimal but some are enums so instead of writing the enum value in the filter having a dropbox (excel style) would be good.
* Filtering will work on all data not just on the visible rows in the grid. Also filtered grid should be updated when new data arrives.
* Sorting (optional)
* Export data to XML (all data not only the visible rows)
Thanks in advance !