This is a migrated thread and some comments may be shown as answers.

which event after selecting in GridViewMultiColumnComboBox in GridView

2 Answers 88 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Tan
Top achievements
Rank 1
Tan asked on 29 May 2012, 03:18 AM
I have a gridview and  multicolumncombobox in that gridview. How do I detect the event when  I select the value/item from the combobox.

2 Answers, 1 is accepted

Sort by
0
Svett
Telerik team
answered on 31 May 2012, 01:27 PM
Hi Tan,

You can handle the ValueChanged event of RadGridView in the following manner:

private void radGridView1_ValueChanged(object sender, EventArgs e)
{
    RadMultiColumnComboBoxElement editor = sender as RadMultiColumnComboBoxElement;
    if (editor != null)
    {
        // TO DO:
    }
}
Greetings,
Svett
the Telerik team
RadControls for WinForms Q1'12 release is now live! Check out what's new or download a free trial >>
0
Tan
Top achievements
Rank 1
answered on 01 Jun 2012, 09:56 AM
Hi Svett
Thank for your help.
Tags
GridView
Asked by
Tan
Top achievements
Rank 1
Answers by
Svett
Telerik team
Tan
Top achievements
Rank 1
Share this question
or