Guest User

Untitled

a guest
Jul 30th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <template>
  2. <require from="./autocomplete"></require>
  3. <form>
  4. <label class="form-component">
  5. Country:<br/>
  6. <autocomplete service.bind="suggestionService.country"
  7. value.bind="model.country"
  8. placeholder="Enter country..."
  9. change.delegate="model.city = null">
  10. </autocomplete>
  11. </label>
  12.  
  13. <label class="form-component">
  14. City${model.country ? ' (' + countryIndex[model.country].length + ' choices)' : ''}:<br/>
  15. <autocomplete service.bind="suggestionService.city"
  16. value.bind="model.city"
  17. placeholder="Enter city...">
  18. <template replace-part="suggestion">
  19. <span style="font-style: italic">${suggestion}</span>
  20. </template>
  21. </autocomplete>
  22. </label>
  23. </form>
  24. </template>
Add Comment
Please, Sign In to add comment