Bug #1395: Fix issue setting width of date boxes to 100px
FEA: ItEr76S04BugFixing
This commit is contained in:
parent
92d606ed6d
commit
06b4899bb0
1 changed files with 2 additions and 2 deletions
|
|
@ -429,7 +429,7 @@ public class ResourceLoadController implements Composer {
|
|||
Label label1 = new Label(_("Time filter") + ":");
|
||||
Label label2 = new Label("-");
|
||||
startBox.setValue(asDate(startDateValue));
|
||||
startBox.setWidth("75px");
|
||||
startBox.setWidth("100px");
|
||||
startBox.addEventListener(Events.ON_CHANGE, new EventListener() {
|
||||
@Override
|
||||
public void onEvent(Event event) {
|
||||
|
|
@ -441,7 +441,7 @@ public class ResourceLoadController implements Composer {
|
|||
}
|
||||
});
|
||||
endBox.setValue(asDate(endDateValue));
|
||||
endBox.setWidth("75px");
|
||||
endBox.setWidth("100px");
|
||||
endBox.addEventListener(Events.ON_CHANGE, new EventListener() {
|
||||
@Override
|
||||
public void onEvent(Event event) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue