Definition | An input is a field used to elicit a response from a user |
Code |
to clipboard
<input class={ "input". type={ "text". name="matnr"/> |
Example |
|
With value help |
to clipboard
<input class="input valuehelp" type={ "text". name="matnr"/> |
Example |
|
Required input (static label) |
to clipboard
<label class='label' for="bstkd">Customer Reference</label> <br /> <input class='input' required type={ "text". id='bstkd' name='bstkd' maxLength="35" /> |
Example |
|
Required input (dynamic label) |
to clipboard
<label class='label' name="city@label"></label><br> <input type=text class={ "input". name="city" style='width:240px;' /> |
Example |
|
Date selection |
to clipboard
<div class="infoblock" style="height:50px;"> <label class='label' for="price_date" name="price_date@label"></label> <br /> <input class='input' type="date" name='price_date' style="width: 100%; " /> </div> |
Example |
|
Monthly selection |
to clipboard
<input class={ "input". type="month" name="ketdat"/> |
Example |
|
Component | S10 Framework |