Hi All,
Am binding ValueListItems to the UltraGridCell as showm below.
vl1.ValueListItems.Add(1, "Yes");
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
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.
Hi Mike,
I also having the same problem, i ve to write few validations on selection change of value list item. How do I get selected value of valuelist on cell change event. We can not use Text property for comparision, since it is populated from database.
Thanks,Abhishek