Last active
January 29, 2018 23:45
-
-
Save vigikaran/9a089610333a031934db70f7a80c1968 to your computer and use it in GitHub Desktop.
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
$('#select-emp').selectize({ | |
persist: false, | |
valueField: 'name', | |
labelField: 'name', | |
searchField: ['name', 'role'], | |
options: [ | |
{id: 'E121210', name: 'Vasanthan',role :'Accountant' }, | |
{id: 'E238843', name: 'Vigikaran',role :'Developer'}, | |
{id: 'E945495',name:'Gokulavannan',role :'Designer'} | |
], | |
render: { | |
option: function(item, escape) { | |
return '<div class="emp-row">' + | |
'<div class="emp-name">' + escape(item.name) + '<span class="emp-id">'+escape(item.id)+'</span></div>'+'<div class="emp-dept">'+ escape(item.role)+'</div></div>'; | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment