cbcrocker
Junior Member
Posts: 2
Registered: 11/16/2006
Location: Houston, TX, USA
Member Is Offline
|
| posted on 11/27/2006 at 03:39 PM |
|
|
Urgent help for a newbie (non-programmer)
I finally got the popup to function but it doesn't have the time field visible. I don't have a clue as to where to find the template section of the
control panel nor what property to alter for the time field to be visible. Could you provide details, maybe an example of the section of code that
needs to be modified and what to change?
|
|
|
tigra
Administrator
Posts: 1982
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 11/27/2006 at 05:19 PM |
|
|
example is available in the distribution package.
| Code: |
var cal3 = new calendar1(document.forms['tstest'].elements['input3']);
cal3.year_scroll = true;
cal3.time_comp = true; //<-- that's where it happens
|
|
|
|
cbcrocker
Junior Member
Posts: 2
Registered: 11/16/2006
Location: Houston, TX, USA
Member Is Offline
|
| posted on 11/28/2006 at 08:16 AM |
|
|
Thanks, one more question.
Thanks, that's just what I needed. One more question though; can the time stamp be coded to not include the seconds? ie. 10:15 instead of 10:15:00.
|
|
|
tigra
Administrator
Posts: 1982
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 11/28/2006 at 02:33 PM |
|
|
You'll need to modify the script for that.
with the PRO version you can do that via the configuration.
|
|
|