Hi All,
I have a column inside my grid that hold a drop down list. On client side or in a Javascript function, does anyone know how way to make a reference to that drop down list?
This is what I have in my code:
I have a column inside my grid that hold a drop down list. On client side or in a Javascript function, does anyone know how way to make a reference to that drop down list?
This is what I have in my code:
var grid = <%= rgDRFormASPPFCaseInfo.ClientID %>;
var tableView = grid.MasterTableView;
var ID = tableView.GetCellByColumnUniqueName(tableView.Rows[RowIndex],"ID").innerHTML;
var ddlList = tableView.GetCellByColumnUniqueName(tableView.Rows[RowIndex],"Answer");
I tried to access ddlList like a drop down list, but it doesn't recognized the properties belong to the drop down list.
Please help
Thanks