extjs 如何给column 加上提示

Ora ·
更新时间:2024-09-20
· 510 次阅读

<script type="text/javascript" src="${pageContext.request.contextPath%20}/extjs/examples/simple-widgets/qtips.js"></script> renderer : function(value, metaData, record, rowIndex, colIndex, store) { // provide the logic depending on business rules // name of your own choosing to manipulate the cell // depending upon // the data in the underlying Record object. // metaData.css : String : A CSS class name to add // to the TD element of the cell. // metaData.attr : String : An html attribute // definition string to apply to // the data container element within the table // cell (e.g. 'style="color:red;"'). metaData.attr = 'ext:qtip="' + value + '"'; return value; }



extjs column

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章