Set or Auto populate value in Date Field - CRM Portal
Views (2186)
I have been seen so many people asking a way to auto populate and set value in Portal Date field.Today In this article I am going to share a way to achieve the same.
Here is Adxstudio Community thread where lot of people were asking and facing challenge to set the value in Portal Date field :
https://community.adxstudio.com/forums/adxstudio-portals/76204747-a17d-e511-80dd-000d3a10150a
Also, if you want to perform some actions or operations on 'onchange' event of Date field, you can achieve it through below syntax:
Here is Adxstudio Community thread where lot of people were asking and facing challenge to set the value in Portal Date field :
https://community.adxstudio.com/forums/adxstudio-portals/76204747-a17d-e511-80dd-000d3a10150a
- $(document).ready(function(){
- var roundTripFormat = "YYYY-MM-DDTHH:mm:ss.0000000\\Z";
- var input = $("#AppointmentStartDate");
- var date = moment("06/28/2017").utc();
- input.val(date.format(roundTripFormat));
- input.siblings(".datetimepicker").data("datetimepicker").setValue(date);
- });
Also, if you want to perform some actions or operations on 'onchange' event of Date field, you can achieve it through below syntax:
- $(document).ready(function(){
- var input = $("#AppointmentStartDate");
- input.siblings(".datetimepicker").data("datetimepicker").change(function(){ alert("Date has been changed."); });
- });
This was originally posted here.

Like
Report
*This post is locked for comments