CA Service Management

  • 1.  SC Date form selection max 365 days

    Posted Sep 05, 2017 01:22 PM

    Anyone have JavaScript that will set the Date Selection on the SC form to max of 365 days.   I'm looking to be able to grey out any date beyond 365 days of when the form is being submitted.   

     

    Thanks



  • 2.  Re: SC Date form selection max 365 days
    Best Answer

    Posted Sep 07, 2017 01:30 PM

    Hi Jared,

     

    You can use a JavaScript expression similar to the following for the 'Maximum Value' date field attribute:

     

    $(new Date().getTime() + 31556952000)

     

    Where 31556952000 is a year in milliseconds.

     

    Thanks!

    Jason



  • 3.  Re: SC Date form selection max 365 days

    Posted Sep 07, 2017 01:39 PM

    Jason, 

     

    Exactly what I was looking for.  Thanks.