Hi,
Virtualization in the data grid is mostly a headache when a grid only has a few dozen or hundred rows - I would much rather that all rows are available for classing so that they hold their class after the row scrolls out of the viewport. Similarly, I would like to class rows that may not yet be rendered and may scroll into view by user action. Is there a way to turn off paging/virtualization and simply have all data available at all times?
Here's an example that illustrates my problem - and I'm open to a suggestion on how to make it work if virtualization cannot be turned off:
- User may click a bar on the bar chart. The corresponding row in the grid is classed with 'selected' and shows with an orange month/year
- If the user scrolls up or down so that the selected row leaves the viewport, the class on the selected row is lost and the month/year is no longer orange if the user scrolls that row back into view.
Similarly, the user might select a bar in the chart that is not currently in the viewport. I would like to add the 'selected' class to any DIV with the correct selector even if the DIV doesn't yet exist in the viewport. jQuery handles this when the On Click events are set up properly, but I cannot seem to do the same thing in PQ. If I create a list with getCellsByClass, only those in the current viewport are returned for example. The list will not include future elements created with the same class...
Thanks in advance for your advice.