ドッキングされたアイテムがほとんどありません:
dockedItems: [{
xtype: 'toolbar',
items: [{
xtype:'button',
icon: g_settings.iconUrl + 'add-icon.png',
text: 'Abc',
handler: this._add
},{
icon: g_settings.iconUrl + 'remove-cancel-icon.png',
text: 'Del',
disabled: true,
itemId: 'delete',
scope: this,
handler: this.onDeleteClick
}]
},{
xtype:'toolbar',
dock: 'bottom',
items: [{
xtype: 'button',
height: 30,
// padding: '0 0 0 50',
icon: g_settings.iconUrl + 'add-file-to-doc.png',
text: 'Select',
itemId: 'conndoc',
scope: this,
disabled: true,
handler: this._connToDocument
}]
}, {
xtype: 'pagingtoolbar',
id: 'id-docs-paging',
store: 'Documents',
dock: 'bottom',
displayInfo: true
}],
xtype:pagingtoolbar
とツールバーはどちらも下のtext: Select
位置にあり、2番目のボタンにはデフォルトでツールバーの左側にあるボタンが1つだけ含まれていますが、右側にとどまりたいと思います。ExtJSドキュメントの「->」やその他のオプションを試しましたが、ツールバーに項目が1つしかないため、標準のオプションを使用できないと思います。ツールバーの1つの項目を右側に配置するにはどうすればよいですか。 ?
ありがとう
レロン
PS
忘れてしまいました-ドッキングされたアイテムのリストの最後にある場合でも、paginationgツールバーは常にアイコン付きのツールバーの上に表示されますが、ページネーションを一番下に表示したいので、誰かがこの問題についても助けてくれればと思います。 。