View Full Version : Table form layout
mlarese
16 Aug 2008, 2:14 AM
using only css i found a way to have multiple fields in the same row
(kind of tablelayout with formlayout advantages)
.x-form-item {float:left;width:270px;padding:2px} to have fixed column width 270px
.x-form-item {float:left;padding:2px} to fit one row with fields
if you resize the page the fields will fit the row according to the new size
i hope it will be useful
mlarese
16 Aug 2008, 2:19 AM
To avoid IE problems add
.x-form-clear-left{width:0}
mlarese
16 Aug 2008, 2:44 AM
You can put any type of element inside the form and if you add the class 'x-form-item' to them they will behave like a form field
var form = new Ext.form.FormPanel({
labelWidth: 55,
defaultType: 'textfield',
items: [
{ fieldLabel: 'Send To', name: 'to' } ,
{ fieldLabel: 'Subject', name: 'subject' },
{ fieldLabel: 'Subject', name: 'subject' },
{ fieldLabel: 'Subject', name: 'subject' , hideLabel:true },
{xtype:'checkbox' , hideLabel:true , boxLabel:'Fixed'},
{xtype:'button' , text:'Ok' , cls:'x-form-item'},
{xtype:'label' , html:'Ok', cls:'x-form-item'},
{ fieldLabel: 'Subject', name: 'subject' , anchor:'98%' },
{ fieldLabel: 'Subject', name: 'subject' },
{ fieldLabel: 'Subject', name: 'subject' },
{ xtype: 'textarea', fieldLabel:'Subject', name: 'msg' ,anchor:'98%'}]
});
elnove
16 Aug 2008, 11:51 AM
great idea mlarese, do you have an idea in the same way to have a label after (on the right) of a field, such as units or currency.
One of the problems with that is not overlap the field validation message.
mlarese
17 Aug 2008, 12:48 AM
there are some limitations. Using tips you have to use msgTarget = qtip or title or element id
to avoid to mess up the error message. In this case you can put a label on the right side of the input box.
sorry but no more ideas for now
mlarese
17 Aug 2008, 1:07 AM
.x-form-item { float:left; padding:2px; overflow:visible !important; margin-bottom:14px }
.x-form-clear-left{width:0}
.x-form-invalid-msg{position:absolute;z-index:999;white-space:nowrap !important;}
for qtips under
mlarese
17 Aug 2008, 1:21 AM
.x-form-item { float:left; padding:2px; overflow:visible !important; margin-bottom:14px; }
.x-form-clear-left{width:0}
.x-form-invalid-msg{position:absolute;z-index:999;white-space:nowrap !important;}
.x-form-invalid-icon{width:28px;background-position:12px 2px}
label.x-form-item{margin-right:18px;margin-top:2px}
for qtip=side
background-position of x-form-invalid-icon change with label width
mlarese
17 Aug 2008, 5:42 AM
.x-fieldset{float:left;margin-right:1%}
this if you use fieldset
Powered by vBulletin® Version 4.1.5 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.