Hello,
I'm using Kendo Grid with resizable columns and ClientDetailTemplateId. When I want to resize a column the resize cursor is not appear anymore (in Firefox and IE - is working perfectly in Chrome or Safari) but if I remove the ClientDetailTemplateId all is working fine in all browsers. How can I solve this problem ? Also I use kendo ui version 2015.2.624. I will put here a code snipped:
@{Html.Kendo().Grid<MyModel>()
.Name("mymodel-grid")
.Scrollable(s => s.Height(500))
.DataSource(dataSource => dataSource.Ajax()
.Read(read => read
.Data("onDataBinding")
.Action("MyActionResult", "MyController"))
.PageSize(50)
.Sort(s => Papaya.Web.Misc.GridConfigurator.Sort<MyModel>(s, Model.SortOrder))
.Filter(s => Papaya.Web.Misc.GridConfigurator.Filter<MyModel>(s, Model.FilteredBy)))
.Columns(columns => columns.LoadSettings(Model.GridColumns))
.Resizable(r => r.Columns(true))
.Reorderable(r => r.Columns(true))
.Events(e =>
{
e.DetailExpand("onDetailExpand");
e.Change("onSelected");
e.DataBound("onDataBound");
e.ColumnResize("onColumnResize");
e.ColumnReorder("onColumnReorder");
e.FilterMenuInit("filterMenuInit");
})
.ClientDetailTemplateId("expandTemplate")
.Filterable(GridConfigurator.MyModelFilter)
.Pageable(GridConfigurator.Page)
.Sortable()
.Selectable()
.EnableCustomBinding(true)
.Render();
}
<script id="expandTemplate" type="text/kendo-tmpl">
<div id="expand-template-content"></div>
</script>
Thank you