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> | |
<ak-chart k-title.bind="{text: 'Spain electricity production (GWh)'}" | |
k-data-source.bind="datasource" | |
k-legend.bind="{position: 'top'}" | |
k-series.bind="series" | |
k-series-defaults.bind="{type: 'area'}" | |
k-value-axis.bind="valueAxis" | |
k-category-axis.bind="categoryAxis" | |
k-tooltip.bind="tooltip"> | |
</ak-chart> |
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> | |
<button click.delegate="print($this)">Print without enhance</button> | |
<div ref="placeholder"></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
#listview-context-menu { | |
padding: 0; | |
margin-bottom: -1px; | |
min-height: 300px; | |
} | |
.product { | |
position: relative; | |
height: 62px; | |
margin: 0; | |
padding: 0; |
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> | |
<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 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 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 class="navbar txt-grey" role="navigation"> | |
<div class="navbar-header"> | |
<ul class="nav navbar-nav"> | |
<li class="dropdown"> | |
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><b>Dropdown</b><b class="caret"></b></a> | |
<ul class="dropdown-menu"> | |
<div> | |
<form method="POST" class="form"> | |
<div class="field clear"> |
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> | |
<ak-scheduler style="margin-bottom:20px" | |
k-date.bind="date" | |
k-start-time.bind="startTime" | |
k-height.bind="600" | |
k-views.bind="[ | |
'day', | |
{ type: 'week', selected: true }, | |
'month', | |
'agenda', |
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> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<h4>dropdownlist</h4> | |
<ak-drop-down-list k-data-text-field="text" | |
k-data-value-field="value" | |
k-data-source.bind="data" | |
k-filter="startswith" | |
k-widget.bind="dropdownlist" |
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> | |
<ak-chart k-title.bind="{text: 'Hybrid car mileage report'}" | |
k-legend.bind="{position: 'top'}" | |
k-series.bind="series" | |
k-value-axis.bind="valueAxis" | |
k-category-axis.bind="categoryAxis" | |
view-model.ref="chart"> | |
</ak-chart> | |
</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
<template> | |
<ak-grid k-data-source.bind="datasource" k-pageable.bind="true" k-filterable.bind="true" k-editable="inline" k-sortable.bind="true"> | |
<ak-col k-title="OrderId" k-field="OrderID"></ak-col> | |
<ak-col k-field="Freight"></ak-col> | |
<ak-col k-title="Order Date" k-field="OrderDate" k-format="{0:MM/dd/yyyy}"></ak-col> | |
<ak-col k-command.bind="['edit', 'destroy']" k-title=" " width="250px"></ak-col> | |
</ak-grid> | |
</template> |
OlderNewer