Extjs 在Grid单元中格添加Tooltip提示

时间:2024-01-15 22:09:02

Grid 中的单元格添加Tooltip 的效果

Ext.QuickTips.init(); //必须要

columns: [
  { text: 'Name', dataIndex: 'name' },
  { text: 'Email', dataIndex: 'email', flex: 1 },
  { text: 'Phone', dataIndex: 'phone',
    renderer:function (value, metaData, record, rowIdx, colIdx, store){
      metaData.tdAttr = 'data-qtip="' + Ext.String.htmlEncode(value) + '"';

      return value;

    }

  }
]