Guest User

Untitled

a guest
Jan 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <template>
  2. <form>
  3. <div class="form-group row">
  4. <label class="col-sm-4 control-label" for="States">State&nbsp;<span class="required">${required}</span></label>
  5. <div class="col-sm-8">
  6. <select id="States" class="form-control">
  7. <option model.bind="null"></option>
  8. <option repeat.for="state of states" model.bind="state.Id">${state.Name}</option>
  9. </select>
  10. </div>
  11. </div>
  12. </form>
  13. </template>
Add Comment
Please, Sign In to add comment