Hi Guys,
I have a column in my grid in which i have set a value list.
I want to define an event handler for cases where the value is changed.
Can this event be set for the entire column valuelists - exactly as i have set the value list for the entire column?
I would also need to know (when the event is being fired) on which row it occured.
Is this possible?
Just to be clear: I have set the value list as follows:
queryGrid.DisplayLayout.Bands[0].Columns["Logical Operator"].ValueList = operatorsList;
Now, for this value list, i want to defined an event handler for value changes.
I prefer not assigning this row by row.
Thanx!!!
Gili
You can use any cell change event like CellChange or AfterCellUpdate (but there are some diffs), and check e.Cell.Column.Key to know the column and e.Cell.Row to know the row.