S

readonly numberbox can be modified by number control

  • Thread starter Thread starter stromb0li
  • Start date Start date

Visitor Greeting

Welcome to NullWarehouse.com... We are currently seeking Mod's and Contributors. If you wish to apply for a Mod position then please click on Members dropdown arrow, then click on Staff App and fill it out completely and submit it. If you want to be a Contributor then start contributing and we will have our eye on you and take notice, something great could come of it.

  • We have redone the forum. If you notice any issues or errors please open a Support Ticket under the Members dropdown and let us know.
S

stromb0li

Guest

If you have a readonly numberbox, the textbox is readonly, but you are still able to increment or decrement the value using the + and - buttons.

HTML:
Code:
<xf:numberbox name="numberbox"
                      placeholder="Number Input"
                      value="1234"
                      min="0"
                      step="1"
                      required="required"
                      readonly="readonly" />

In this case, I can't change 1234, but I can if clicking the + or - buttons...

Read more

Continue reading...
 
Back
Top Bottom