How Can I get a selected CellValue In widgets.Table? #3438
-
How Can I get a selected CellValue In widgets.Table? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The table does not store your data, so you cannot ask it for value at a position. |
Beta Was this translation helpful? Give feedback.
-
thx, after i send this , i just figure out how to solve this, thx so much! |
Beta Was this translation helpful? Give feedback.
The table does not store your data, so you cannot ask it for value at a position.
The widget renders what is present in a backing data store of some sort - so you should ask your data what is at the position.
The
OnSelected
andOnUnSelected
help you know when the selection changes, but we cannot tell you what data was there.