We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using a widget with a template, elements that are rendered inside of a
{{batteryList}} <table> <tbody> <tr>{{batteryList}}</tr> </tbody> </table>
Will output the following to the dom:
[object Object] [object Object] <table style=""> <tbody style=""> <tr style=""></tr> </tbody> </table>
Additionally, loops {% for element in list %} are unable to execute when inside of a
{% for element in list %}
PS. Wasn't sure where to submit this bug so I submitted it to this repo.
EDIT: I think this is a dojox/dtl/tag/logic issue
The text was updated successfully, but these errors were encountered:
Moved to dojox repo.
Sorry, something went wrong.
No branches or pull requests
When using a widget with a template, elements that are rendered inside of a
element are not parsed properly.Will output the following to the dom:
Additionally, loops
{% for element in list %}
are unable to execute when inside of aPS. Wasn't sure where to submit this bug so I submitted it to this repo.
EDIT: I think this is a dojox/dtl/tag/logic issue
The text was updated successfully, but these errors were encountered: