diff --git a/custom-theme.md b/custom-theme.md
index c07261c..da20044 100644
--- a/custom-theme.md
+++ b/custom-theme.md
@@ -2,14 +2,14 @@
#### Step 1:
-1. copy 'ng-multiselect-dropdown.theme.scss' file located at `node_modules\ng-multiselet-dropdown\themes\ng-multiselect-dropdown.theme.scss`
+1. copy 'ng-multiselect-dropdown.theme.scss' file located at `node_modules\ng-multiselect-dropdown\themes\ng-multiselect-dropdown.theme.scss`
-** if you are using version below 0.2.11, you need to get it from https://github.com/NileshPatel17/ng-multiselect-dropdown/themes/ng-multiselet-dropdown.theme.css
+** if you are using version below 0.2.11, you need to get it from https://github.com/NileshPatel17/ng-multiselect-dropdown/themes/ng-multiselect-dropdown.theme.css
#### Step 2:
-1. paste this file in your project wherever you want. Include this file `ng-multiselet-dropdown.theme.css` in `angular-cli.json` (for versions below angular 6) and `angular.json` (for version 6 or more). file name can be anything.
+1. paste this file in your project wherever you want. Include this file `ng-multiselect-dropdown.theme.css` in `angular-cli.json` (for versions below angular 6) and `angular.json` (for version 6 or more). file name can be anything.
![](Screenshots/theme-step-2.png)
@@ -18,4 +18,4 @@
![](Screenshots/theme-step-3.png)
-### You can also checkout [sample code](https://codesandbox.io/s/custom-theme-p1556), i created in codesandbox.
\ No newline at end of file
+### You can also checkout [sample code](https://codesandbox.io/s/custom-theme-p1556), i created in codesandbox.
diff --git a/src/app/components/select/multiple-demo.ts b/src/app/components/select/multiple-demo.ts
index 2edd20f..95f8f12 100644
--- a/src/app/components/select/multiple-demo.ts
+++ b/src/app/components/select/multiple-demo.ts
@@ -52,7 +52,7 @@ export class MultipleDemoComponent implements OnInit {
ngOnInit() {
this.cities = [
- { item_id: 1, item_text: 'New Delhi' },
+ { item_id: 1, item_text: 'New Delhi', item_tooltip: 'The capital of India!' },
{ item_id: 2, item_text: 'Mumbai' },
{ item_id: 3, item_text: 'Bangalore' },
{ item_id: 4, item_text: 'Pune' },
@@ -64,6 +64,7 @@ export class MultipleDemoComponent implements OnInit {
singleSelection: false,
idField: 'item_id',
textField: 'item_text',
+ tooltipField: 'item_tooltip',
selectAllText: 'Select All',
unSelectAllText: 'UnSelect All',
itemsShowLimit: 99999,
@@ -112,7 +113,7 @@ export class MultipleDemoComponent implements OnInit {
ngOnInit() {
this.cities = [
- { item_id: 1, item_text: 'New Delhi' },
+ { item_id: 1, item_text: 'New Delhi', item_tooltip: 'The capital of India!' },
{ item_id: 2, item_text: 'Mumbai' },
{ item_id: 3, item_text: 'Bangalore', isDisabled: this.disableBangalore },
{ item_id: 4, item_text: 'Pune' },
@@ -128,6 +129,7 @@ export class MultipleDemoComponent implements OnInit {
defaultOpen: false,
idField: 'item_id',
textField: 'item_text',
+ tooltipField: 'item_tooltip',
selectAllText: 'Select All',
unSelectAllText: 'UnSelect All',
enableCheckAll: this.showAll,
diff --git a/src/ng-multiselect-dropdown/src/multi-select.component.html b/src/ng-multiselect-dropdown/src/multi-select.component.html
index aa20e18..8f2956e 100644
--- a/src/ng-multiselect-dropdown/src/multi-select.component.html
+++ b/src/ng-multiselect-dropdown/src/multi-select.component.html
@@ -3,11 +3,11 @@
{{_placeholder}}
- (this._settings.itemsShowLimit-1)">
+ (this._settings.itemsShowLimit-1)" [attr.title]="item.tooltip">
{{item.text}} x
-
+
0">+{{itemShowRemaining()}}
@@ -26,7 +26,7 @@