web-apps/apps/spreadsheeteditor/mobile/app/view/phone/toolbar/View.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

59 lines
1.5 KiB
JavaScript

Ext.define('SSE.view.phone.toolbar.View', {
extend: 'Ext.Toolbar',
xtype: 'viewtoolbar',
config: {
docked : 'top',
minHeight : 44,
ui : 'edit'
},
initialize: function() {
this.add([
{
id : 'id-tb-btn-view-done',
ui : 'base-blue',
cls : 'text-offset-12',
hidden : true,
text : this.doneText
},
// {
// id : 'id-tb-btn-editmode',
// ui : 'base',
// cls : 'text-offset-12',
// text : this.editText
// },
{
xtype : 'spacer'
},
{
id : 'id-tb-btn-search',
ui : 'base',
iconCls : 'search'
},
{
id : 'id-tb-btn-pages',
ui : 'base',
iconCls : 'pages'
},
{
id : 'id-tb-btn-fullscreen',
ui : 'base',
iconCls : 'fullscreen'
},
{
xtype : 'spacer'
},
{
id : 'id-tb-btn-view-share',
ui : 'base',
iconCls : 'share'
}
]);
this.callParent(arguments);
},
doneText: 'Done',
editText: 'Edit'
});