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> | |
<!-- <link rel="stylesheet" media="screen" href="styles/materializeAlt.css" /> --> | |
<section class="au-animate"> | |
<main> | |
<div class="container"> | |
<div class="row"> | |
<div class="col s12"> |
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> | |
<require from="valueConverters"></require> | |
<div class="row"> | |
<v-grid | |
class="col-md-6" | |
style="height:350px" | |
v-row-height="25" | |
v-current-entity.bind=myCurrentEntity | |
v-collection.bind="myCollection| selected:'isSelected':showOnlySelected" | |
v-grid-context.bind=myGrid> |
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> | |
<require from="valueConverters"></require> | |
<require from="v-grid-control-form.html"></require> | |
<div class="row"> | |
<v-grid | |
class="col-md-6" | |
style="height:350px" | |
v-row-height="25" | |
v-header-height="50" |
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> | |
<require from="valueConverters"></require> | |
<div class="row"> | |
<div class="col s6"> | |
<button type="submit" click.delegate="exportContacts()" class="btn btn-sm btn-block btn-success"> Export to Excel</button> | |
</div> | |
</div> | |
<div class="row"> | |
<v-grid |
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> | |
<require from="valueConverters"></require> | |
<require from="v-grid-popup.html"></require> | |
<div class="row"> | |
<div class="col s4"> | |
<button type="submit" click.delegate="popup()" class="btn btn-sm btn-block btn-success"> popup</button> | |
</div> | |
<div class="col s4"> | |
<button type="submit" click.delegate="popuptest()" class="btn btn-sm btn-block btn-success"> popuptest external</button> | |
</div> |
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> | |
<require from="valueConverters"></require> | |
<div class="row"> | |
<div class="col s6"> | |
<button type="submit" click.delegate="exportContacts()" class="btn btn-sm btn-block btn-success"> Export to Excel</button> | |
</div> | |
</div> | |
<div class="row"> | |
<v-grid |
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="row"> | |
<v-grid | |
class="col-md-6" | |
style="height:350px" | |
v-row-height="25" |
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
'use strict'; | |
import type {Action} from './types' | |
export const PUSH_NEW_ROUTE = "PUSH_NEW_ROUTE"; | |
export const REPLACE_ROUTE = "REPLACE_ROUTE"; | |
export const REPLACE_OR_PUSH_ROUTE = "REPLACE_OR_PUSH_ROUTE"; | |
export const POP_ROUTE = "POP_ROUTE"; | |
export const POP_TO_ROUTE = "POP_TO_ROUTE"; | |
export function replaceRoute(route:string, passProps:any):Action { | |
return { |
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> | |
<!--k-excel.bind="{ fileName: 'Kendo UI Grid Export.xlsx' , allPages: true }"--> | |
<!-- k-toolbar.bind="['excel','pdf']", margin: { top: "2cm", left: "1cm", right: "1cm", bottom: "1cm" }, landscape: true,repeatHeaders: true,template: $("#page-template").html(), scale: 0.8,allPages: true }''--> | |
<!--k-on-excel-export.delegate="excelExport($event.detail)"--> | |
<ak-grid id="grid" k-data-source.bind="datasource" k-pageable.bind="{ refresh: true, pageSizes: true, buttonCount: 10 }" | |
k-sortable.bind="true" k-reorderable.bind="true" k-groupable.bind="true" k-resizable.bind="true" k-filterable.bind="true" | |
k-column-menu.bind="true" k-toolbar.bind="['excel']" | |
> | |
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> | |
<style> | |
html { | |
font-size: 14px; | |
font-family: Arial, Helvetica, sans-serif; | |
} | |
, | |
.k-grid .ra, | |
.k-numerictextbox .k-input { |
OlderNewer