Package org.rendersnake.site.example.mobile

Examples of org.rendersnake.site.example.mobile.Slider


    public void renderOn(HtmlCanvas html) throws IOException {
            html.div(id("widgets"));

            html.h1().write("Slider")._h1();
            Slider s = new Slider(0,50,100);
            s.id("slider");
            html.render(s);                   
            html.render(StringResource.valueOf("content/ipad/Slider.html"));                   

            html.h1().write("FlipSwitch")._h1();           
            FlipSwitch f = new FlipSwitch("switch-select", "happy");
View Full Code Here


   
    public void get(HtmlCanvas html, HandlerResult result) throws IOException {
            html.div(id("widgets"));

            html.h1().write("Slider")._h1();
            Slider s = new Slider(0,50,100);
            s.id("slider");
            html.render(s);                   
            html.render(StringResource.valueOf("content/ipad/Slider.html"));                   

            html.h1().write("FlipSwitch")._h1();           
            FlipSwitch f = new FlipSwitch("switch-select", "happy");
View Full Code Here

TOP

Related Classes of org.rendersnake.site.example.mobile.Slider

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.