Hi,
I am using the RadGrid. I need to select a row (not only the text of the row) and call a method (server-side). I don't know how to do it.
I konw how to call a method (client-side) :
I am using the RadGrid. I need to select a row (not only the text of the row) and call a method (server-side). I don't know how to do it.
I konw how to call a method (client-side) :
protected void RadGridFlashLines_ItemCreated(object sender, GridItemEventArgs e){
if (e.Item.DataItem != null){
if (e.Item is GridDataItem){
e.Item.Attributes[
"href"] = "#";
e.Item.Attributes[
"onclick"] = String.Format("return ShowEditForm('{0}','{1}');", ((Flash)e.Item.DataItem).Fla_Id, e.Item.ItemIndex);
}} }
I would like instead, to call, for example, a method name DisplayElementSelected() (server-side). Is it possible with the RadGrid component ?
Thank you in advance,