I’ve got a jqxTree nested within a jqxTabs control. The tabs are created statically but the contents of the tree are created dynamically with each one being a hyperlink with an onclick even that calls an ajax request with a parameter specifying which page to load. This works great under FF 15.0.1 but under IE8 the tabs disappear when I click on the first link.
The Tree hierarchy is being created in an .aspx code behind that gathers the required information and builds a <ul> hierarchy as needed. Then onload I use the $(document).ready(function()… to turn that into a jqxTree. Each node (<li>) is built as follows
<li><a href=”#” onclick=”makeGetRequest(‘SoftwareDevelopment.aspx’)”>Software Development</a></li>
Any thoughts/ideas are greatly appreciated!