Our referral form has been working well until recently a clinician got verbose in one of the text areas. She was cut off after two lines (on the print out side). I enlarged the text area box but it still cuts off after two lines. worse it gives no indication to the writer that their info is not being taken in.
In the Reason for Referral text area below you can see the code I used. I added the 200 character limit warning as a stopgap.
I've included labels from either side in case there's some clues there, though they are not text areas. There is another text area in the form that, on testing, behaves the same way.
Thank you.
Scott
In the Reason for Referral text area below you can see the code I used. I added the 200 character limit warning as a stopgap.
I've included labels from either side in case there's some clues there, though they are not text areas. There is another text area in the form that, on testing, behaves the same way.
Thank you.
Scott
<label>Telephone Number:
<input name="psTelephone_Number" type="text" id="telephonenumber:" size="15" maxlength="15" />
</label>
</p>
<p>
<label>Reason For Referral(limit to 200 characters):
<textarea name="Reason_For_Referral" id="reasonforreferral:" cols="70" rows="7"></textarea>
</label>
</p>
<p>
<label>Client's Support System:
<input name="Clients_Support_System" type="text" id="clientssupport" value="" size="50" maxlength="100" />
</label>