禁用在剑道网格

时间:2018-01-07 03:12:17

标签: kendo-ui kendo-grid

如何禁用调整大小到调整列,而不是按列索引指定它的位置? (该列是由模板制成的复合列) 功能:

模板:

{ field: "isActive", 
            headerTemplate: '!',
            template: '<span class="k-icon k-i-circle Unicode: e308" style="color: green; font-size: 28px;"></span> </br> <div class=circle style="text-align:center;"> #=qty#  </div>', filterable:false , headerAttributes: { "class": "twenty"}, attributes: { "class": "twenty" } }

功能:

function disableResize(e)
                {
                    $("#grid colgroup").each(function() {
                            $(this).find(":nth-child(3)").css("width","40px");
                        }
                    )
                }

https://dojo.telerik.com/afUZeL

0 个答案:

没有答案