icanjs / multi-select

A multi-select component for CanJS
MIT License
5 stars 3 forks source link

Need to display the tooltip for multiselect #15

Open santoshgiridhar opened 7 years ago

santoshgiridhar commented 7 years ago

Displaying all the values/text of the all the "li" as tooltip. Similar to one which gets displayed for html element select with multiple option.

//template.stache <multi-select list="{things2}" value-prop="id" text-prop="name" selected-items="{selectedThings2}" {^selected}="buttonTitle" select-all> //viewmodel.js buttonTitle: { value: [], set(buttonTitle){ return _.map(buttonTitle, 'text'); } },