IDEMPIERE-1579 Range provision in general lookup window / i18n
This commit is contained in:
parent
c0bb3e76f3
commit
3b341a569a
|
|
@ -167,7 +167,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
|
||||||
//
|
//
|
||||||
/** List of WEditors */
|
/** List of WEditors */
|
||||||
private ArrayList<WEditor> m_sEditors = new ArrayList<WEditor>();
|
private ArrayList<WEditor> m_sEditors = new ArrayList<WEditor>();
|
||||||
private ArrayList<ToolBarButton> m_sEditorsFlag = new ArrayList<ToolBarButton>();
|
private ArrayList<ToolBarButton> m_sEditorsFlag = new ArrayList<ToolBarButton>();
|
||||||
private ArrayList<WEditor> m_sEditorsTo = new ArrayList<WEditor>();
|
private ArrayList<WEditor> m_sEditorsTo = new ArrayList<WEditor>();
|
||||||
/** For Grid Controller */
|
/** For Grid Controller */
|
||||||
public static final int TABNO = 99;
|
public static final int TABNO = 99;
|
||||||
|
|
@ -1085,7 +1085,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
|
||||||
div.appendChild(fieldEditor);
|
div.appendChild(fieldEditor);
|
||||||
if (editorTo != null) {
|
if (editorTo != null) {
|
||||||
ToolBarButton editorFlag = new ToolBarButton();
|
ToolBarButton editorFlag = new ToolBarButton();
|
||||||
editorFlag.setLabel(".. to ..");
|
editorFlag.setLabel(".. " + Msg.getMsg(Env.getCtx(), "search.result.to") + " ..");
|
||||||
editorFlag.setStyle("margin-left: 5px; margin-right: 5px;");
|
editorFlag.setStyle("margin-left: 5px; margin-right: 5px;");
|
||||||
m_sEditorsFlag.add(editorFlag);
|
m_sEditorsFlag.add(editorFlag);
|
||||||
editorFlag.setMode("toggle");
|
editorFlag.setMode("toggle");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue