Skip to content

Instantly share code, notes, and snippets.

@gregoryagu
Last active November 15, 2018 11:22
Show Gist options
  • Save gregoryagu/ad14a3d6d4ea2b8f92659b37c38fcd78 to your computer and use it in GitHub Desktop.
Save gregoryagu/ad14a3d6d4ea2b8f92659b37c38fcd78 to your computer and use it in GitHub Desktop.
Template Column in Grid
<template>
<require from="./Default-Sample.css"></require>
<div>
<ej-grid id="grid"
e-edit-settings.bind="edit"
e-data-source.bind="ProjectData"
e-toolbar-settings.bind="toolbar"
>
<ej-column e-field="taskID" e-header-text="Task Id" e-is-primary-key="true">
<ej-template>
<a href="#/${taskID}">${taskID}</a>
</ej-template>
</ej-column>
<ej-column e-field="taskName" e-header-text="Name" e-text-align="center"></ej-column>
<ej-column e-header-text="Tags" e-allow-text-wrap="true" e-width="150">
<ej-template>
<span class="badge badge-pill badge-info mr-1" repeat.for="tag of tags">${tag}</span>
</ej-template>
</ej-column>
</ej-grid>
</div>
</template>
export class DefaultSample {
constructor() {
this.edit = { allowEditing: true, allowAdding: true };
toolbar = { showToolbar: true, toolbarItems: ['edit', 'update', 'cancel', 'add'] };
this.columns = [
{ field: 'taskID', headerText: 'Task Id', width: '45' },
{ field: 'taskName', headerText: 'Task Name' },
{ field: 'startDate', headerText: 'Start Date' },
{ field: 'endDate', headerText: 'End Date' },
{ field: 'duration', headerText: 'Duration' },
{ field: 'progress', headerText: 'Progress' }
];
this.ProjectData = [
{
taskID: 1,
taskName: 'Planning',
startDate: '02/03/2014',
endDate: '02/07/2014',
tags: ['A','B']
},
{
taskID: 2,
taskName: 'Design',
startDate: '02/10/2014',
endDate: '02/14/2014',
tags: ['A','B']
},
{
taskID: 3,
taskName: 'Design',
startDate: '02/10/2014',
endDate: '02/14/2014',
},
{
taskID: 4,
taskName: 'Design',
startDate: '02/10/2014',
endDate: '02/14/2014',
}
]
}
}
ej-tree-grid {
display: block;
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Essential Studio for JavaScript">
<meta name="author" content="Syncfusion">
<title>Untitled</title>
<!-- Essential Studio for JavaScript theme reference -->
<link rel="stylesheet" href="https://cdn.syncfusion.com/14.2.0.28/js/web/flat-azure/ej.web.all.min.css" />
</head>
<body aurelia-app="main">
<h1>Loading...</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.6/system.js"></script>
<script src="https://rawgit.com/aurelia-ui-toolkits/aurelia-syncfusion-bundles/0.0.1/config2.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-syncfusion-bridge', syncfusion => syncfusion.useAll());
aurelia.start().then(a => a.setRoot());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment