We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I love punches for the ability to write
<input value="{{myField}}" />
which creates a binding like:
<input data-bind="value:myField" >
But in some cases I also want more immediate updates using textInput:
textInput
<input data-bind="textInput: myField" />
Is there any way to accomplish this in punches?
The text was updated successfully, but these errors were encountered:
Have you tried <input textinput="{{myField}}" />?
<input textinput="{{myField}}" />
Sorry, something went wrong.
D'oh, that works. I think I thought it wouldn't because value is an attribute of the input element in native HTML but textinput isn't. My bad. Thanks.
value
input
textinput
No problem. I could make it more clear in the documentation.
No branches or pull requests
I love punches for the ability to write
which creates a binding like:
But in some cases I also want more immediate updates using
textInput
:Is there any way to accomplish this in punches?
The text was updated successfully, but these errors were encountered: