0

AppSDK docs https://developer.help.rallydev.com/apps/2.0rc1/doc/#!/example/Gridの単純なグリッドの例に示されているように、グリッド列をインラインで編集できるようにしたいのです が、見た目はカスタムストアが使用されている場合、この機能はデフォルトでは利用できません。

_createGrid: function(stories) {
     this.add({
        xtype: 'rallygrid',
        store: Ext.create('Rally.data.custom.Store', {
            data: stories,
            pageSize: 100
        }),
        columnCfgs: [
            {
               text: 'Formatted ID', dataIndex: 'FormattedID', xtype: 'templatecolumn',
                tpl: Ext.create('Rally.ui.renderer.template.FormattedIDTemplate')
            },
            {
                text: 'Name', dataIndex: 'Name'
            },
            //other columns...
        ]
    });
}

私のアプリでは、名前をクリックすると、単純なグリッドの例のようにフィールドが編集可能になりません。

4

1 に答える 1