Skip to content

Instantly share code, notes, and snippets.

@jsobell
Forked from jdanyow/app.html
Last active December 10, 2021 16:05
Show Gist options
  • Save jsobell/0fc9051c8c266c89d15c60b1abda030b to your computer and use it in GitHub Desktop.
Save jsobell/0fc9051c8c266c89d15c60b1abda030b to your computer and use it in GitHub Desktop.
Check all Example
<template>
<h1>${message}</h1>
<a href='#' click.delegate='checkall()'>Check all</a>
<ul>
<li repeat.for='c of checked'><input type='checkbox' checked.bind='c.checked'>Checked ${c.value} : ${c.checked} </li>
</ul>
</template>
export class App {
message = 'Hello World!';
checked = [
{ value:'A', checked:false},
{ value:'B', checked:false},
{ value:'C', checked:false},
{ value:'D', checked:true}
];
checkall = () => this.checked.forEach(x => x.checked = true);
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app>
<h1>Loading...</h1>
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script>
<script>
require(['aurelia-bootstrapper']);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment