7

ツリー パネルのノードをクリックしたときに、Allow Blanks の設定を追加したいです。ノードがリーフの場合、名前フィールドの config : allowBlank : false を配置し、リーフでない場合は allowBlank : true を配置します。これを行う方法が見つかりませんか?

どうもありがとう :)


あなたの答えのおかげで、私のコンボボックスはグローバル変数ではありません:

var monPrepanel = Ext.create('Ext.form.Panel',{

        frame : true,
        title : 'Editing Zone',
        //renderTo : 'mesfields',
        //width : 750,
        forceFit : true,

        items: [{

                xtype:'fieldset',
                title: 'Add Task : ',
                margin : '20 20 20 20',

                collapsible: true,
                defaultType: 'textfield',
                defaults: {anchor: '100%'},
                layout: 'anchor',
                items: [ {

                itemId : 'p0',
                allowBlank : false,


         xtype : 'textfield',
    anchor : '60%',

         padding : '0 30 0 30',
          fieldLabel : 'Task',

          name : 'task'
        } , {

                itemId : 'p1',
                allowBlank : false,


         xtype : 'combobox',
            anchor : '40%',
            store : materialstore,
            queryMode: 'local',
            displayField: 'data',
            width : 50,
            valueField: 'data',
            editable : false,

         padding : '0 30 0 30',
          fieldLabel : 'Material',

          name : 'material'
        } , {

                allowBlank : true,

         xtype : 'combobox',
            anchor : '40%',
            store : ccstore,
            queryMode: 'local',
            displayField: 'data',
            width : 50,
            valueField: 'data',
            editable : false,

         padding : '0 30 0 30',
          fieldLabel : 'CC',

          name : 'cc'
        }

おそらくIDでコンボボックスコンポーネントにアクセスする必要がありますか? このコンポーネントにアイテムからアイテムにアクセスするソリューションはありますか?

4

2 に答える 2

15

id目的のコンボ ボックス ( id: 'anyId')のプロパティを設定し、Ext.apply(Ext.getCmp('anyId'), {your config object});

于 2011-05-24T11:30:01.407 に答える
5

一般に、これは、作成済みの Ext コンポーネントに変更を「適用」する方法です。

var combo = new Ext.form.ComboBox({some initial config});

Ext.apply(combo, {your config object});

Treenode をどのようにロードしていますか? バックエンドからこれらのプロパティを追加することで、おそらくより良い結果が得られるでしょう。

于 2011-05-23T23:37:28.517 に答える