Hi All,
I have a column inside my grid that hold a drop down list. On client side or in a Javascript function, anyone know a correct 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, anyone know a correct 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");
Please help
Thanks