同一列Extjs的多个渲染器

时间:2014-04-30 10:26:37

标签: extjs

我正在使用Extjs3.2,我有要求我必须在渲染器中添加两个逻辑第一个要求是show tooltip,第二个是更改日期格式。我已经编写了以下代码来实现这个

renderer: function (value, metaData, record, rowIndex, colIndex, store) 

    {
     Ext.util.Format.dateRenderer('d-M-Y  g:i A')
    return  getToolTip(value, metaData, record, rowIndex, colIndex, store);
    } 

但它不起作用请帮助!!! 感谢

1 个答案:

答案 0 :(得分:0)

您不会从渲染器返回任何内容。日期:

return Ext.Date.format(value, 'd-M-Y g:i A');

重新提供工具提示:您需要丰富的工具提示或快速提示吗?在快速提示的情况下,您可以这样做:

metaData.tdAttr =  'data-qtip="The text to display in quick tip"';

如果您想要快速提示,请不要忘记初始化QuickTipManager。