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
1210
ValueList in UltraGrid: How to catch ValueChanged event for the entire colum
posted

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

Parents
No Data
Reply
  • 17259
    Suggested Answer
    Offline posted

    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.

Children
No Data