I have a tool bar in my rad grid with an command name of "Stock". When a user selects a row and clicks on the button, I need to get the row details.
How can I get a hold of the details for the row selected? I do have Postback on client selecting row, but I'm not sure that is correct.
How can I get a hold of the details for the row selected? I do have Postback on client selecting row, but I'm not sure that is correct.
protected
void grdProducts_ItemCommand(object sender, GridCommandEventArgs e)
{
if (e.CommandName== "Stock")
{
????
}
}