Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    time editor in date picker

    Any chance this will ever come to light? We want to have the ability to edit time portion of a date while in the calendar popup.

    #2
    It's a valid Feature Sponsorship if it's important in your application.

    Comment


      #3
      My date picker dialog with time looks like this. (screenshot attached)

      Code:
      ...
      	        final DateItem fromDateField = new DateItem("fromDateField", "From");
      	        fromDateField.setUseTextField(true);
      	        	       fromDateField.setDisplayFormat(DateDisplayFormat.TOSERIALIZEABLEDATE);
      	        fromDateField.setRequired(true);
      	        fromDateField.setValue(fromDate);
      	        
      	        final DateItem toDateField = new DateItem("toDateField", "To");
      	        toDateField.setUseTextField(true);
      	        toDateField.setDisplayFormat(DateDisplayFormat.TOSERIALIZEABLEDATE);
      	        toDateField.setRequired(true);
      	        toDateField.setValue(toDate);
      ..
      I select the date and type the time portion.
      Attached Files

      Comment


        #4
        Thanks for your input - but we already have that functionality - we want to be able to edit the date object using the pickericon kind of like this

        http://designingwebinterfaces.com/bl...picker_ex3.png
        Last edited by acarur01; 9 Jun 2011, 08:50.

        Comment

        Working...
        X