0

次のtbarアイテムがあります。ボタン内のテキストを左揃えにしようとしています。しかし、私はそうすることができません。助言がありますか?

                        {
                            tbar: [
                                {
                                    xtype: 'button',
                                    text: 'Home',
                                    width: 120,
                                    align:'left',   
                                    handler: function() {
                                        document.location.href = BasePath; 
                                    }
                                }                                   

                            ]
                        },
                        {
                            tbar: [
                                {
                                    xtype: 'button',
                                    text: 'View Transfer Numbers',
                                    width: 120,                                         
                                    handler: function() {
                                        document.location.href =BasePath+'transfer'; 
                                    }
                                }                                   

                            ]
                        }
4

1 に答える 1

0

textAlign : 文字列

これは、私の解決策を得るために上で行ったことです

于 2012-12-07T20:41:11.500 に答える