Hi,
I am trying to get the joomla calendar to work inside a form of chronoforms within joomla1.5
I am using this html code:
But I get an error message of the 2nd php variable.
so I exchanged:
value="<? php echo $this->row->dates; ?>"
with value="Your Date"
Now the Form Displays correctly, but I don`t see the calendar, neither is it working
Mario
I am trying to get the joomla calendar to work inside a form of chronoforms within joomla1.5
I am using this html code:
<link href="style.css" rel="stylesheet" type="text/css">
<? JHTML::_('behavior.calendar'); ?>
<div id="form">
<table width="610px" class="table_form" cellspacing="0">
<tr>
<td class="td_dark" colspan="2"> Anreisetermin:
</td>
</tr>
<td class="text_links"> Anreisedatum:
</td>
<td class="text_rechts">
<input class="inputbox" type="text" name="dates" id="dates" size="15" maxlength="10" value="<? php echo $this->row->dates; ?>" />
<a href="#" onclick="return showCalendar('dates', 'dd-m-y');"><img class="calendar" src="images/blank.png" alt="calendar" /></a>
Anfrage<br/></td>
</tr>
</table>
</div>
But I get an error message of the 2nd php variable.
so I exchanged:
value="<? php echo $this->row->dates; ?>"
with value="Your Date"
Now the Form Displays correctly, but I don`t see the calendar, neither is it working
Mario