Announcement

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

    DateItem - year pick does not show future.

    DateItem - picklist option, when we click the year next to month doesnt show the future years.

    Image attached

    Smartclient 7.0RC3 Power Edition
    Chrome & IE - latest versions.
    Attached Files

    #2
    Setting DateItem.endDate should allow you to modify this.

    Comment


      #3
      This sets only in the dropdown select year option. We want to know how to set for the popup and for the year grid that appears when you click on the Year next to the month

      Comment


        #4
        Ah - As of 8.0 this is all that's required to set the end year in both places.
        In the build you're using you'll need to also set the "endYear" (and possibly "startYear") of the DateChooser.

        Add this to your application code:
        Code:
        isc.DateChooser.addProperties({ startYear:2000, endYear:2040 });

        Comment

        Working...
        X