You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the source code, you can just search WAY.prototype.getValue, and add number type to the getter.INPUT function. like that
INPUT: function(){vartype=w.dom(element).type();// here add your typeif(_w.contains(['text','password','number'],type)){returnw.dom(element).val();}if(_w.contains(['checkbox','radio'],type)){returnw.dom(element).prop('checked') ? w.dom(element).val() : null;}},
also in WAY.prototype.setValue.
Haven't read the source code actually, I don't know the reason to specify the type of input ele. Maybe you can just add A else, I think. @gwendall
can not save the element input text="number"
The text was updated successfully, but these errors were encountered: