Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
Choose clicked cell value from an UltraGrid (dynamic)
posted

Hello.

I'm trying to display on a messagebox a particular cell that the user chooses from. I currently have it with fixed values.

var cell = grdSubfamilias.DisplayLayout.Rows[0].Cells["ClassID"].Value;

MessageBox.Show(""+ cell);

That code will always display a fixed value from a cell. What I would like the code to do is display the value depending on what cell the user double clicked.

Thanks!

Parents Reply Children
No Data