Hi Guys,
I'm using filter plugin in dojox.grid.EnhancedGrid but when i click the filter button i don't see a proper UI rather all the text and input area are overlapped.
Can any body help me why i'm getting this problem.
The css files I've included:
@import "dojo/resources/dojo.css";
@import "dojox/grid/enhanced/resources/claro/EnhancedGrid.css";
@import "dojox/grid/enhanced/resources/EnhancedGrid_rtl.css";
@import "dijit/themes/claro/claro.css";
Hello, I'm using a dojo html template and trying to render elements in a javascript array but it doesn't work inside of a <table> element. Putting the loop with a regular <div> prints everything just fine but inside a <table> fails.
This works:
<div>
{% for item in list %}
<p>item.attributes.OBJECTID</p>
{% endfor %}
</div>
This doesnt:
<table>
{% for item in list %}
<tr>
<td>item.attributes.OBJECTID</td>
</tr>
{% endfor %}
</table>
Any ideas why?