使用网格单元数据显示记录的日期和时间

时间:2015-03-28 11:49:04

标签: extjs

我正在使用单格网格在我的应用程序中显示通知。如何显示每个单元格数据的通知日期和时间?数据存在于关联商店的模型中。我希望它像phabricator https://secure.phabricator.com/

如何指示我怎么做?

1 个答案:

答案 0 :(得分:0)

实现此目的的一种方法是使用templatecolumn。然后,您可以在html的配置中指定tpl,表示两个数据源。

Here is a fiddle I created演示简单且更复杂的tpl,类似于您引用的网站上的数据。

以下是模板列的简单示例:

                {
                    xtype: 'templatecolumn',
                    header:'Name',
                    tpl:'{first_name} {last_name}'
                }

更复杂的模板列,其样式与您引用的相似:

                {
                    xtype: 'templatecolumn',
                    header: 'Example With Date',
                    flex: 1,
                    tpl:'<span style="display:inline-table;width:50%;">{first_name}</span><span style="width: 50%;display: inline-table;text-align: right;">{myDate}</span>'
                }