Unable to use combo-box custom item template in Angular 4.1

I’ve tried many combinations to get this to work. Is there a trick or restriction I don’t know?

Here’s a simple case:


<vaadin-combo-box [items]
="[‘this’, ‘that’]
">
Does this work?

“this” and “that” appear just as if

wasn’t coded. Further, Angular issues a run-time warning to use rather than and that doesn’t work either.

Any help woukd be great!

As far as I know, Angular has it’s own behavior for HTML5 tags and doesn’t follow the HTM specs. At least origami library has solved this issue with their own directive.
Take a look here
.

Great tip, many thanks! This should do the trick.