This question is locked. New answers and comments are not allowed.
I use this code ...
<%Html.Telerik().Grid<CDS.TMS.UI.Web.Areas.Security.Models.VRoleModel>()
.Name("gridRole")
.EnableCustomBinding(true)
.DataKeys(keys => {keys.Add(m => m.RoleId);})
.Columns(columns =>
{
...
})
.Resizable(resizing => resizing.Columns(true))
.DataBinding(databinding => { databinding.Ajax().Select("UserRole", "User", new { userId = Model.UserId }); })
.ClientEvents(clientEvents => {clientEvents.OnDataBound("onDataBound");})
.Scrollable(c => c.Enabled(true))
.Selectable()
.Footer(false)
.Render();
%>
The default grid height is 200px, but I want to more or less, how can I set it?
I want to fixed grid height is 300px.