Skip to content

Instantly share code, notes, and snippets.

View CesarAfonso's full-sized avatar

César Afonso CesarAfonso

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Facturas do eReport</title>
<style>
.clearfix:after {
content: "";
display: table;
@CesarAfonso
CesarAfonso / app.html
Last active August 10, 2017 17:56 — forked from gist-master/app.html
Grid: popup editing
<template>
<require from="aurelia-kendoui-bridge/grid/grid"></require>
<require from="aurelia-kendoui-bridge/grid/col"></require>
<ak-grid k-widget.bind="kendoGrid1" k-data-source.bind="datasource1" >
</ak-grid>
<br/>
<ak-grid k-widget.bind="kendoGrid2" k-data-source.bind="datasource2" k-pageable.bind="true" k-editable="popup" k-toolbar.bind="['create']">
@CesarAfonso
CesarAfonso / app.css
Created July 10, 2017 16:54 — forked from gist-master/app.css
Grid: basic usage
.customer-photo {
display: inline-block;
width: 32px;
height: 32px;
border-radius: 50%;
background-size: 32px 35px;
background-position: center center;
vertical-align: middle;
line-height: 32px;
box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2);
<template>
<span>This is an APP</span>
</p>
<compose view-model.bind="'parentForm'"></compose>
</template>