Skip to main content

Search

Auto populate Date field

Answered

Comments

2 comments

  • Senad

    Hello,

     

    you can use SRF in NewForm and as initial value set current date "new Date ();" or you can use standard SP Workflow and populate your Date field with the value of Created column.

     

    If you have already a workflow which is starting when the item is created then it is a better way.

    0
  • Matthias_Walter

    Thanks Senad Omicevic completely right!

    In addition to your answer, if you want to set a default date e.g. in a month, you can use the following expressions as an initial value of a field within skybow rich forms:

    var result = new Date();
    result.setDate(result.getDate() + 15);
    return result;

     


     

    0

Please sign in to leave a comment.