Achim74
14 Apr 2010, 1:14 PM
Hi !
after a upgrade from 3.1. to 3.2. scrollbars appeared underneath my radiobuttons although there is no need to scroll. It happens in a normal formpanel.
var ModulForm = new Ext.form.FormPanel({
baseCls: 'x-plain',
labelWidth: 175,
url: './modul/save',
defaultType: 'textfield',
reader: new Ext.data.JsonReader({
root: 'data',
successProperty: 'success'
}, ModulRecord),
items: [{
name: 'id',
xtype: 'hidden'
},
{
name: 'titel',
xtype: 'textfield',
fieldLabel: 'Bezeichnung',
width: '300',
allowBlank: false,
qtip: 'TESTSTSTSTSTS',
hidden: false
},
{
name: 'ueberschrift',
xtype: 'textfield',
fieldLabel: 'Ueberschrift',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'modulname',
xtype: 'textfield',
fieldLabel: 'Modulname',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'dateiname',
xtype: 'textfield',
fieldLabel: 'Dateiname',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'template',
xtype: 'textfield',
fieldLabel: 'Template',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'beschreibung',
xtype: 'textarea',
fieldLabel: 'Beschreibung',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'parameter',
xtype: 'textarea',
fieldLabel: 'Standardparameter',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'aktiv',
xtype: 'radiogroup',
style: {overflow: 'visible'},
autoWidth: true,
fieldLabel: 'Aktiv',
allowBlank: false,
columns: 2,
items: [
{boxLabel: 'Ja', name: 'aktiv', inputValue: 1}
, {boxLabel: 'Nein', name: 'aktiv', inputValue: 0}
]
}]
});
I played around with custom CSS but it did not help :( Does anyone have a hint ?
Thank you !
after a upgrade from 3.1. to 3.2. scrollbars appeared underneath my radiobuttons although there is no need to scroll. It happens in a normal formpanel.
var ModulForm = new Ext.form.FormPanel({
baseCls: 'x-plain',
labelWidth: 175,
url: './modul/save',
defaultType: 'textfield',
reader: new Ext.data.JsonReader({
root: 'data',
successProperty: 'success'
}, ModulRecord),
items: [{
name: 'id',
xtype: 'hidden'
},
{
name: 'titel',
xtype: 'textfield',
fieldLabel: 'Bezeichnung',
width: '300',
allowBlank: false,
qtip: 'TESTSTSTSTSTS',
hidden: false
},
{
name: 'ueberschrift',
xtype: 'textfield',
fieldLabel: 'Ueberschrift',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'modulname',
xtype: 'textfield',
fieldLabel: 'Modulname',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'dateiname',
xtype: 'textfield',
fieldLabel: 'Dateiname',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'template',
xtype: 'textfield',
fieldLabel: 'Template',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'beschreibung',
xtype: 'textarea',
fieldLabel: 'Beschreibung',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'parameter',
xtype: 'textarea',
fieldLabel: 'Standardparameter',
width: '300',
allowBlank: true,
hidden: false
},
{
name: 'aktiv',
xtype: 'radiogroup',
style: {overflow: 'visible'},
autoWidth: true,
fieldLabel: 'Aktiv',
allowBlank: false,
columns: 2,
items: [
{boxLabel: 'Ja', name: 'aktiv', inputValue: 1}
, {boxLabel: 'Nein', name: 'aktiv', inputValue: 0}
]
}]
});
I played around with custom CSS but it did not help :( Does anyone have a hint ?
Thank you !