Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Ext.define('MyApp.view.TimerEdit', {
- extend: 'Ext.Container',
- alias: 'widget.timerEdit',
- id: 'timerEdit',
- config: {
- fullscreen: false,
- scrollable: false,
- draggable: false,
- scroll: false,
- left: 0,
- top: 0,
- tplWriteMode: 'insertAfter',
- hideOnMaskTap: true,
- layout: {
- type: 'fit'
- },
- modal: true,
- defaults: {
- margin: '0 0 5 0',
- labelWidth: '40%',
- },
- items: [
- {
- xtype: 'panel',
- items: [
- {
- xtype: 'picker',
- label: 'Stunden',
- title: 'Einschaltzeit',
- id:'startTimeHours',
- maxValue: 23,
- minValue: 0,
- stepValue: 1,
- cycle: true,
- groupButtons: false,
- slots: [
- {
- xtype: 'pickerslot',
- name: 'Stunden',
- title: 'Stunden',
- data:[
- {
- text: '1',
- value: 1
- }
- ]
- }
- ]
- },
- {
- xtype: 'picker',
- label: 'Stunden',
- title: 'Einschaltzeit',
- maxValue: 23,
- minValue: 0,
- stepValue: 1,
- cycle: true,
- groupButtons: false,
- slots: [
- {
- xtype: 'pickerslot',
- name: 'Stunden',
- title: 'Stunden',
- data:[
- {
- text: '1',
- value: 1
- },
- {
- text: '2',
- value: 2
- }
- ]
- }
- ]
- },
- {
- xtype: 'container',
- layout: {
- pack: 'center',
- type: 'hbox'
- },
- items:[
- {
- xtype: 'button',
- id: 'MoEdit',
- text:'Mo'
- },
- {
- xtype: 'button',
- id: 'DiEdit',
- text:'Di'
- },
- {
- xtype: 'button',
- id: 'MiEdit',
- text:'Mi'
- },
- {
- xtype: 'button',
- id: 'DoEdit',
- text:'Do'
- },
- {
- xtype: 'button',
- id: 'FrEdit',
- text:'Fr'
- },
- {
- xtype: 'button',
- id: 'SaEdit',
- text:'Sa'
- }
- ]
- },{
- xtype: 'button',
- text: 'übernehmen',
- itemId: 'uebernehmen'
- }
- ]
- }
- ]
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement