Bootstrap-transfer isn't handling values with ampersands correctly. In order to accommodate values with ampersands, I changes the following lines:
if (!force_hilite_off && settings.hilite_selection && !old[i].hasOwnProperty(e[0].value))
and
if (e[0].value == val)
to:
if (!force_hilite_off && settings.hilite_selection && !old[i].hasOwnProperty(e[0].value.replace('&', '&')))
and
if (e[0].value.replace('&', '&') == val.replace('&', '&'))
Bootstrap-transfer isn't handling values with ampersands correctly. In order to accommodate values with ampersands, I changes the following lines:
to:
I hope this helps.