Package org.jeecgframework.tag.vo.easyui

Examples of org.jeecgframework.tag.vo.easyui.Tab


    }
    return sb;
  }

  public void setTab(String id, String title,String iframe, String href, String iconCls, boolean cache, String content, String width, String heigth, boolean closable) {
    Tab tab = new Tab();
    tab.setId(id);
    tab.setTitle(title);
    tab.setHref(href);
    tab.setCache(cache);
    tab.setIframe(iframe);
    tab.setContent(content);
    tab.setHeigth(heigth);
    tab.setIcon(iconCls);
    tab.setWidth(width);
    tab.setClosable(closable);
    tabList.add(tab);
  }
View Full Code Here

TOP

Related Classes of org.jeecgframework.tag.vo.easyui.Tab

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.