How can we display today's date on the VBCS application page?
Ashish A Sinha
Green Ribbon
1
Best Answer
-
One approach
- Add a page level JavaScript method
PageModule.prototype.today= function() {
return new Date();
}- Create an action flow that invoke this method and returns the value into a page level parameter
- Call this method in the vbEnter event of the page.
More about page level methods:
Variables, Modules, and Functions, OH MY! Custom Client Code in Visual Builder
3
Answers
-
Thank you Shay.
1