Skip to content

Instantly share code, notes, and snippets.

@gregoryagu
gregoryagu / app.html
Last active April 4, 2019 23:53 — forked from keerthanaRajendran/app.html
Dropdownlist : filtering DataSource on change event
<template>
<div class="container">
<div class="form-row">
<div class="col-6">
<fieldset class="form-group">
<label class="form-label semibold">Select Group</label>
<input type="text" id="selectGroup" ej-drop-down-list="e-width:100%;e-data-source.bind:groups;e-fields.bind:{ text: 'name', value: 'Id' };e-watermark-text.bind:'Select...';" e-on-change.trigger='onchange($event)' />
</fieldset>
</div>
<div class="col-6">
@gregoryagu
gregoryagu / app.html
Created January 16, 2019 09:09 — forked from dharanidharandharmasivam/app.html
Aurelia Demo - Chart 16.4.0.42
<template>
<div class="content-container-fluid">
<ej-chart id="container" e-legend.bind="legend" e-size.bind="size" e-title.bind="title" e-common-series-options.bind="commonSeriesOptions">
<ej-series e-data-source.bind="ExpendituresList" e-x-name="xName" e-y-name="yName">
</ej-series>
</ej-chart>
</div>
<button click.delegate='update()'>Update</button>
</template>
@gregoryagu
gregoryagu / app.html
Created January 7, 2019 12:58 — forked from ArunPnurA/app.html
Aurelia Demo
<template>
<div class="content-container-fluid">
<div class="row">
<div class="cols-sample-area splitter-width">
<!----------------Autocomplete Control---------------->
<ej-splitter id="outterSpliter" e-height="250" e-width="50%" e-orientation.bind="orientation"
e-properties.bind="properties" e-enable-auto-resize="true" style="margin:0 auto;">
<ej-splitter id="innerSpliter" e-enable-auto-resize="true">
@gregoryagu
gregoryagu / app.html
Last active December 25, 2018 20:51 — forked from jdanyow/app.html
Aurelia Validation Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
@gregoryagu
gregoryagu / app.html
Created August 26, 2018 11:31 — forked from pjschreifels/app.html
Base Aurelia app for gist.run with Bootstrap@4.0.0-alpha.5 and Font Awesome.
<template>
<h1>${message}</h1>
</template>
@gregoryagu
gregoryagu / app.html
Created August 24, 2018 11:03 — forked from ScottWhittaker/app.html
Aurelia Router Demo
<template>
<require from="components/navigation.html"></require>
<h1>Aurelia Router Demo</h1>
<navigation router.bind="router" class="primary-navigation"></navigation>
<div class="page-host">
<router-view></router-view>
</div>
</template>
@gregoryagu
gregoryagu / app.html
Created July 29, 2018 15:26 — forked from martonsagi/app.html
Aurelia Pipeline Authorization Example
<template>
<require from="nav-bar"></require>
<nav-bar router.bind="router"></nav-bar>
<main>
<div class="page-host">
<router-view></router-view>
@gregoryagu
gregoryagu / app.html
Last active July 19, 2018 23:35 — forked from vinithadevi-murugan/app.html
Schedule : default-functionalities
<template>
<div>
<ej-tab id="defaultTab" e-width="100%" e-on-item-active.trigger="onitemActive($event)">
<ul>
<li><a href="#children">Sub-Tasks</a></li>
<li click.trigger='click()'><a href="#calendar">Calendar</a></li>
</ul>
<div id="children">
@gregoryagu
gregoryagu / app.css
Created July 18, 2018 00:13 — forked from kabaehr/app.css
Aurelia Gist .ref binding command examples
body {
font-family: "Open Sans", Helvetica, Arial, sans-serif;
margin-bottom: 30px;
}
.list {
display: block;
margin: 20px 0px;
overflow: hidden;
}
@gregoryagu
gregoryagu / app.html
Created December 23, 2016 16:13 — forked from bigopon/app.html
html 5 Drag drop aurelia
<template>
<require from='./self'></require>
<style>
.panel {
user-select: none;
}
.panel header {
padding: 5px;
height: 50px; background: green; color: #fff;
}