If a VLayout, for instance, contains two members that are HTMLPane's using contentsType fragment where the contentsURL points to pages that return smartclient content, then, when running google chrome, often the smartclient content of the first member appears in the second member.
The behaviour is intermittent but occurs for me around every 2nd or 3rd refresh of the page.
Tested using google chrome 13.0.782.41 beta-m.
This does not appear to occur in Firefox v4 or IE9.
Test case as follows;
Primary page;
test2.htm
test3.htm
When running test case, the first member will contain the text "This is Test2" but with no Test2 field - therefore proving the content loaded OK but just the smartclient content failed.
The Test2 field will then appear in the test3.htm member and the Test3 field will not be shown.
On some occasions the reverse occurs where the Test3 field appears in the test2.htm member.
Using SmartClient 8.0 SmartClient_SC_SNAPSHOT-2011-06-26_LGPL
The behaviour is intermittent but occurs for me around every 2nd or 3rd refresh of the page.
Tested using google chrome 13.0.782.41 beta-m.
This does not appear to occur in Firefox v4 or IE9.
Test case as follows;
Primary page;
Code:
isc.VLayout.create({ defaultHeight:"100%", defaultWidth:"100%", members:[ isc.HTMLPane.create({ showEdges: true, contentsURL:"test2.htm", contentsType:"fragment" }), isc.HTMLPane.create({ showEdges: true, contentsURL:"test3.htm", contentsType:"fragment" }) ] })
Code:
This is Test2 <script> isc.DynamicForm.create({ top: 20, fields:[{ title: "Test2", name: "test" }] }) </script>
Code:
This is Test3 <script> isc.DynamicForm.create({ top: 20, fields:[{ title: "Test3", name: "test" }] }) </script>
The Test2 field will then appear in the test3.htm member and the Test3 field will not be shown.
On some occasions the reverse occurs where the Test3 field appears in the test2.htm member.
Using SmartClient 8.0 SmartClient_SC_SNAPSHOT-2011-06-26_LGPL
Comment