User1126057398 posted
On page, there are 2 grids containing 2 dropdown each. To get dropdown value, I am using onchange event and storing it in hidden value like:
$(.classDropDown).change(function(){
$('#<%=hfSelectedValue.ClientID%>').val( this.value);
});
In the above .classDropDown is the class defined on dropdown.
How can I get dropdown's grid name and how can I get column index?