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="print($this)">Print without enhance</button> | |
<div ref="placeholder"></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
#listview-context-menu { | |
padding: 0; | |
margin-bottom: -1px; | |
min-height: 300px; | |
} | |
.product { | |
position: relative; | |
height: 62px; | |
margin: 0; | |
padding: 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
#listview-context-menu { | |
padding: 0; | |
margin-bottom: -1px; | |
min-height: 300px; | |
} | |
.product { | |
position: relative; | |
height: 62px; | |
margin: 0; | |
padding: 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
<template> | |
<section> | |
<h1>Not responding to label click</h1> | |
<div> | |
<div> | |
<h3>Expected, with a simple select and input reference</h3> | |
<div class="form-group"> | |
<label for="selectId" class="control-label">Simple select label (click me)</label> | |
<select |
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 ref="gridDiv"></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> | |
<require from="./basic-use.css"></require> | |
<ak-grid k-data-source.bind="datasource" k-pageable.bind="pageable" k-sortable.bind="true" k-widget.bind="grid"> | |
<ak-col k-title="Contact Name" k-field="ContactName"> | |
<ak-template> | |
<button ak-button class="k-primary" click.delegate="details($$item)">Details</button> | |
</ak-template> | |
</ak-col> | |
<ak-col k-title="Contact Name" k-field="ContactName"></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> | |
<ak-grid k-data-source.bind="datasource" k-height.bind="550" k-groupable.bind="true" k-sortable.bind="true" k-resizable.bind="true" k-reorderable.bind="true" k-column-menu.bind="true"> | |
<ak-col k-field="CompanyName" k-title="Company Name" k-width.bind="420"></ak-col> | |
<ak-col k-title="Contact Info" k-columns.bind="groupedColumns"></ak-col> | |
</ak-grid> | |
</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> | |
<ak-grid k-data-source.bind="datasource" k-groupable.bind="true" k-sortable.bind="true" k-resizable.bind="true" k-reorderable.bind="true" k-column-menu.bind="true"> | |
<ak-col k-field="CompanyName" k-title="Company Name" k-width.bind="420"></ak-col> | |
<div style="width: 100px"></div> | |
</ak-grid> | |
</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> | |
<ak-grid k-data-source.bind="datasource"> | |
<ak-col k-field="CompanyName" k-title="Company Name" k-width.bind="420"></ak-col> | |
<!--if you pass a <div> element to the <ak-grid> then the grid will be initialized on the div--> | |
<div style="width: 100px"></div> | |
</ak-grid> | |
</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 style="width: 100px"> | |
<ak-grid k-data-source.bind="datasource" k-groupable.bind="true" k-sortable.bind="true" k-resizable.bind="true" k-reorderable.bind="true" k-column-menu.bind="true"> | |
<ak-col k-field="CompanyName" k-title="Company Name" k-width.bind="420"></ak-col> | |
</ak-grid> | |
</div> | |
</template> |