Created
July 17, 2012 16:35
-
-
Save motowilliams/3130490 to your computer and use it in GitHub Desktop.
Knockout View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<input data-bind="value: address"/> | |
<button data-bind="click: search">Search</button> | |
</div> | |
<!-- ko if: list().length > 0 --> | |
<h5 data-bind="text: list().length"></h5> | |
<!-- /ko --> | |
<!-- ko foreach: list --> | |
<div class="result" data-bind="text: addr"></div> | |
<!-- /ko --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment