Package com.jfinal.ext.plugin.tablebind

Examples of com.jfinal.ext.plugin.tablebind.Blog


        String filename = "test.xls";
        render(JxlsRender.me(templateFileName).filename(filename).beans(beans));
    }

    public void model() {
        Blog model = new Blog();
        model.set("title", "Derek");
        model.set("content", "35");
        Blog model2 = new Blog();
        model2.set("title", "Oleg");
        model2.set("content", "31");
        List<Blog> blogs  = Lists.newArrayList();
        blogs.add(model);
        blogs.add(model2);
        Map<String, Object> beans = Maps.newHashMap();
        beans.put("employee", blogs);
View Full Code Here

TOP

Related Classes of com.jfinal.ext.plugin.tablebind.Blog

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.