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
80
ValueListItem Selection Changed Event
posted

Hi All,

Am binding ValueListItems to the UltraGridCell as showm below.

ValueList vl1 = new ValueList();

vl1.ValueListItems.Add(1, "Yes");

vl1.ValueListItems.Add(2, "No");
vl1.ValueListItems.Add(3, "N/A");

this.ultraGrid1.ActiveCell.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;

When i change an item in the list one new form should be opened ,this is what my requiresment is. 

Not sure about the event which will be fired after the valuelist item is changed, i have tried with ListChanged event but no use,

Could any one of yoy help me on this,

Thanks in Advance,

Pavana

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi Pavana,

        I would use the CellChange even of the grid.  Note that this event will fire no matter how the value of the cell is changed - so it could be triggered by the user entering the cell and using the up/down arrow keys. 

        Also, you have to use the Text property of the cell to get the new selected value, you can't use Value, because Value will not be updated, yet.  

Children