Package com.extjs.gxt.samples.client

Examples of com.extjs.gxt.samples.client.ExamplesModel


  protected void onRender(Element parent, int pos) {
    super.onRender(parent, pos);

    setScrollMode(Scroll.AUTO);

    ExamplesModel model = (ExamplesModel) Registry.get(Examples.MODEL);
    ListStore<ModelData> store = new ListStore<ModelData>();
    store.add(model.getEntries());

    StringBuffer sb = new StringBuffer();
    sb.append("<tpl for=\".\">");
    sb.append("<div class='sample-box' style='padding-top: 4px;border: none'>");
    sb.append("<div class='thumbd'>{image}</div>");
View Full Code Here

TOP

Related Classes of com.extjs.gxt.samples.client.ExamplesModel

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.