-
-
Save JeroenVinke/dab3b0136b1c8131bf015d1c8257be9c to your computer and use it in GitHub Desktop.
Responsive panel with Multiselect:
This file contains hidden or 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> | |
<require from="aurelia-kendoui-bridge/responsivepanel/responsivepanel"></require> | |
<button class="k-rpanel-toggle"><span class="k-icon k-i-hbars"></span></button> | |
<div class="demo-section k-content"> | |
<nav id="navigation-responsive" | |
ak-responsivepanel="k-widget.bind: panel; | |
k-auto-close.bind: false; | |
k-orientation: left; | |
k-breakpoint: 10000; "> | |
<div id="example"> | |
<div class="demo-section wide k-content"> | |
<h2>Invite Attendees</h2> | |
<label for="required">Required</label> | |
<ak-multiselect k-value.two-way="required" k-auto-close.bind="true" > | |
<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> | |
</nav> | |
</div> | |
</div> | |
</template> |
This file contains hidden or 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}`); | |
} | |
} |
This file contains hidden or 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 hidden or 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/2017.1.223/styles/kendo.common.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.223/styles/kendo.rtl.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.223/styles/kendo.default.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.223/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/2017.1.223/js/jquery.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2017.1.223/js/jszip.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2017.1.223/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 hidden or 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