grid中设置新增行的样式 grid中有rowAttr属性:增加在行上属性的表达式,表达式执行结果返回Object,可以包含style、class属性,也可以增加自定义属性 可以在rowAttr中控制新增行的样式 在js中定义一个函数如下: Model.prototype.rowClass = function(row) { if (row.data.getRowState(row) == 'new') { return { style : 'background:LightGoldenrodYellow;' }; } } 然后在rowAttr属性中调用这个函数,要注意传参 By jishuang|9月 27th, 2016|BeX5常见问题, 前端常见问题|0 条评论 Share This Story, Choose Your Platform! FacebookTwitterLinkedInRedditTumblrPinterestVkEmail 评一波 取消回复 评论 Save my name, email, and website in this browser for the next time I comment.
评一波