ItEr44S12CUAltaSubcontrataItEr43S16: Modified the size of the widgets in the edition interface.

Now the form expands to the right, and the size of the text boxes has been
modified to match the sizes in other forms. The attribute width has been
removed from checkbox elements.
This commit is contained in:
Jacobo Aragunde Pérez 2010-01-18 10:41:51 +01:00 committed by Javier Moran Rua
parent 91a2ec0e65
commit 12be0713ac

View file

@ -29,7 +29,7 @@
<tabpanels>
<tabpanel>
<vbox>
<grid fixedLayout="false">
<grid fixedLayout="true">
<columns>
<column width="200px" />
<column />
@ -38,24 +38,24 @@
<row>
<label value="${i18n:_('Company name')}:" />
<textbox id="name"
value="@{controller.company.name}" width="300px"
value="@{controller.company.name}" width="500px"
constraint="no empty:${i18n:_('cannot be null or empty')}"/>
</row>
<row>
<label value="${i18n:_('NIF')}:" />
<textbox id="nif"
value="@{controller.company.nif}" width="300px"
value="@{controller.company.nif}"
constraint="no empty:${i18n:_('cannot be null or empty')}"/>
</row>
<row>
<label value="${i18n:_('Client')}:" />
<checkbox id="client"
checked="@{controller.company.client}" width="300px" />
checked="@{controller.company.client}" />
</row>
<row>
<label value="${i18n:_('Subcontractor')}:" />
<checkbox id="subcontractor"
checked="@{controller.company.subcontractor}" width="300px" />
checked="@{controller.company.subcontractor}" />
</row>
<row>
<label value="${i18n:_('User')}:" />
@ -68,22 +68,22 @@
<label value="${i18n:_('Interacts with applications')}:" />
<checkbox id="interactsWithApplication"
onCheck="controller.setInteractionFieldsActivation(self.checked);"
checked="@{controller.company.interactsWithApplications}" width="300px" />
checked="@{controller.company.interactsWithApplications}" />
</row>
<row>
<label value="${i18n:_('Application URI')}:" />
<textbox id="appURI"
value="@{controller.company.appURI}" width="300px" />
value="@{controller.company.appURI}" width="500px" />
</row>
<row>
<label value="${i18n:_('Our company login')}:" />
<textbox id="ourCompanyLogin"
value="@{controller.company.ourCompanyLogin}" width="300px" />
value="@{controller.company.ourCompanyLogin}" />
</row>
<row>
<label value="${i18n:_('Our company password')}:" />
<textbox id="ourCompanyPassword"
value="@{controller.company.ourCompanyPassword}" width="300px" />
value="@{controller.company.ourCompanyPassword}" />
</row>
</rows>
</grid>