Example zul:
<n:table xmlns:n="native"> <n:tr> <n:td n:colspan="2">Visible row</n:td> </n:tr> <n:tr if="false"> <n:td>Name</n:td> <n:td> <textbox value="Invisible"/> </n:td> </n:tr> </n:table>
I expected that only
<table>
<tr>
<td colspan="2">Visible row</td>
</tr>
</table>
is created, but ZK also created Textbox component.
Example: http://zkfiddle.org/sample/2kvg9e8/5-Incorrect-result-for-if-attribute-when-mixing-native