Created
March 28, 2019 06:38
-
-
Save keerthanaRajendran/7765a5b94bfc96a499cdfe7847ddfaaf to your computer and use it in GitHub Desktop.
Dropdownlist : checkbox
This file contains hidden or 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> | |
<input type="text" id="selectStateProvince" ej-drop-down-list="e-data-source.bind:dataSource;e-enabled.bind:!isReadOnly;e-fields.bind:fields;e-watermark-text.bind:watermarkText;" /> | |
</div> | |
<br/> | |
<div> | |
<input type="text" id="selectStateProvinces" ej-drop-down-list="e-data-source.bind:dataSource;e-enabled.bind:true;e-fields.bind:fields;e-watermark-text.bind:watermarkText;" /> | |
</div> | |
<div id="property-window" class="box wide"> | |
<h4>Properties</h4> | |
<div class="row"> | |
<div class="col-md-12"> | |
<input type="checkbox" id="btnchk" class="e-togglebtn" ej-toggle-button="e-default-text:Enable ;e-active-text:Disable" e-on-change.trigger="enable($event)" /> | |
</div> | |
</div> | |
</div> | |
</template> |
This file contains hidden or 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
export class EjDDLCheckBox { | |
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.checkBox = true; | |
this.isReadOnly=true; | |
this.watermarkText = 'Select your skill'; | |
} | |
enable(event) { | |
this.target = $('#skillsets').data('ejDropDownList'); | |
let args = event.detail; | |
if (args.isChecked) { | |
this.isReadOnly=false; | |
} else { | |
this.isReadOnly=true; | |
} | |
} | |
} |
This file contains hidden or 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
<!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> |
This file contains hidden or 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
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