-
-
Save johntom/1172b8d7ae289970e54e53d238d8d33d to your computer and use it in GitHub Desktop.
Multiselect: basic usage
This file contains 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
<template> | |
<require from="./basic-use.css!css"></require> | |
<require from="aurelia-kendoui-bridge/multiselect/multiselect"></require> | |
<require from="aurelia-kendoui-bridge/button/button"></require> | |
<div id="example"> | |
<div class="demo-section wide k-content"> | |
<h2>Invite Attendees</h2> | |
<label for="dd">dd</label> | |
<ak-multiselect k-value.two-way="dd"> | |
<select multiple="multiple" data-placeholder="Select popple..."> | |
<option repeat.for="opt of people" model.bind="opt"> | |
${opt} | |
</option> | |
</select> | |
</ak-multiselect> | |
<label for="required">Required</label> | |
<ak-multiselect k-value.two-way="required"> | |
<select multiple="multiple" data-placeholder="Select attendees..."> | |
<option>Steven White</option> | |
<option>Nancy King</option> | |
<option>Nancy Davolio</option> | |
<option>Robert Davolio</option> | |
<option>Michael Leverling</option> | |
<option>Andrew Callahan</option> | |
<option>Michael Suyama</option> | |
<option selected>Anne King</option> | |
<option>Laura Peacock</option> | |
<option>Robert Fuller</option> | |
<option>Janet White</option> | |
<option>Nancy Leverling</option> | |
<option>Robert Buchanan</option> | |
<option>Margaret Buchanan</option> | |
<option selected>Andrew Fuller</option> | |
<option>Anne Davolio</option> | |
<option>Andrew Suyama</option> | |
<option>Nige Buchanan</option> | |
<option>Laura Fuller</option> | |
</select> | |
</ak-multiselect> | |
<label for="optional">Optional</label> | |
<ak-multiselect k-auto-close.bind="false" k-value.two-way="optional"> | |
<select multiple="multiple" data-placeholder="Select attendees..."> | |
<option>Steven White</option> | |
<option>Nancy King</option> | |
<option>Nancy Davolio</option> | |
<option>Robert Davolio</option> | |
<option>Michael Leverling</option> | |
<option>Andrew Callahan</option> | |
<option>Michael Suyama</option> | |
<option>Anne King</option> | |
<option>Laura Peacock</option> | |
<option>Robert Fuller</option> | |
<option>Janet White</option> | |
<option>Nancy Leverling</option> | |
<option>Robert Buchanan</option> | |
<option>Margaret Buchanan</option> | |
<option>Andrew Fuller</option> | |
<option>Anne Davolio</option> | |
<option>Andrew Suyama</option> | |
<option>Nige Buchanan</option> | |
<option>Laura Fuller</option> | |
</select> | |
</ak-multiselect> | |
<button ak-button click.delegate="showAttendees()">Send Invitation</button> | |
</div> | |
</div> | |
</template> |
This file contains 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
export class BasicUse { | |
showAttendees() { | |
alert(`Attendees: ${this.required}, \nOptional: ${this.optional}`); | |
} | |
let people=['Nancy King','Nancy Davolio', | |
'Robert Davolio', | |
'Michael Leverling', | |
'Andrew Callahan', | |
'Michael Suyama', | |
'Anne King', | |
'Laura Peacock', | |
'Robert Fuller', | |
'Janet White', | |
'Nancy Leverling', | |
'Robert Buchanan', | |
'Margaret Buchanan', | |
'Andrew Fuller', | |
'Anne Davolio', | |
'Andrew Suyama', | |
'Nige Buchanan', | |
'Laura Fuller', | |
] | |
} |
This file contains 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
.demo-section label { | |
display: block; | |
margin: 15px 0 5px 0; | |
} | |
#get { | |
float: right; | |
margin: 25px auto 0; | |
} |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<title>Aurelia KendoUI bridge</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.2.714/styles/kendo.common.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.2.714/styles/kendo.rtl.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.2.714/styles/kendo.default.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.2.714/styles/kendo.mobile.all.min.css"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.4.0/bluebird.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.2.1/chroma.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2016.2.714/js/jquery.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2016.2.714/js/jszip.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2016.2.714/js/kendo.all.min.js"></script> | |
</head> | |
<body aurelia-app="main"> | |
<h1>Loading...</h1> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.6/system.js"></script> | |
<script src="https://rawgit.com/aurelia-ui-toolkits/aurelia-kendoui-bundles/1.0.0-beta.1.0.6/config2.js"></script> | |
<script> | |
System.import('aurelia-bootstrapper'); | |
</script> | |
</body> | |
</html> |
This file contains 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
export function configure(aurelia) { | |
aurelia.use | |
.standardConfiguration() | |
.developmentLogging() | |
.plugin('aurelia-kendoui-bridge'); | |
aurelia.start().then(a => a.setRoot()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment