Oscar Measurements Eform Demo
<style type="text/css" media="print">
td.nodisplay {
display:none;
}
input.nodisplay {
border: 0px;
}
textarea.nodisplay {
scrollbar-3dlight-color: #ffffff;
scrollbar-arrow-color: #ffffff;
scrollbar-base-color: #ffffff;
scrollbar-darkshadow-color: #ffffff;
scrollbar-face-color: #ffffff;
scrollbar-highlight-color: #ffffff;
scrollbar-shadow-color: #ffffff;
scrollbar-track-color: #ffffff;
scrollbar-3dlight-color: #ffffff;
border: 0px;
}
</style>
<p>
OscarMeasurements/EForms demonstration. Each field has a property:</p>
<ul>
<li>read: Only reads the measurement data, and even if changed, these values will not be written to measurements.</li>
<li>write: Writes the contents of the field to measurements unless left blank, but will not prefill the old value.</li>
<li>read/write: Prefills the old measurement data, and if changed, the new values will be written to measurements.</li>
<li>Note: Regardless of read/write the values will be saved in eforms.</li></ul>
<form method="post">
<table>
<tbody>
<tr>
<th>Last Blood pressure(read):</th>
<td colspan="2"><input class="nodisplay" type="text" name="BPl" /></td>
</tr>
<tr>
<th>New Blood pressure(write):</th>
<td colspan="2"><input class="nodisplay" type="text" name="m$BP#value" />Comments: <input class="nodisplay" type="text" name="m$BP#comments" /></td>
</tr>
<tr>
<th>Last comment (read):</th>
<td colspan="2"><textarea class="nodisplay" name="tex225" rows="3" cols="20"></textarea></td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<th>Last Weight(read):</th>
<td><input class="nodisplay" type="text" name="weightl" /></td>
<td><select name="lastinstr">
<option value="in kg">in kg</option>
<option value="in BMI">in BMI</option>
</select></td>
</tr>
<tr>
<th>New Weight (write):</th>
<td><input class="nodisplay" type="text" name="m$WT#value" /></td>
<td><select name="m$WT#measuringInstruction">
<option value="in kg">in kg</option>
<option value="in BMI">in BMI</option>
</select></td>
</tr>
<tr>
<th>Comments(read/write):</th>
<td colspan="2"><textarea class="nodisplay" name="m$WT#comments" rows="3" cols="20"></textarea></td>
</tr>
</tbody>
</table>
<div>
<table>
<tbody>
<tr>
<td class="nodisplay">
Subject: <input type="text" name="subject" size="40" />
<input type="submit" name="B1" value="Submit" />
<input type="reset" name="B2" value="Reset" />
<input type="button" value="Print" /></td>
</tr>
</tbody>
</table>
</div>
</form>