Threaded View
-
13 Dec 2011 12:37 PM #1
bottom toolbar disappeared upon upgrade to PR3
bottom toolbar disappeared upon upgrade to PR3
Hello,
My bottom toolbar does not show up upon an upgrade to PR3. It showed up in PR2. See view below.
Ext.require([
'Ext.form.Panel',
'Ext.form.FieldSet',
'Ext.field.Text',
'Ext.field.Password',
'Ext.field.Email',
'Ext.field.Url',
'Ext.field.Checkbox',
'Ext.field.Spinner',
'Ext.field.Select',
'Ext.field.Hidden',
'Ext.field.TextArea',
'Ext.field.Slider',
'Ext.field.Toggle',
'Ext.field.Radio',
'Ext.Button',
'Ext.data.Store'
]);
Ext.define('TestApp.view.CreateEditGathr', {
extend: 'Ext.form.Panel',
alias: 'widget.createeditgathr',
id: 'createeditgathr',
requires: ['TestApp.model.Gathr', 'TestApp.store.Gathrs'],
stores: ['Gathrs'],
controllers: ['Gathr'],
//defaultInstructions: 'Please enter the information above.',
fullscreen: true,
config: {
layout: 'vbox',
items: [
{
id: 'gathrFormTitlebar',
xtype: 'toolbar',
docked: 'top',
title: 'Create gathr',
items: [ {
text: 'cancel',
ui: 'back',
id: 'gathrformcancelbutton',
scope: this
},
],
},
{
xtype: 'fieldset',
title: 'Gathr Details',
instructions: 'Please enter the above information.',
defaults: {
required : true,
labelAlign: 'left',
labelWidth: '40%'
},
items: [
{
xtype: 'textfield',
name : 'name',
label: 'name',
autoCapitalize : true
},
// {
// xtype: 'app.views.errorField',
// fieldname: 'name',
// },
{
xtype: 'textfield',
name : 'description',
label: 'description',
autoCapitalize : true
},
// {
// xtype: 'app.views.errorField',
// fieldname: 'description',
// },
]
},
{
xtype: 'toolbar',
docked: 'bottom',
items: [
{
id: 'gathrFormDeleteButton',
text: 'delete',
ui: 'decline',
},
{xtype: 'spacer'},
{
id: 'gathrFormSaveButton',
text: 'save',
ui: 'confirm',
},
]
},
],
},
},
});
Looks like we can't reproduce the issue or there's a problem in the test case provided.


Reply With Quote