I would like to position the refresh button at the top of the grid. Is that possible? The grid below is a sample of the code. (mostly default values)
@(Html.Telerik().Grid(Model.DeleteableRules)
.Name("DeleteableRulesGrid")
.DataKeys(dk => dk.Add(dr => dr.ListID))
.Selectable()
.Columns(columns =>
{
columns.Bound(dr => dr.ListID).HtmlAttributes(new
{ style = "width:100px;" });
columns.Bound(dr => dr.OrganizationID).HtmlAttributes(new { style = "width:100px;"
});
columns.Bound(dr => dr.RuleName).HtmlAttributes(new
{ style = "width:300px;" });
columns.Bound(dr => dr.CurrentState).HtmlAttributes(new
{ style = "width:300px;" });
})
)
@(Html.Telerik().Grid(Model.DeleteableRules)
.Name("DeleteableRulesGrid")
.DataKeys(dk => dk.Add(dr => dr.ListID))
.Selectable()
.Columns(columns =>
{
columns.Bound(dr => dr.ListID).HtmlAttributes(new
{ style = "width:100px;" });
columns.Bound(dr => dr.OrganizationID).HtmlAttributes(new { style = "width:100px;"
});
columns.Bound(dr => dr.RuleName).HtmlAttributes(new
{ style = "width:300px;" });
columns.Bound(dr => dr.CurrentState).HtmlAttributes(new
{ style = "width:300px;" });
})
)