Skip to content

Instantly share code, notes, and snippets.

@vegarringdal
Created January 15, 2018 11:12
Show Gist options
  • Select an option

  • Save vegarringdal/29b8915b14dd3880476df171c79c248a to your computer and use it in GitHub Desktop.

Select an option

Save vegarringdal/29b8915b14dd3880476df171c79c248a to your computer and use it in GitHub Desktop.
test
<template>
<section>
<h3>${title}.html</h3>
<form>
<h4>string array</h4>
<label style="display:block">
<input type="radio" name="groupRadio" model.bind="null" checked.bind="selectedProductString"> None
</label>
<label style="display:block" repeat.for="product of productsString">
<input type="radio" name="groupRadio" model.bind="product" checked.bind="selectedProductString"> ${product}
</label>
<br> Selected product: ${selectedProductString}
</form>
<br>
<button click.trigger="reset()">null</button>
<button click.trigger="select(0)">select1</button>
<button click.trigger="select(1)">select2</button>
<button click.trigger="select(2)">select3</button>
</section>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment