AngularJS
- Angular in combination with JSF
When using Angular in combination with JSF the id's of forms leads to errors in Angular. Angular can't handle the default ':' in the id. This is fixed by adding the following to web.xml
<context-param>
<description>
Angular does not like the ':' in the id. So change it to '_'.
… - Links