Hi Everyone,
I need to get a specific value (the ID) from a selected row, call a stored procedure passing this ID to obtain a recordset based of this value, then I want to populate these values in controls (textboxes, comboboxes, etc.) in the panel below the grid. I'd like it so the page doesn't refresh. I'm currently grabbing the ID from the code below, but this causes the page to refresh. How do I go about this without a page refresh? Thanks for any help that you can provide.
I need to get a specific value (the ID) from a selected row, call a stored procedure passing this ID to obtain a recordset based of this value, then I want to populate these values in controls (textboxes, comboboxes, etc.) in the panel below the grid. I'd like it so the page doesn't refresh. I'm currently grabbing the ID from the code below, but this causes the page to refresh. How do I go about this without a page refresh? Thanks for any help that you can provide.
protected void uxRadGridList_SelectedIndexChanged(object sender, EventArgs e) |
{ |
foreach (GridDataItem item in uxRadGridList.SelectedItems) |
{ |
int rowID = Convert.ToInt32(item["PrimaryKey"].Text.ToString()); |
} |
} |