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
If you use HTML5, and declare an input tag of type (say) email, Agility will fail to recognise the tag as an input, and will make it a one-way binding, so changes from user input will not be reflected in the model.
The problem here is in the bindings() function, which I have changed to contain the following:
// <input type="text">, <input>, and <textarea>: 2-way binding
else if ($node.is('input, textarea')) {
instead of specifying input[text]
Colin.
The text was updated successfully, but these errors were encountered:
+1 to this. Suprised Agility still hasn't addressed this issue. I'm trying to use the 'number' input type but agility does not set the value on the input but instead as part of the html.
If you use HTML5, and declare an input tag of type (say) email, Agility will fail to recognise the tag as an input, and will make it a one-way binding, so changes from user input will not be reflected in the model.
The problem here is in the bindings() function, which I have changed to contain the following:
instead of specifying input[text]
Colin.
The text was updated successfully, but these errors were encountered: