DEMPIERE-1016 Tree panel in windows not working.
This commit is contained in:
parent
803997fdf6
commit
bd7d732f87
|
@ -359,7 +359,10 @@ public class TreeSearchPanel extends Panel implements EventListener<Event>, Tree
|
||||||
Comboitem item = (Comboitem) comp;
|
Comboitem item = (Comboitem) comp;
|
||||||
String value = item.getLabel();
|
String value = item.getLabel();
|
||||||
String type = item.getContent();
|
String type = item.getContent();
|
||||||
selectTreeitem(value+"."+type);
|
if (!Util.isEmpty(type))
|
||||||
|
selectTreeitem(value+"."+type);
|
||||||
|
else
|
||||||
|
selectTreeitem(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue