I amusing this technique to set an edit link in a grid template column.
editlink.Attributes.Add("href", "#");
editlink.Attributes.Add("onclick", string.Format("return ShowEditForm('{0}','{1}');", e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["SubscriberID"], e.Item.ItemIndex));
In the past, I have called a telerik window with a separate aspx page that would display the detail record data for the ID that was passed in the querystring.
I am now working with bootstrap and would like to do this with a bootstrap modal.
Are there any examples where this has been done?