cellWidth : function () { var $testDiv = $("<div class='ui-jqgrid' style='left:10000px'><table class='ui-jqgrid-btable' style='5px;'><tr class='jqgrow'><td style='5px;'></td></tr></table></div>"), testCell = $testDiv.appendTo("body") .find("td") .width(); $testDiv.remove();
// return testCell !== 5; //原来 return Math.abs(testCell) < 0.5; //修改后(最新版本解决了这个bug) },