Package com.extjs.gxt.ui.client.widget

Examples of com.extjs.gxt.ui.client.widget.DatePicker.addListener()


  protected void onRender(Element parent, int index) {
    super.onRender(parent, index);
    setLayout(new FlowLayout(10));
   
    final DatePicker picker = new DatePicker();
    picker.addListener(Events.Select, new Listener<ComponentEvent>() {

      public void handleEvent(ComponentEvent be) {
        //String d = DateTimeFormat.getShortDateFormat().format(picker.getValue());
        String d = DateTimeFormat.getFormat("MM/dd/yyyy").format(picker.getValue());
        Info.display("Date Selected", "You selected {0}.", new Params(d));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.