my application must needs this methods
On Wednesday, December 10, 2014 4:47:39 PM UTC+5:30, KARAN DANI wrote:
-- On Wednesday, December 10, 2014 4:47:39 PM UTC+5:30, KARAN DANI wrote:
i use PopupImpl class in GWT 2.6.1 now i moved on gwt 2.7.0..so its give me an error in onHide,onShow and setVisible methods.. this method is not available in PopupImpl class...so i create CustomPopupPanel.java as belowpackage com.shipco.phoenix.client.common.widgets; import com.google.gwt.dom.client.Document; import com.google.gwt.dom.client.Element; public class CustomPopupPanel {public Element createElement() {return Document.get().createDivElement(); }public Element getContainerElement(Element popup) {return popup;}public Element getStyleElement(Element popup) {return popup.getParentElement();}/*** @param popup* the popup*/public void onHide(Element popup) {}/*** @param popup* the popup*/public void onShow(Element popup) {}/*** @param popup* the popup* @param rect* the clip rect*/public void setClip(Element popup, String rect) {popup.getStyle().setProperty("clip", rect); }/*** @param popup* the popup* @param visible* true if visible*/public void setVisible(Element popup, boolean visible) {}}still i am not getting the output.. how can i use onShow,onHide and setVisible method in GWT 2.7.0Please help asap
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment