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/common/template"></require> | |
<require from="aurelia-kendoui-bridge/grid/grid-command"></require> | |
<h1>Multiselect</h1> | |
<button ak-button click.delegate="showSelection()">Show selection</button> | |
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> | |
<ak-grid k-data-source.bind="datasource" k-pageable.bind="true" k-toolbar.bind="['create']" k-editable="inline" k-messages.bind="messages"> | |
<ak-col k-field="ProductName"></ak-col> | |
<ak-col k-field="UnitPrice" k-title="Unit Price" k-format="{0:c}" k-width="120px"></ak-col> | |
<ak-col k-field="UnitsInStock" k-title="Units In Stock" k-width="120px"></ak-col> | |
<ak-col k-field="Discontinued" k-width="120px"></ak-col> | |
<ak-col k-command.bind="['edit', 'destroy']" k-title=" " width="250px"></ak-col> |
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
<!-- put your view here --> | |
<template> | |
<labeL> | |
<input type="checkbox" checked.bind="preventDefault"/> | |
Prevent filter | |
</labeL> | |
<br> | |
<ak-drop-down-list k-data-text-field="omschrijving" |
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
<!-- put your view here --> | |
<template> | |
<labeL> | |
<input type="checkbox" checked.bind="preventDefault"/> | |
Prevent filter | |
</labeL> | |
<br> | |
<ak-drop-down-list k-data-text-field="omschrijving" |
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/dialog/dialog"></require> | |
<div id="example"> | |
<div id="dialog" | |
ak-dialog="k-widget.bind: dialog; | |
k-width: 400px; | |
k-title: Software Update; | |
k-closable.bind: true; | |
k-modal.bind: false; | |
k-actions.bind: actions"> |
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/dialog/dialog"></require> | |
<div id="example"> | |
<div id="dialog" | |
ak-dialog="k-widget.bind: dialog; | |
k-width: 400px; | |
k-title: Software Update; | |
k-closable.bind: true; | |
k-modal.bind: false; | |
k-actions.bind: actions"> |
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/dialog/dialog"></require> | |
<div id="example"> | |
<div id="dialog" | |
ak-dialog="k-widget.bind: dialog; | |
k-width: 400px; | |
k-title: Software Update; | |
k-closable.bind: false; | |
k-modal.bind: false; | |
k-actions.bind: actions" |
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> | |
<div id="example"> | |
<div id="dialog" | |
ak-dialog="k-widget.bind: dialog; | |
k-width: 400px; | |
k-title: Software Update; | |
k-closable.bind: true; | |
k-modal.bind: false; | |
k-actions.bind: actions" | |
k-on-close.delegate="onClose()" |
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> | |
<div id="example"> | |
<button click.delegate="alertBtn()" class="k-button">kendo.alert</button> | |
<button click.delegate="confirmBtn()" class="k-button">kendo.confirm</button> | |
<button click.delegate="promptBtn()" class="k-button">kendo.prompt</button> | |
</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
<template> | |
<div id="example"> | |
<button click.delegate="alertBtn()" class="k-button">kendo.alert</button> | |
<button click.delegate="confirmBtn()" class="k-button">kendo.confirm</button> | |
<button click.delegate="promptBtn()" class="k-button">kendo.prompt</button> | |
</div> | |
</template> |