Ext.js ext-4.2.1 で、Ext.MessageBox の 2 つのボタンを左揃えにする方法はありますか?
から始めます(これは機能します):
Ext.MessageBox.show({ title:'AA',
msg: 'BB',
prompt: true,
buttonText: {ok:'Proceed', cancel:'STET'},
fn: function (btn, groupName) {...}
});
「buttons:」のドキュメントは明らかに間違っており、「ok:'Foo...」(下記) でボタンを表示しません。
「ボタン」を使用して、複数のボタンのID、名前、およびその他のプロパティを指定できますか?もしそうなら、実際の例は何ですか?
" buttons Object/Boolean ボタン構成オブジェクト (例: Ext.MessageBox.OKCANCEL または {ok:'Foo', cancel:'Bar'}), "
ソース: http://dev.sencha.com/playpen/docs/output/Ext.MessageBox.html