0
items: [
         {
          xtype: 'textareafield',
           label: 'references',
           items: [{
                    xtype:'textareafield',
                      }
                 ]
                   }]

テキストエリア内にテキストエリア フィールドを作成したいのですが、テキストエリア フィールドが 1 つしか表示されず、内部のテキストエリア フィールドが表示されません。

4

1 に答える 1

1

itemsconfig は では利用できないため、ここでは機能しません。代わりに、次のような config をExt.field試してください。component

{
    xtype: 'textfield',
    component: {
      xtype: 'container', 
      layout: 'vbox', 
      items: [
      {
        xtype: 'textareainput', 
        flex: 3,
      }, 
      {
        xtype: 'textareafield',
        flex: 1, 
      }
      ]},
},

P/S: 舞台裏では、Sencha Touch 2 はデフォルトでcomponentconfig を設定する{xtype: "textareainput"}ため、この方法を使用すると、ボタンなど、必要なものを挿入できます。

于 2012-04-13T04:31:17.337 に答える