We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Allow easy property logging.
<p data-bind="text: myProperty, debug: myProperty"></p>
will output in console
Debug Binding, myPropertyValue Debug Binding, myNewPropertyValue
<p data-bind="text: myProperty, debug: { message: 'my property debug', value: myProperty }"></p>
my property debug, myPropertyValue my property debug, myNewPropertyValue
Value to output to console.
Custom message to help complex debugging scenario.
There was an error while loading. Please reload this page.