- enhance toolbar and header panel layout
This commit is contained in:
parent
e9abedd6a7
commit
6ecbef7398
|
@ -57,7 +57,7 @@ public class CWindowToolbar extends FToolbar implements EventListener
|
||||||
|
|
||||||
private static final String TOOLBAR_BUTTON_STYLE = "background-color: transparent; display:inline-block; margin-left: 1px; margin-right: 1px; width: 26px; height: 24px;";
|
private static final String TOOLBAR_BUTTON_STYLE = "background-color: transparent; display:inline-block; margin-left: 1px; margin-right: 1px; width: 26px; height: 24px;";
|
||||||
|
|
||||||
private static final String EMBEDDED_TOOLBAR_BUTTON_STYLE = "background: transparent none; display:inline-block; margin-left: 1px; margin-right: 1px; width: 20px; height: 18px;";
|
private static final String EMBEDDED_TOOLBAR_BUTTON_STYLE = "background-color: transparent; display:inline-block; margin-left: 1px; margin-right: 1px; width: 20px; height: 18px;";
|
||||||
|
|
||||||
private static CLogger log = CLogger.getCLogger(CWindowToolbar.class);
|
private static CLogger log = CLogger.getCLogger(CWindowToolbar.class);
|
||||||
|
|
||||||
|
@ -134,11 +134,10 @@ public class CWindowToolbar extends FToolbar implements EventListener
|
||||||
btnFind = createButton("Find", "Find", "Find");
|
btnFind = createButton("Find", "Find", "Find");
|
||||||
btnAttachment = createButton("Attachment", "Attachment", "Attachment");
|
btnAttachment = createButton("Attachment", "Attachment", "Attachment");
|
||||||
btnGridToggle = createButton("Toggle", "Multi", "Multi");
|
btnGridToggle = createButton("Toggle", "Multi", "Multi");
|
||||||
addSeparator();
|
|
||||||
btnHistoryRecords = createButton("HistoryRecords", "HistoryX", "History");
|
btnHistoryRecords = createButton("HistoryRecords", "HistoryX", "History");
|
||||||
|
addSeparator();
|
||||||
btnParentRecord = createButton("ParentRecord", "Parent", "Parent");
|
btnParentRecord = createButton("ParentRecord", "Parent", "Parent");
|
||||||
btnDetailRecord = createButton("DetailRecord", "Detail", "Detail");
|
btnDetailRecord = createButton("DetailRecord", "Detail", "Detail");
|
||||||
addSeparator();
|
|
||||||
btnFirst = createButton("First", "First", "First");
|
btnFirst = createButton("First", "First", "First");
|
||||||
btnPrevious = createButton("Previous", "Previous", "Previous");
|
btnPrevious = createButton("Previous", "Previous", "Previous");
|
||||||
btnNext = createButton("Next", "Next", "Next");
|
btnNext = createButton("Next", "Next", "Next");
|
||||||
|
@ -178,7 +177,7 @@ public class CWindowToolbar extends FToolbar implements EventListener
|
||||||
btnProductInfo.setVisible(false);
|
btnProductInfo.setVisible(false);
|
||||||
setAlign("end");
|
setAlign("end");
|
||||||
setWidth("100%");
|
setWidth("100%");
|
||||||
setStyle("background: transparent none");
|
setStyle("background: transparent none; ");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -207,6 +206,9 @@ public class CWindowToolbar extends FToolbar implements EventListener
|
||||||
this.appendChild(btn);
|
this.appendChild(btn);
|
||||||
//make toolbar button last to receive focus
|
//make toolbar button last to receive focus
|
||||||
btn.setTabindex(0);
|
btn.setTabindex(0);
|
||||||
|
btn.addEventListener(Events.ON_CLICK, this);
|
||||||
|
btn.setDisabled(true);
|
||||||
|
|
||||||
return btn;
|
return btn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue