AngularJS Dropdown Multiselect -- Search Custom template per option.
I have found the solution of my query will be using the above url of the documentation of AngularJS Dropdown Multiselect but if I am using the below code, it doesn't reflect on the view of my application:
$scope.example19settings = {
template: '<b>{{option.name}}</b>'
};
I want to acheive it by adding a count:
$scope.example19settings = {
template: '<b>{{option.name}}({{option.count}})</b>'
};
Any suggestions or missing links?
$scope.extraSettings = {
settings: {
selectedToTop: true,
styleActive: true,
/*template: '<b>{{option.label}}</b>'*/
scrollable: true,
scrollableHeight: 200,
showEnableSearchButton: true
}
};