profunctional
14 Jul 2010, 11:16 AM
I am adding a formPanel to a tabPanel using some code like:
var foo = new Ext.form.FormPanel({
scroll: 'vertical',
items:
[
var ticketAddPanel = new Ext.TabPanel({
type: 'light',
items: [{
xtype: 'container',
title: localStorage.getItem('TicketLabel'),
iconCls: 'bookmarks',
layout: 'fit',
items: foo
When scroll: 'vertical', is added to the first code block, the tabbar and toolbar go blank. Any ideas why this happens?
Thanks in advance.
var foo = new Ext.form.FormPanel({
scroll: 'vertical',
items:
[
var ticketAddPanel = new Ext.TabPanel({
type: 'light',
items: [{
xtype: 'container',
title: localStorage.getItem('TicketLabel'),
iconCls: 'bookmarks',
layout: 'fit',
items: foo
When scroll: 'vertical', is added to the first code block, the tabbar and toolbar go blank. Any ideas why this happens?
Thanks in advance.