Hi,
I would like to use minScreenWidth option for some of my columns for better responsiveness. I have no problem using it with js initialization similar to this example
http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#configuration-columns.minScreenWidth
However, if I initialize my grid from table, this option doesn't work. I'm trying to do it like this ...
<
thead
>
<
tr
>
<
th
data-min-screen-width
=
"700"
>Customer</
th
>
<
th
>Code</
th
>
<
th
>Stock Order</
th
>
<
th
>Sales Order</
th
>
<
th
data-type
=
"date"
data-template
=
"#= kendo.toString(SOReqShip, 'dd/MM/yyyy')#"
>SO Req Ship</
th
>
<
th
data-type
=
"date"
data-template
=
"#= kendo.toString(ArriveDate, 'dd/MM/yyyy')#"
>Arrive Date</
th
>
<
th
data-type
=
"number"
>Days Overdue</
th
>
<
th
data-type
=
"number"
>Quantity</
th
>
<
th
data-field
=
"hiddenDetails"
></
th
>
</
tr
>
</
thead
>
Could some one let me know what is the right way to use it?
Thank you.