
Hi folks, I've got the following HTML- <!--div class="sheet-events">
<h1 class="sheet-section">Events</h1>
<fieldset class="repeating_events">
<table>
<tbody>
<tr>
<th width="1%"></th>
<td style="text-align:top">
<label>Description: <textarea rows="4" cols="15" name="attr_EventDescription"></textarea></label>
</td>
<td><label>Date: <input type="date" name="attr_EventDate"></td></label>
<td><label>Time: <input type="time" name="attr_EventTime"></td></label>
<td style="text-align:top">
<label>Location: <textarea rows="4" cols="15" name="attr_EventLocation"></textarea></label>
</td>
<td style="text-align:top">
<label>Duration: <input name="attr_EventDuration" type="text"/></label>
</td>
<td style="text-align:top">
<label>Notes: <textarea rows="4" cols="20" name="attr_EventNotes"></textarea></label>
</td>
</tr>
</tbody>
</table>
</fieldset>
</div--> The text based fields all work just fine. The data entered is remembered. But the Date and Time fields are not, and I can't see what I'm doing wrong. Anyone know what I'm messing up here?