I am using Knockoutjs options binding to populate the elements I select
<select data-bind="value: val, options: options, optionsText: 'text', optionsValue: 'ID'"> </select>
But for some options, the text is the same. Then I would like to add a title attribute to add information. Can I do this with a knockout without changing the knockout itself?
A function in optionsText can be used, but I don't see how
source share