01.06.2022, 09:13
(31.05.2022, 18:04)admin schrieb: Kannst du das mal online stellen oder so? Den code den ich hier sehen kann erzeugt so kein Fehler bei mir.
Erstelle bei Codepen mal ein Beispiel wo man sehen kann, das der Fehler auftritt. Kann es sein das du da noch andere Scripte wie Bootstrap oder so benutzt?
So funktioniert das maxlength bei mir . Deswegen wäre ein Link oder so gut wo man das sehen kann das es nicht geht
https://oesoft.de
"Pager"
Code:
<!-- Modal Alarm senden -->
<div class="modal" id="myModal4" data-backdrop="static">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4>monitorOESoft - Mobile Alarmierung</h4>
</div>
<div class="modal-body">
<h5 style="margin: 15px; class="m-0">Radio Identification Code</h5>
<input type="text" class="form-control" placeholder="Adresse des Funkrufempfängers" id="address" style="height: 33px; width: 300px; border-color: black; margin-left: 15px" maxlength="7" required="required" pattern=".{7}">
<p style="margin-left: 15px; color: blue">Test RIC 1234566</p>
<br>
<input type="text" class="form-control" placeholder="Subadresse" id="subaddress" style="height: 33px; width: 300px; border-color: black; margin-left: 15px" maxlength="1" required="required" pattern=".{1}">
<p style="margin-left: 15px; color: blue">(a)= Einsatzalarm (b)= Bagatellalarm (c)= Infoalarm (d)= Rückalarm</p>
<textarea type='text' id="memo" cols="60" rows="5" placeholder="Freitext" class="form-control" required="required" style="height: 125px; width: 600px; border-color: black; margin-left: 15px"></textarea>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<input type="Submit" onclick="senden()" class="btn btn-default" value="Senden">
<input type="Submit" class="btn btn-default" value="Abbruch" data-dismiss="modal">
</div>
</div>
</div>
</div>