Hi,
I have a Kendo grid that when loaded has most of its columns hidden.
..etc
Then i have checkboxes with the an ID that matches the model name
....
...etc
and some JS to tie them together
Using Kendo UI Web v2013.2.716 All columns after the initally visible ones do not let me resize them. I've seen a past forum sayings its been fixed but its from last year
http://www.kendoui.com/forums/kendo-ui-complete-for-asp-net-mvc/grid/ie-8-bug-column-resize-handle-not-showing-on-dynamic-grid-columns.aspx
Any help or insight is greatly apprecited
I have a Kendo grid that when loaded has most of its columns hidden.
c.Bound(p => p.ServiceCost).Hidden(true).Width(100).Format("{0:$0.00}");
c.Bound(p => p.AddressLine1).Title("Address").Width(90);
c.Bound(p => p.City).Width(90);
c.Bound(p => p.State).Title("State").Width(75);
c.Bound(p => p.Zip).Width(75);
c.Bound(p => p.ContactName).Hidden(true).Title("Contact<
br
/>Name").Width(100);
c.Bound(p => p.PhoneNumber).Hidden(true).Title("Site<
br
/>Phone").Width(120);
c.Bound(p => p.PhoneExtension).Hidden(true).Title("Site<
br
/>Ext").Width(90);
c.Bound(p => p.Fax).Hidden(true).Title("Site<
br
/>Fax").Width(100);
c.Bound(p => p.Email).Hidden(true).Title("Site<
br
/>Email").Width(150);
c.Bound(p => p.Website).Hidden(true).Title("Website").Width(200);
Then i have checkboxes with the an ID that matches the model name
....
<
label
class
=
"clean"
><
input
type
=
"checkbox"
id
=
"ContactName"
class
=
"basicChk"
/>Contact Name</
label
></
td
><
td
>
<
label
class
=
"clean"
><
input
type
=
"checkbox"
id
=
"PhoneNumber"
class
=
"basicChk"
/>Site Phone</
label
></
td
><
td
>
<
label
class
=
"clean"
><
input
type
=
"checkbox"
id
=
"PhoneExtension"
class
=
"basicChk"
/>Site Phone Ext.</
label
></
td
><
td
>
and some JS to tie them together
$(".basicChk").bind('click', function () {
var grid = $('#Providers').data("kendoGrid");
if (this.checked) {
grid.showColumn(this.id);
}
else {
grid.hideColumn(this.id);
}
});
Using Kendo UI Web v2013.2.716 All columns after the initally visible ones do not let me resize them. I've seen a past forum sayings its been fixed but its from last year
http://www.kendoui.com/forums/kendo-ui-complete-for-asp-net-mvc/grid/ie-8-bug-column-resize-handle-not-showing-on-dynamic-grid-columns.aspx
Any help or insight is greatly apprecited