Improved comboboxes spacing on workreports edition

FEA: ItEr75S04BugFixing
This commit is contained in:
Lorenzo Tilve Álvaro 2011-10-10 10:10:44 +02:00
parent 4ce1e91987
commit 546d1545ef
2 changed files with 7 additions and 1 deletions

View file

@ -770,6 +770,7 @@ public class WorkReportCRUDController extends GenericForwardComposer implements
NewDataSortableColumn columnCode = new NewDataSortableColumn();
columnCode.setLabel(_("Task Code"));
columnCode.setSclass("order-code-column");
columnCode.setHflex("min");
columns.appendChild(columnCode);
}
@ -889,7 +890,7 @@ public class WorkReportCRUDController extends GenericForwardComposer implements
*/
private void appendResourceInLines(final Row row) {
final Autocomplete autocomplete = new Autocomplete();
autocomplete.setWidth("100px");
autocomplete.setWidth("200px");
autocomplete.setAutodrop(true);
autocomplete.applyProperties();
autocomplete.setFinder("ResourceFinder");
@ -937,6 +938,7 @@ public class WorkReportCRUDController extends GenericForwardComposer implements
"OrderElementBandboxFinder", getOrderElements());
bandboxSearch.setSelectedElement(workReportLine.getOrderElement());
bandboxSearch.setSclass("bandbox-workreport-task");
bandboxSearch.setListboxWidth("750px");
bandboxSearch.setListboxEventListener(Events.ON_SELECT,

View file

@ -1816,3 +1816,7 @@ select {
.entity-sequences-grid tr.separator td.z-row-inner {
border-top: 1px solid #AAAAAA;
}
.bandbox-workreport-task input {
width: 250px;
}