extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
25 lines (24 loc) • 544 B
JavaScript
Ext.define('Ext.theme.windows.picker.Picker', {
override: 'Ext.picker.Picker',
config: {
height: '100%',
toolbarPosition: 'bottom',
toolbar: {
xtype: 'toolbar',
layout: {
type: 'hbox',
pack: 'center'
}
},
doneButton: {
iconCls: 'check2',
ui: 'round',
text: ''
},
cancelButton: {
iconCls: 'delete',
ui: 'round',
text: ''
}
}
});