I would like to achieve the following popup right on the search text box. I tried everything possible and followed the code explained in codename one document
Dialog d = new Dialog("Popup Title");
TextArea popupBody = new TextArea("This is the body of the popup", 3, 10);
popupBody.setUIID("PopupBody");
popupBody.setEditable(false);
d.setLayout(new BorderLayout());
d.add(BorderLayout.CENTER, popupBody);
d.showPopupDialog(showPopup);
This is the popup I want to achieve. Please advise. Thank you.

