This question is locked. New answers and comments are not allowed.
I'm trying to customize the header depending on a language.
Is there a way to customize the header text from server side?
Or a way to place a server tag in the Title?
The control does not seem to recognize this.
Also, is there a way to bind the grild with a dataset? Does it always have to bind to a model?
Is there a way to customize the header text from server side?
Or a way to place a server tag in the Title?
The control does not seem to recognize this.
<%= Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(o => o.Name).Title(<%= Resource.GetText("Full Name") %>); columns.Bound(o => o.Email); columns.Bound(o => o.Phonenumber); }) .Sortable() %>Also, is there a way to bind the grild with a dataset? Does it always have to bind to a model?