Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions comboTreePlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
collapse: false,
selectableLastNode: false,
withSelectAll: false,
isolatedSelectable: false
isolatedSelectable: false,
placeholder: "Type to filter"
};

// LIFE CYCLE
Expand Down Expand Up @@ -115,7 +116,7 @@
};

ComboTree.prototype.createFilterHTMLForMultiSelect = function (){
return '<input id="' + this.comboTreeId + 'MultiFilter" type="text" class="multiplesFilter" placeholder="Type to filter"/>';
return '<input id="' + this.comboTreeId + 'MultiFilter" type="text" class="multiplesFilter" placeholder="' + this.options.placeholder + '"/>';
}

ComboTree.prototype.createSelectAllHTMLForMultiSelect = function () {
Expand Down