I have one view that has this:
<input class="form-control" type="text" name="accountNumber" ng-model="controller.order.accountNumber" typeahead-on-select="controller.onSelect($item)" typeahead="item.title + '<br />' + item.value + '<br />' + item.detail for item in controller.autoComplete($viewValue)" />
I have tried to add some formatting into the result set that is returned. This actually works fine on this view (dispite visual studio moaning about quotation marks).
On another view, I have this set up:
<input class="form-control" type="text" name="sku" ng-model="controller.orderLine.sku" typeahead-on-select="controller.onSelect($item)" typeahead="item.value + '<br />' + item.title + '<br />' + item.detail for item in controller.autoComplete($viewValue)" />
On this view, the break is shown as text.
I don't suppose anyone knows why?