-
Bug
-
Resolution: Fixed
-
Normal
-
5.0.8
-
None
http://zkfiddle.org/sample/2kh66f1/1-jQuery-ztag-issue
-----------
Does our ztag support the selector rule of jQuery ?
I mean currently the result of following code is 3,3,3 ;
but it should be 1,1,1 in my expectation.
-----------
<zk xmlns:n="native">
<n:div id="hi">
<window>
<textbox id="textbox1" />
</window>
</n:div>
<n:div id="hi2">
<window>
<textbox id="textbox1" />
</window>
</n:div>
<n:div id="hi3">
<window>
<textbox id="textbox1" />
</window>
</n:div>
<script>
zk.afterMount(function()
);
</script>
</zk>