Get the current DataRow in DataTable #740
-
Hi, i'm looking for a way to get the current DataRow when I click on it.
But no matter which row I click on, here is the result :
|
Beta Was this translation helpful? Give feedback.
Answered by
roniemartinez
Dec 20, 2022
Replies: 2 comments 4 replies
-
Use the param on_select_changed=lambda e: e.control # <-- do something with `e.control` You can store |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Soif2Sang
-
for me , It took time to understand what data should I retrieve from e.control.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use the param
e
and you can access the row usinge.control
You can store
data
on the row or check the index of that row from the table