0

カスタムデータを列フィールドに入れたい...ローカルストアにある私のデータ。

code of my grid:


columns: [
{text: "name", flex: 1, dataIndex: 'name'},
{text: "type", flex: 1, dataIndex: 'type'},
{text: "value", flex: 1, dataIndex: 'function', renderer: this.rendeValueColumn},
{text: "parameter", flex: 1, dataIndex: 'parameter'},
{text: "rule", flex: 1, dataIndex: 'rule'}
],

i want to change 'rule' .

i'm try to : var a = 'test'; {text: "rule", flex: 1, dataIndex: a} etc...

but that way arent help me. 
4

1 に答える 1

0

dataIndex はデータを想定していません。データフィールドの名前が必要です。

あなたが本当に欲しいのは

columns: [
  {text: "name", flex: 1, dataIndex: 'name'},
  {text: "type", flex: 1, dataIndex: 'type'},
  {text: "value", flex: 1, dataIndex: 'function', renderer: this.rendeValueColumn},
  {text: "parameter", flex: 1, dataIndex: 'parameter'},
  {text: "rule", flex: 1, dataIndex: 'name', renderer: function(){
    return 'test';
  }}
],

レンダラー機能を使用して、必要なデータを入れることができます。

于 2012-04-19T06:33:10.613 に答える