1

私は煎茶タッチ技術の初心者です。今、私は簡単な質問を受けました。フィールドセットの幅を調整して中央のみに揃えるにはどうすればよいですか? フルスクリーンのみに設定されているフィールドセットのみを取得します。解決策を教えてください。

ここに私のjavascript

          items:[{
                xtype:'fieldset',
                title :'Please enter your password key',

                centered: true,
                width: 30,

                items:[{
                        xtype: 'passwordfield',
                        name : 'password',
                        label: 'password',
                        width : 400,



                    }]






              }],
4

4 に答える 4

3

コードでハード コーディングされた値を使用しないでください。複数の解像度でアプリケーションを作成する場合は、これは不適切です。

以下に示すコードを試してください。

layout: {
            type: 'vbox',
            pack: 'center',
            align: 'center'
        },
    items:[{
                xtype:'fieldset',
                title :'Please enter your password key',

                //centered: true,
                //width: 30,

                items:[{
                        xtype: 'passwordfield',
                        name : 'password',
                        label: 'password',
                        //width : 400,
               }]
     }]

ありがとう

于 2012-11-09T10:04:53.133 に答える
0

ST2では、このようにコンテナ内に配置します

{
  xtype: 'container',
  centered: true,
  items:{
       xtype: 'fieldset',
       items :[
         //your items here
       ]
  }
}
于 2014-06-18T06:32:15.507 に答える
0

これを試して、

items:[{
              xtype:'fieldset',
              title :'Please enter your password key',

              centered: true, // using this you can align fieldset to center
              width: '80%',   // using this you can give any width to it in percentage

              items:[{
                     xtype: 'passwordfield',
                     name : 'password',
                     label: 'password',      
                     }]  
              }], 

また

items:[{
              xtype:'fieldset',
              title :'Please enter your password key',

             // centered: true,
              margin: '10%',
              width: '80%',
              height: '20%',

              items:[{
                     xtype: 'passwordfield',
                     name : 'password',
                     label: 'password',  
                     }]

              }],

これがあなたに役立つことを願っています。

于 2013-04-02T05:07:44.680 に答える