This repository was archived by the owner on Oct 2, 2019. It is now read-only.
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
Keep Placeholder activated in multipleSelect component #1796
Closed
Description
Hello!
I stumbled upon a problem today that is caused by the following lines:
uiSelectMultipleDirective.js
ctrl.getPlaceholder = function(){
//Refactor single?
if($select.selected && $select.selected.length) return;
return $select.placeholder;
};
I would like to have my placeholder activated even after I selected the first option in a multiple select component. Is there a plan to refactor this? Maybe to use a property like: keepPlaceholder
Thanks!