Package org.rstudio.studio.client.shiny

Examples of org.rstudio.studio.client.shiny.ShinyApplicationPresenter$Binder


   @Override
   protected void onInitialize(LayoutPanel mainPanel, JavaScriptObject params)
   {
      ShinyApplicationParams appParams = params.cast();
      Window.setTitle(appParams.getPath() + " - " + "Shiny");
      ShinyApplicationPresenter appPresenter = pPresenter_.get();
      appPresenter.loadApp(appParams);
     
      // make it fill the containing layout panel
      Widget presWidget = appPresenter.asWidget();
      mainPanel.add(presWidget);
      mainPanel.setWidgetLeftRight(presWidget, 0, Unit.PX, 0, Unit.PX);
      mainPanel.setWidgetTopBottom(presWidget, 0, Unit.PX, 0, Unit.PX);
   }
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.shiny.ShinyApplicationPresenter$Binder

Copyright © 2018 www.massapicom. 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.