1

我正在将一个纸板应用程序从 SDK 2.0p5 升级到 SDK 2.0rc1。我需要添加一个将显示在列标题中的字符串。在 2.0p5 中,我使用了“displayValue”,但这在 SDK 2.0rc1 中不可用。我该如何解决这个问题?

        Ext.Array.each(states, function (state) {
             columns.push({
               xtype:'rallycardboardcolumn',
               displayValue:state.get('Name'), //NOT AVAILABLE IN SDK 2.0rc1                   
               value:state.get('_ref'),
               record:state
            });
        });

Rally 何时建议将自定义应用程序升级到最新的 SDK 即 2.0rc1?

4

1 回答 1

2

在 columnHeaderConfig 中使用 headerTpl 解决了这个问题。

Ext.Array.each(states, function (state) {
           columns.push({
           xtype:'rallycardboardcolumn',                 
           //displayValue:state.get('Name'),
           columnHeaderConfig: {
                headerTpl:  state.get('Name'), 
           },                                                  
           value:state.get('_ref'),
           record:state
          });
  });
于 2013-09-23T08:01:31.420 回答