Skip to content

Instantly share code, notes, and snippets.

@JosephShering
Last active August 29, 2015 14:05
Show Gist options
  • Save JosephShering/5493f18deb93678fd721 to your computer and use it in GitHub Desktop.
Save JosephShering/5493f18deb93678fd721 to your computer and use it in GitHub Desktop.
This is the tab panel that gets created to hold settings.
Ext.onReady(function(){
Ext.create('Ext.tab.Panel', {
width: 950,
frame: true,
renderTo: 'settingsTabs',
items: [{
layout: 'hbox',
title: 'Self Sign',
items: [kioskRegistration, 'kioskConfirmation', 'kioskTimeOut', 'kioskSurvey']
},{
layout: 'hbox',
title: 'Users',
items: ['loginTextForm']
}, {
layout : 'hbox',
title: 'Esign',
items: ['esignatureOptions']
}, {
layout : 'hbox',
title: 'Translate',
items: ['translation']
}, {
layout: 'hbox',
title: 'Self Scan',
items: ['selfscan']
}, {
layout: 'hbox',
title: 'Email CC',
items: ['emailcc']
}]
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment