Package org.araneaframework.uilib.list

Examples of org.araneaframework.uilib.list.EditableBeanListWidget


    super.init();
   
    addGlobalEventListener(new ProxyEventListener(this));
    setViewSelector("person/editableList");
   
    list = new EditableBeanListWidget(PersonMO.class);
    list.addBeanColumn("id", "#Id", false);
    list.addBeanColumn("name", "#First name", true, new SimpleColumnFilter.Like(), new TextControl());
    list.addBeanColumn("surname", "#Last name", true, new SimpleColumnFilter.Like(), new TextControl());
    list.addBeanColumn("phone", "#Phone no", true, new SimpleColumnFilter.Like(), new TextControl());
    list.addBeanColumn("birthdate", "#Birthdate", true, new SimpleColumnFilter.Equals(), new DateControl());
View Full Code Here

TOP

Related Classes of org.araneaframework.uilib.list.EditableBeanListWidget

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.