I added a ComboBox to a FlexTable and added that flextable to a Window of gwtext.But Now while clicking the ComboBox,the values in the ComboBox are displaying behind the Window.
I created Window and added the ContentPanel which contains the FlexTable as below:
window = new com.gwtext.client.widgets.Window();
window.setAutoWidth(true);
window.setWidth("1200");
window.setHeight("350");
window.setTitle("RRF New Joinee List");
window.setClosable(true);
window.setModal(true);
window.setPlain(true);
window.setCloseAction(com.gwtext.client.widgets.Window.HIDE);
window.add(cpfilter);
window.add(panelForPopUpNew);
window.show();
Please give suggestion how to resolve this.