As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Nelsont, Do you want it to always return current date or do you intend for it to show the current date at first then the user can change it to any other date? The reason I'm asking is, if it will always return current date, then you can just hide that parameter and set it to current date in the fex. But, if you expect users to change it, then you can do some javascript code to set it to current date at window onload if calendar1 is empty.
We use javascript to do this. There are a number of javascript functions and probably a hundred different ways depending on what results you want -- but here is an example of one that get's yesterday's date and puts it into the calendar control in the format we want:
var today = new Date( );
today.setDate(today.getDate() - 1);
var t_date = today.getDate();
if (t_date<10) {t_date='0'+t_date};
var t_mnth = today.getMonth()+1;
if (t_mnth<10) {t_mnth='0'+t_mnth};
var t_year = today.getFullYear();
if (t_year<10) {t_year='0'+t_year};
var end_date = t_mnth+"/"+t_date+"/"+t_year;
document.forms[0].PARM_DATE.value = end_date;
Production: 7.6.6 WF Server  <=>  7.6.6 WF Client  <=>  7.6.6 Dev Studio Testing: <none> Using MRE & BID.  Connected to MS SQL Server 2005 Output Types: HTML, Excel, PDF