Skip to content
View webfirmframework's full-sized avatar
🔐
wffweb-12.0.0 is released
🔐
wffweb-12.0.0 is released
Block or Report

Block or report webfirmframework

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. wffweb-graalvm-production-ready-sample-projects wffweb-graalvm-production-ready-sample-projects Public

    Sample wffweb project to build native image with GraalVM.

    Java 1

  2. wffweb-demo-deployment wffweb-demo-deployment Public

    wffweb 12 demo project. It uses embedded tomcat 10.

    Java 2 4

  3. minimal-production-ready-projects minimal-production-ready-projects Public

    Minimal production ready webfirmframework projects. The sample projects in this repository use bootstrap css framework, foundation css framework etc..

    Java 1 1

  4. Example of getSharedData and setShar... Example of getSharedData and setSharedData methods on a tag
    1
    import com.webfirmframework.wffweb.tag.html.Body;
    2
    import com.webfirmframework.wffweb.tag.html.Html;
    3
    import com.webfirmframework.wffweb.tag.html.TitleTag;
    4
    import com.webfirmframework.wffweb.tag.html.attribute.global.Id;
    5
    import com.webfirmframework.wffweb.tag.html.metainfo.Head;
  5. Example for Sateful input field whic... Example for Sateful input field which syncs the value state to the server on change value event.
    1
    
                  
    2
    import com.webfirmframework.wffweb.tag.html.AbstractHtml;
    3
    import com.webfirmframework.wffweb.tag.html.attribute.AttributeNameConstants;
    4
    import com.webfirmframework.wffweb.tag.html.attribute.Value;
    5
    import com.webfirmframework.wffweb.tag.html.attribute.core.AbstractAttribute;
  6. Sample form submit java code, refer ... Sample form submit java code, refer https://webfirmframework.github.io for developers guide
    1
    import java.util.logging.Logger;
    2
    
                  
    3
    import com.webfirmframework.wffweb.tag.html.AbstractHtml;
    4
    import com.webfirmframework.wffweb.tag.html.Br;
    5
    import com.webfirmframework.wffweb.tag.html.attribute.Checked;