This question is locked. New answers and comments are not allowed.
How can i hide all the grid row except which i selected.
Html.Telerik().Grid(Model)
.Name("grdRecipients")
.HtmlAttributes(new { style = "" })
.Columns(columns =>
{
columns.Bound(o => o.RecipientID).Title(Resources.Recipients.FieldLabel_RecipientId);
columns.Bound(o => o.FirstName).Title(Resources.Recipients.FieldLabel_FirstName);
columns.Bound(o => o.DateofBirth).Format("{0:MM/dd/yyyy}").Title(Resources.Recipients.FieldLabel_DOB);
})
.ClientEvents(events => events.OnDetailViewExpand(() =>
{
%>
function(e) {
//edit handling code
/// ?????
}
<%
}))
I would like to have client side script to hide the row.
Html.Telerik().Grid(Model)
.Name("grdRecipients")
.HtmlAttributes(new { style = "" })
.Columns(columns =>
{
columns.Bound(o => o.RecipientID).Title(Resources.Recipients.FieldLabel_RecipientId);
columns.Bound(o => o.FirstName).Title(Resources.Recipients.FieldLabel_FirstName);
columns.Bound(o => o.DateofBirth).Format("{0:MM/dd/yyyy}").Title(Resources.Recipients.FieldLabel_DOB);
})
.ClientEvents(events => events.OnDetailViewExpand(() =>
{
%>
function(e) {
//edit handling code
/// ?????
}
<%
}))
I would like to have client side script to hide the row.