如何禁用调整大小到调整列,而不是按列索引指定它的位置? (该列是由模板制成的复合列) 功能:
模板:
{ 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");
}
)
}