Skip to content

Instantly share code, notes, and snippets.

@keerthanaRajendran
Created January 3, 2019 06:50
Show Gist options
  • Save keerthanaRajendran/1c28ad50161b4e354387302789c4d434 to your computer and use it in GitHub Desktop.
Save keerthanaRajendran/1c28ad50161b4e354387302789c4d434 to your computer and use it in GitHub Desktop.
Dropdownlist : events
<template>
<div>
<input type="text" id="skillsets" ej-drop-down-list="e-data-source.bind:dataSource;e-fields.bind:fields;e-watermark-text.bind:watermarkText;" e-on-select.trigger="select($event)" />
</div>
</template>
export class EventsDropDownList {
skillSet = [
{ skill: 'ASP.NET' }, { skill: 'ActionScript' }, { skill: 'Basic' },
{ skill: 'C++' }, { skill: 'C#' }, { skill: 'dBase' }, { skill: 'Delphi' },
{ skill: 'ESPOL' }, { skill: 'F#' }, { skill: 'FoxPro' }, { skill: 'Java' },
{ skill: 'J#' }, { skill: 'Lisp' }, { skill: 'Logo' }, { skill: 'PHP' }
];
constructor() {
this.fields = {text: 'skill'};
this.dataSource = this.skillSet;
this.watermarkText = 'Select your skill';
this.width="200px";
}
select(event) {
var target;
$("#skillsets_container").append("<span class='e-icon e-close'></span>");
$('.e-icon.e-close').on('mousedown', function(args) {
target=$("#skillsets").data("ejDropDownList");
target.clearText();
$(".e-icon.e-close").remove()
args.preventDefault();
args.stopPropagation();
return false;
});
}
}
<!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" />
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.syncfusion.com/js/assets/external/jquery-1.11.3.min.js" type="text/javascript"> </script>
</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>
<style type="text/css" class="cssStyles">
</style>
</body>
</html>
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-syncfusion-bridge', syncfusion => syncfusion.useAll());
aurelia.start().then(a => a.setRoot());
}
.e-icon.e-close
{
font-size:15px;
margin-left: 55px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment