-
-
Save gist-master/c554a5d7cc6264fdb9022fcd274ed637 to your computer and use it in GitHub Desktop.
Multiselect: virtualization
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="aurelia-kendoui-bridge/multiselect/multiselect"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div id="example"> | |
<div class="demo-section wide k-content"> | |
<ak-multiselect k-placeholder="Select addresses..." | |
k-data-text-field="ShipName" | |
k-data-value-field="OrderID" | |
k-height.bind="520" | |
k-value.bind="[10265, 10289]" | |
k-virtual.bind="virtual" | |
k-data-source.bind="dataSource"> | |
<ak-template for="itemTemplate"> | |
<span class="order-id">${OrderID}</span> | |
${ShipName}, ${ShipCountry} | |
</ak-template> | |
</ak-multiselect> | |
</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 Virtualization { | |
constructor() { | |
this.virtual = { | |
itemHeight: 26, | |
valueMapper: (options) => { | |
$.ajax({ | |
url: '//demos.telerik.com/kendo-ui/service/Orders/ValueMapper', | |
type: 'GET', | |
dataType: 'jsonp', | |
data: this.convertValues(options.value), | |
success: (data) => { | |
options.success(data); | |
} | |
}); | |
} | |
}; | |
} | |
dataSource = { | |
type: 'odata', | |
transport: { | |
read: '//demos.telerik.com/kendo-ui/service/Northwind.svc/Orders' | |
}, | |
schema: { | |
model: { | |
fields: { | |
OrderID: { type: 'number' }, | |
Freight: { type: 'number' }, | |
ShipName: { type: 'string' }, | |
OrderDate: { type: 'date' }, | |
ShipCity: { type: 'string' } | |
} | |
} | |
}, | |
pageSize: 80, | |
serverPaging: true, | |
serverFiltering: true | |
}; | |
convertValues(value) { | |
let data = {}; | |
value = $.isArray(value) ? value : [value]; | |
for (let idx = 0; idx < value.length; idx++) { | |
data['values[' + idx + ']'] = value[idx]; | |
} | |
return data; | |
} | |
} |
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/2017.1.118/styles/kendo.common.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.118/styles/kendo.rtl.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.118/styles/kendo.default.min.css"> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.118/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.118/js/jquery.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2017.1.118/js/jszip.min.js"></script> | |
<script src="https://kendo.cdn.telerik.com/2017.1.118/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.2.0/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