문제

Can anyone help me to javascript into java in gwt, and I need one simple example for this and I am gonna one JavaScript(URL) user form in to Java.

Thanking you

도움이 되었습니까?

해결책

Try with Frame to create iframe in JAVA in GWT.

 public class FrameExample implements EntryPoint {

    public void onModuleLoad() {
      // Make a new frame, and point it at Google.
      Frame frame = new Frame("http://www.google.com/");

      // Add it to the root panel.
      RootPanel.get().add(frame);
    }
  }

Find more than 30 Code Examples here Java Code Examples for Frame

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top