Skip to main content

Search

Modern DateTime Concepts

Comments

1 comment

  • Matthias_Walter

    Dear Kilgore ServiceAccount,

    to set the today's date at a specific time into a DateTime field, you could use the following Function Expression e.g. in the Initial Value Configuration:

    var today = new Date();
    return new Date(today.getFullYear(),today.getMonth(),today.getDate(),6,30);

    This is plain JavaScript as documented here: https://www.w3schools.com/js/js_dates.asp

    Kind regards

    Matthias

    0

Please sign in to leave a comment.