asprin
Active member
I've the following in my template:
The resultant output is:
Those appear to be unix timestamps but I'm not sure why they are being output to the screen. The only thing I'm sure of is that those times are 5.5 hrs behind my current time (i.e. UTC + 5.5 hours = my timezone)
If I put two textboxes in the template:
The resultant output is:
So from what I can tell, onload of page it's finding the form tag, then traversing to the first textbox in the form and populating it with two timestamps values
This is driving my nuts
HTML:
<xf:textboxrow name="new_username"
value=""
maxlength="{$max_chars}"
label="New Username"
explain="{$explain}" />
The resultant output is:
Those appear to be unix timestamps but I'm not sure why they are being output to the screen. The only thing I'm sure of is that those times are 5.5 hrs behind my current time (i.e. UTC + 5.5 hours = my timezone)
If I put two textboxes in the template:
HTML:
<xf:textboxrow name="new_username2"
value=""
maxlength="{$max_chars}"
label="New Username2"
explain="{$explain}" />
<xf:textboxrow name="new_username"
value=""
maxlength="{$max_chars}"
label="New Username"
explain="{$explain}" />
The resultant output is:
So from what I can tell, onload of page it's finding the form tag, then traversing to the first textbox in the form and populating it with two timestamps values
This is driving my nuts