Hi
I need to determine in the SelectedItemChange event of the first dropdownlist in a rad grid row, the parameters to pass to the 2nd and 3rd dropdownlists for them to databind.
Note: This in insert mode (AddNew record) , and no Records loaded i.e. Blank Table,...and trying to create the new record.
So, how do I reference these other dropdownlists per that Grid Row" .....I don't have the GridEditableItem param in the drop downs param
Typically I woud expect something like
DropDownList my1stDropDown = Grid1.EditedRow,FindCZontrol(1stDropDown) as DropDownList;
string SelVal = my1stDropDown .SelectedValue;
DropDownList my2ndDropDown = Grid1.EditedRow,FindCZontrol(2ndDropDown) as DropDownList;
my2ndDropDown.DataSource = SomeDSource;
etc
TIA
Neal
I need to determine in the SelectedItemChange event of the first dropdownlist in a rad grid row, the parameters to pass to the 2nd and 3rd dropdownlists for them to databind.
Note: This in insert mode (AddNew record) , and no Records loaded i.e. Blank Table,...and trying to create the new record.
So, how do I reference these other dropdownlists per that Grid Row" .....I don't have the GridEditableItem param in the drop downs param
Typically I woud expect something like
DropDownList my1stDropDown = Grid1.EditedRow,FindCZontrol(1stDropDown) as DropDownList;
string SelVal = my1stDropDown .SelectedValue;
DropDownList my2ndDropDown = Grid1.EditedRow,FindCZontrol(2ndDropDown) as DropDownList;
my2ndDropDown.DataSource = SomeDSource;
etc
TIA
Neal