Replies: 1 comment 2 replies
-
I have been able to figure out how to get the coordinates (row, column) of the selected cell: My problem/request is that I can't figure out how to capture when a cell is selected by the user clicking on it. I'd like to be able to get the selected cell by clicking on it like some other widgets do. I've experimented with a custom DataTable and capturing the on_click event with a little success, but not completely. Maybe some pointers from the gurus could help us both. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
A not uncommon application scenario is to manage a list of items in a table which shows some summary data about each item, and if you click on a row, then another pane populates with additional information for that item (which may include some of the summary information, but also includes other details which are too much to show in the table). Although
DataTable
would seem a good fit for this, it isn't really, because:I've played with the new
ListView
functionality, but it seems to slow down a lot with big tables (of the order of 100K rows), whereasDataTable
seems to proceed with async table population at a more reasonable pace. Have I missed some functionality inDataTable
which allows it to be used in the above use case?Beta Was this translation helpful? Give feedback.
All reactions