I have a Radnumeric , Radcombobox and rad radcheckbox in Radgrid inside GridtemplateColumn . I want to extract the value entered by the user in the ondelete event on the client side .
Actually I want to get the value entered by the user and subtract the value in the footer .
I already know to do this in onfocus and onblur event . i want this to happen in ondelete event in the client side .
var grid = $find("<%= RadGrid2.ClientID %>");
var row = grid.MasterTableView.get_dataItems()[eventArgs.get_itemIndexHierarchical()].get_element();
credit_col = grid.MasterTableView.getCellByColumnUniqueName(row, "GlcodeTextBox")
I tried the above code but it did not solve the problem . More over i dont want the cell.innerhtml with all sapan the html tags . I want the value only in ondelete event .
Please kindly help us . We have spent lot of time in this but we are unable find a solution .
Actually I want to get the value entered by the user and subtract the value in the footer .
I already know to do this in onfocus and onblur event . i want this to happen in ondelete event in the client side .
var grid = $find("<%= RadGrid2.ClientID %>");
var row = grid.MasterTableView.get_dataItems()[eventArgs.get_itemIndexHierarchical()].get_element();
credit_col = grid.MasterTableView.getCellByColumnUniqueName(row, "GlcodeTextBox")
I tried the above code but it did not solve the problem . More over i dont want the cell.innerhtml with all sapan the html tags . I want the value only in ondelete event .
Please kindly help us . We have spent lot of time in this but we are unable find a solution .