knockout.js - How to link checkbox and text value using knockout? -
i want clear text box when checkbox unchecked.
this html:
<input type="checkbox" id="chkminfixcharge" class="left" data-bind="enable: isenableminfixedcharge,checked: ischeckminfixedcharge" /> <input type="text" id="txtminfixcharge" class="minitext left" data-bind="value:?????" style="margin: 0px 10px;" />
use line of code you
value:ischeckminfixedcharge()? urdefinedvariable:''
Comments
Post a Comment