Mega Code Archive

 
Categories / Java / GWT
 

Set URL view for Tab (Smart GWT)

/*  * SmartGWT (GWT for SmartClient)  * Copyright 2008 and beyond, Isomorphic Software, Inc.  *  * SmartGWT is free software; you can redistribute it and/or modify it  * under the terms of the GNU Lesser General Public License version 3  * as published by the Free Software Foundation.  SmartGWT is also  * available under typical commercial license terms - see  * http://smartclient.com/license  * This software is distributed in the hope that it will be useful,  * but WITHOUT ANY WARRANTY; without even the implied warranty of  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU  * Lesser General Public License for more details.  */ package com.smartgwt.sample.showcase.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.RootPanel; import com.smartgwt.client.types.Side; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.ViewLoader; import com.smartgwt.client.widgets.layout.VLayout; import com.smartgwt.client.widgets.tab.Tab; import com.smartgwt.client.widgets.tab.TabSet; public class Showcase implements EntryPoint {   public void onModuleLoad() {     RootPanel.get().add(getViewPanel());   }   public Canvas getViewPanel() {     final TabSet topTabSet = new TabSet();     topTabSet.setTabBarPosition(Side.TOP);     topTabSet.setTabBarAlign(Side.LEFT);     topTabSet.setTop(40);     topTabSet.setWidth(400);     topTabSet.setHeight(250);     final Tab tab1 = new Tab("Tab1");     Canvas tab1Content = new Canvas();     tab1Content.setContents("Contents of Tab1");     tab1.setPane(tab1Content);     topTabSet.addTab(tab1);     final Tab tab2 = new Tab("Tab2");     ViewLoader tab2loader = new ViewLoader();     tab2loader.setLoadingMessage("Loading Grid..");     tab2loader.setViewURL("data/dataIntegration/json/loadedView.js");     tab2.setPane(tab2loader);     topTabSet.addTab(tab2);     VLayout vLayout = new VLayout();     vLayout.setMembersMargin(15);     vLayout.addMember(topTabSet);     vLayout.setHeight("auto");     return vLayout;   } }                  SmartGWT.zip( 9,880 k)