-
-
Save JeroenVinke/c582d0dd11eb3bb33734f29190d7818d to your computer and use it in GitHub Desktop.
Grid: command
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="aurelia-kendoui-bridge/grid/grid"></require> | |
| <require from="aurelia-kendoui-bridge/grid/col"></require> | |
| <require from="aurelia-kendoui-bridge/grid/grid-command"></require> | |
| <ak-grid k-no-init.bind="true" k-sortable.bind="true" k-scrollable.bind="true" k-allow-copy.bind="true" k-pageable.bind="{ refresh: true, pageSize: 5}" k-filterable.bind="true" k-scrollable.bind="true" k-selectable.bind="true" k-data-source.bind="datasource" view-model.ref="testgrid" k-on-data-bound.delegate="onDataBound($event.detail)"> | |
| <ak-col k-title="Details" k-width.bind="300"> | |
| <ak-grid-command k-name="details" k-text="Details" k-click.call="details($event)"></ak-grid-command> | |
| </ak-col> | |
| <ak-col k-field.bind="column.field" repeat.for="column of columns" k-width.bind="column.width"></ak-col> | |
| <div id="rateDetailsGrid" ref="jobsDiv"></div> | |
| </ak-grid> | |
| <input type="button" click.delegate="loadgrid()" value="Load Grid"></input> | |
| </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 BindingToRemoteData { | |
| constructor() { | |
| this.datasource = { | |
| type: 'odata', | |
| transport: { | |
| read: '//demos.telerik.com/kendo-ui/service/Northwind.svc/Customers' | |
| }, | |
| pageSize: 5 | |
| }; | |
| } | |
| columns = [{ | |
| field: 'ContactName', | |
| width: 300 | |
| },{ | |
| field: 'CustomerID', | |
| width: 250 | |
| },{ | |
| field: 'ContactName', | |
| width: 300 | |
| },{ | |
| field: 'CustomerID', | |
| width: 250 | |
| }, | |
| { | |
| field: 'ContactName', | |
| width: 300 | |
| },{ | |
| field: 'CustomerID', | |
| width: 250 | |
| } | |
| ] | |
| // remove the href="#" from anchors | |
| // http://www.telerik.com/forums/grid-command-and-href=#rlBCjx-3y0OmKjBB0AfSEw | |
| onDataBound(e) { | |
| let grid = e.sender; | |
| kendo.jQuery('a[href*=\'#\']', grid.tbody).removeAttr('href'); | |
| } | |
| loadgrid() { | |
| this.testgrid.recreate(); | |
| } | |
| details(e) { | |
| alert(`Command '${e.data.commandName}' was executed`); | |
| console.log(this); | |
| } | |
| } |
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/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.2.0/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