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/treelist/treelist"></require> | |
<require from="aurelia-kendoui-bridge/treelist/tree-col"></require> | |
<ak-tree-list k-data-source.bind="dataSource" k-editable="incell" k-navigatable.bind="true" k-toolbar.bind="['create']" k-height.bind="540"> | |
<ak-tree-col k-field="FirstName" k-expandable.bind="true" k-title="First Name" k-width.bind="280"></ak-tree-col> | |
<ak-tree-col k-field="LastName" k-title="Last Name" k-width.bind="100"> | |
</ak-tree-col> | |
<ak-tree-col k-field="Position"></ak-tree-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
<template> | |
<require from="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<require from="category"></require> | |
<div id="example"> | |
<ak-grid k-pageable.bind="true" k-height.bind="500" k-toolbar.bind="['create']" k-editable.bind="true" k-data-source.bind="dataSource" k-on-ready.delegate="onReady($event.detail)"> | |
<ak-col k-field="ProductName" k-title="Product Name"></ak-col> | |
<ak-col k-field="Category" k-title="Category" k-width="230px" k-editor.bind="categoryDropDownEditor" k-template.bind="categoryTemplate"></ak-col> | |
<ak-col k-field="UnitPrice" k-title="Unit Price" k-format="{0:c}" k-width="130px"></ak-col> | |
<ak-col k-command="destroy" k-title=" " k-width="150px"></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
<template> | |
<div id="example"> | |
<div id="cap-view" class="demo-section k-content"> | |
<ak-combobox k-data-text-field="text" | |
k-data-value-field="value" | |
k-data-source.bind="data" | |
k-value.two-way="fabric" | |
k-filter="contains" | |
k-suggest.bind="true" |
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> | |
<button click.delegate='addDel($event)'>Go !</button> | |
<p>Control memory before and after go ${cnt} </p> | |
<label>Count</label> <input type="text" value.bind="maxCnt"></input><p> | |
<label>Tempo</label> <input type="text" value.bind="tempo"></input> | |
<hr> | |
<div id="modules-container"></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> | |
<compose view-model="app1"></compose> | |
</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> | |
<require from="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<require from="category"></require> | |
<form style="width:100%"> | |
<label >plainGrid</label> | |
<ak-grid id="grid2" k-data-source.bind="gridDs" k-navigatable.bind="true" k-reorderable.bind="true" | |
k-pageable.bind="true" k-sortable.bind="true" k-resizable.bind="true" k-editable.bind="{confirmation : false}" | |
k-toolbar.bind="[{name:'create', text : 'Ajouter ligne'}]"> | |
<ak-col k-title="Id" k-field="id"></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
<template> | |
<require from="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<require from="category"></require> | |
<require from="customAttribute"></require> | |
<div id="example"> | |
<ak-grid k-pageable.bind="true" k-height.bind="500" k-toolbar.bind="['create']" k-editable.bind="true" k-data-source.bind="dataSource"> | |
<ak-col k-field="ProductName" k-title="Product Name" book="field : col1; precision : 4"></ak-col> | |
<ak-col k-field="Category" k-title="Category" k-width="230px" k-editor.bind="categoryDropDownEditor" k-template.bind="categoryTemplate" book="field : col3; age : 5"></ak-col> | |
<ak-col k-field="UnitPrice" k-title="Unit Price" k-format="{0:c}" k-width="130px"></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
<template> | |
<require from="myelem"></require> | |
<require from="base-element"></require> | |
<div>Hello</div> | |
<!-- aValue is a bindable property of the base-element which is included in myElem --> | |
<myelem aValue="topLevel"></myelem> | |
<hr> | |
</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> | |
<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" |