Package org.araneaframework.uilib.form.control

Examples of org.araneaframework.uilib.form.control.DisplayControl$ViewModel


    addGlobalEventListener(new ProxyEventListener(this));
    setViewSelector("demo/DemoDisplayForm/main");
   
    displayForm = new FormWidget();

    displayForm.addElement("condDisplay", "#Condition", new DisplayControl(), new BooleanData(), false);
    displayForm.addElement("textDisplay", "#Text", new DisplayControl(), new StringData(), false);
    displayForm.addElement("valueDisplay", "#Value", new DisplayControl(), new LongData(), false);

    displayForm.setValueByFullName("condDisplay", Boolean.TRUE);
    displayForm.setValueByFullName("textDisplay", "Test string");
    displayForm.setValueByFullName("valueDisplay", new Long(11));
View Full Code Here

TOP

Related Classes of org.araneaframework.uilib.form.control.DisplayControl$ViewModel

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.