paulg002
Newbie
Posts: 1
Registered: 5/10/2006
Member Is Offline
|
| posted on 5/10/2006 at 06:40 PM |
|
|
setRadio not defined
using firefox javascript console, it says setRadio not defined, when i click on radio buttons. do i have to implement setRadio function outside of
the form, if at all?
<code>
<br>
<input name="TimeChoice" type="radio" checked="checked" value="Duration" id="TimeChoiceDuration" />
Last
<input type="text" name="DurationNumber" value="3" size="3" maxlength="4" onfocus='setRadio("TimeChoiceDuration")'
id="DurationNumber" />
<select name="DurationUnit" onfocus='setRadio("TimeChoiceDuration")' id="DurationUnit">
<option value="Minutes">Minutes</option>
<option selected="selected" value="Hours">Hours</option>
</select>
<br> <br>
<input name="TimeChoice" type="radio" value="StartAndEnd" id="TimeChoiceStartAndEnd" />
From
<input type="text" name="startTime" size="16" maxlength="16" onfocus='setRadio("TimeChoiceStartAndEnd")' id="startTime" />
<a href='javascript:cal1.popup();'>
<img src='img/cal.gif' width='16' height='16' border='0' onclick='setRadio("TimeChoiceStartAndEnd")'
alt='Click Here to Pick the Date' ></img>
</a>
<br/>
<br>
To
<input type="text" name="endTime" size="16" maxlength="16" onfocus='setRadio("TimeChoiceStartAndEnd")' id="endTime" />
<a href='javascript:cal2.popup();'>
<img src='img/cal.gif' width='16' height='16' border='0' onclick='setRadio("TimeChoiceStartAndEnd")'
alt='Click Here to Pick the Date'></img>
</a>
<br>
<br>
<INPUT id="plot" name="plot" checked="checked" TYPE="radio" value="plotVal" onclick='setRadio("plot")'>Plot only<P>
<INPUT id="fullData" name="plot" TYPE="radio" value="dataVal" onclick='setRadio("fullData")'>Full data with plot<P>
<INPUT id="refresh" TYPE=CHECKBOX checked="checked" NAME="refresh">Auto-Refresh (unchecked is static)<P>
</code>
|
|
|
tigra
Administrator
Posts: 1920
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 5/10/2006 at 11:30 PM |
|
|
how this is related to tigra calendar? setRadio doesn't sound like something from the calendar's documentation or samples.
|
|
|