RSS Feed/News readonly numberbox can be modified by number control

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
23,609
Points
823

Reputation:

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...
 
Status
Not open for further replies.
Top