Home > Domino Tips > Developer > HTML > Always Displaying Times in Correct Local Format on the Web
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

HTML

Always Displaying Times in Correct Local Format on the Web


Shirley Sharpe
12.14.2000
Rating: -3.67- (out of 5) Hall of fame tip of the month winner


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


By default, on the Web dates/times are displayed by Domino in the timezone of the server - or you can choose GMT with @Text formulas. What about if you want the date/time always displayed in the timezone of the user -- wherever they are?

The answer is to use JavaScript Date objects. Here's how...

Code:
In the form where you want to display dates on the Web in local format:

Create a function in the JS Header box:

function doDate (year, month, day, hour, minute) {
  localDate = new Date (year, month, day, hour, minute, 0);
  window.document.write ( localDate.toLocaleString( ) );
}

This takes the date components, creates a JavaScript Date object and then outputs the date in a format decided by the browser that matches the local PC timezone preferences. If the function is called whilst a Web page is being rendered by Domino, the date text will appear at the point in the document where the function is called.

Go to date/time field on your form and add this on a separate line:

<SCRIPT LANGUAGE=


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


RELATED CONTENT
HTML
Write HTML and JavaScript in Notes view rows and columns on the Web
Open Lotus Notes documents in Microsoft Word without coding
Trap an attachment path via the Domino file upload control field
A bevy of Notes/Domino development tips
Styling Lotus Domino Web fields
How to convert Microsoft Word or Microsoft Excel documents to HTML
An easier way to view multiple columns on the Web
How to print a form in landscape format automatically
Tip contest winner: Hide view column while being able to sort it
HTML signature maker

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary


"JavaScript">
<!--
doDate ( <Computed Value> );
// -->
</SCRIPT>

Mark the entire text 'Pass-Thru HTML' and select 'Hide when previewed for editing'.

Select the original field and mark it 'Hide when previewed for reading'. In this way you can edit dates/times as normal but they are displayed via the doDate function.

Finally, the <Computed Value> is created with the following formula (where 'My_Date' is the name of my date/time field):

@Text(@Year(My_Date)) + ", " +
@Text(@Month(My_Date) - 1) + ", " +
@Text(@Day(My_Date)) + ", " +
@Text(@Hour(My_Date)) + ", " +
@Text(@Minute(My_Date))

Note that month value is reduced by one, as javascript Date objects start with Jan = 0.

Thus when Domino is rendering a document that uses this form, it computes the values from the My_Date field that will be passed to the doDate function. The browser then receives the page and, whilst parsing it, processes the doDate function locally -- which then inserts the correct localised date/time string.

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts