X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/examples/layout-browser/layouts/combination.js diff --git a/examples/layout-browser/layouts/combination.js b/examples/layout-browser/layouts/combination.js index 47896342..c7e469f5 100644 --- a/examples/layout-browser/layouts/combination.js +++ b/examples/layout-browser/layouts/combination.js @@ -1,3 +1,17 @@ +/* + +This file is part of Ext JS 4 + +Copyright (c) 2011 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. + +*/ function getCombinationLayouts() { // fake grid data used below in the tabsNestedLayouts config var myData = [ @@ -207,12 +221,15 @@ function getCombinationLayouts() { items: { title: 'New Email', layout: 'fit', + frame: true, items: { xtype: 'form', layout:'absolute', url:'save-form.php', padding: '5 5 0 5', border: false, + cls: 'absolute-form-panel-body', + defaultType: 'textfield', items: [{ x: 0, @@ -236,7 +253,7 @@ function getCombinationLayouts() { xtype: 'button', text: 'Contacts...' },{ - x: 135, + x: 127, y: 27, name: 'to', hideLabel: true, @@ -262,23 +279,34 @@ function getCombinationLayouts() { }] }, - tbar: [{ - text: 'Send', - iconCls: 'icon-send' - },'-',{ - text: 'Save', - iconCls: 'icon-save' - },{ - text: 'Check Spelling', - iconCls: 'icon-spell' - },'-',{ - text: 'Print', - iconCls: 'icon-print' - },'->',{ - text: 'Attach a File', - iconCls: 'icon-attach' - }] + dockedItems: [ + { + xtype: 'toolbar', + ignoreParentFrame: true, + ignoreBorderManagement: true, + cls: 'absolute-form-toolbar', + items: [ + { + text: 'Send', + iconCls: 'icon-send' + },'-',{ + text: 'Save', + iconCls: 'icon-save' + },{ + text: 'Check Spelling', + iconCls: 'icon-spell' + },'-',{ + text: 'Print', + iconCls: 'icon-print' + },'->',{ + text: 'Attach a File', + iconCls: 'icon-attach' + } + ] + } + ] } } }; } +