Finding the Best event occure after changing a combo box cell value

i am using a control grid in my application.i have 2 columns and both of them are ComboBox.
when column 1 is changed , Column 2 will fill with some values.
Now , I want to find a suitable Event on grid that occure after changing the first columns.


1 Reply

JJ Jisha Joy Syncfusion Team October 20, 2008 12:08 PM UTC


Hi,

Thank you for your interest in SYncfusion Products.

You can handle CurrentCellCloseDropDown for this. Please refer the code:


this.gridControl1.CurrentCellCloseDropDown += new Syncfusion.Windows.Forms.PopupClosedEventHandler(gridControl1_CurrentCellCloseDropDown);


void gridControl1_CurrentCellCloseDropDown(object sender, Syncfusion.Windows.Forms.PopupClosedEventArgs e)
{
//
}

Also please refer the KB article that shows "How do I make the value in one combo box cell determine the drop-down list in another combo box cell? "

Here is the link:


http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=115\

Please let me know if I misunderstood your requirements.

Regards,
Jisha


Loader.
Up arrow icon