Hi,
This is known as event bubbling.
When you have many controls in data grid and you want to handle their events.
For all the controls in data grid there is one common event i.e OnItemCommand(object o, DataGridCommandEventArgs).
protected void OnItemCommand(object o, DataGridCommandEventArgs e).
{
when the index of the drop list will be changed this event is fired and you can populate as mant combo box as you want.
Also if you want to fetch the values of any controls you can do like this.
string val = e.Item.Cells[3].Controls[0].value;
or any thing depends on your control.
I Hope it will solve your problem.
}
Enter your message below
Sign in or Join us (it's free).