Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Calendar on Html Layout Painter

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Calendar on Html Layout Painter
 Login/Join
 
Member
posted
I have a calander on my launch page and just want it to show current date.
Here is the code from the html text
<INPUT id=calendar1 style="Z-INDEX: 1; LEFT: 320px; WIDTH: 130px; POSITION: absolute; TOP: 180px" tabIndex=1 maxLength=8 accept=0 size=8 name=APDDT elementtype="14" datasource datatype="0" sourcetype="typeMaster" operation addalloption="0" calendardata="0/0/0;0/0/1" calendardatatype="1" ibiformat="YYMD" boundtovariable="1" selectedvalue> 

This message has been edited. Last edited by: Kerry,


WebFOCUS Dev Studio 8105m
 
Posts: 24 | Registered: September 24, 2007Report This Post
Guru
posted Hide Post
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.

regards,
Anatess


WF 8.1.05 Windows
 
Posts: 333 | Location: Orlando, FL | Registered: October 17, 2006Report This Post
Platinum Member
posted Hide Post
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
 
Posts: 230 | Location: Wichita, KS | Registered: May 27, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Calendar on Html Layout Painter

Copyright © 1996-2020 Information Builders