You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of the way that HTML is parsed by the browser, tag directives do not work in tables because the tag is not valid inside a table. An alternative to tag directives is needed, such as declaring a directive as an attribute.
// This doesn't work<table><tbody><foritems="rows"as="row"><tr><td>{{row.name}}</td></tr></for></tbody></table>
// This would work<table><tbody><trdirective="for"items="rows"as="row"><td>{{row.name}}</td></tr></tbody></table>
The text was updated successfully, but these errors were encountered:
Because of the way that HTML is parsed by the browser, tag directives do not work in tables because the tag is not valid inside a table. An alternative to tag directives is needed, such as declaring a directive as an attribute.
The text was updated successfully, but these errors were encountered: