Package org.sgx.yuigwt.yui.node

Examples of org.sgx.yuigwt.yui.node.Node.load()


  public void ready(final YuiContext Y) {
    String base = GWT.getModuleBaseURL()+"testfiles/";
   
    Node n1 = Y.one(parent.getDOMNode()).appendChild("<div></div>");
    Window.alert(n1+"");
    n1.load(base+"page1.html", "#p1", new NodeLoadCallback() {
     
      @Override
      public void call(NodeLoadCallbackArg arguments) {
        Window.alert("from java: "+JsUtil.dumpObj(arguments));
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.