jQWidgets Forums

jQuery UI Widgets Forums Plugins AngularJS Tab within Tabs not working

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 10 years, 8 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Tab within Tabs not working #61028

    shan_vs
    Participant

    I want to create a Tabs with in a Tabs. Here If I click the “Tab 2” Its not working.

    <!DOCTYPE html>
    <html ng-app="demoApp">
    <head>
    <link rel="stylesheet" type="text/css" href="../css/jqx.base.css" />
    <script src="../Tools/angular.min.js"></script>
    <script src="../Tools/jquery-1.11.1.min.js"></script>
    <script src="../Tools/jqxcore.js"></script>
    <script src="../Tools/jqxtabs.js"></script>
    <script src="../Tools/jqxangular.js"></script>
    <script>
    	var demoApp = angular.module("demoApp", [ "jqwidgets" ]);
    	demoApp.controller("demoController", function($scope) {
    
    	});
    </script>
    </head>
    <body ng-controller="demoController">
    	<jqx-tabs>
    	<ul>
    		<li>Tab 1</li>
    		<li>Tab 2</li>
    	</ul>
    	
    	<div>
    		<jqx-tabs>
    		<ul>
    			<li>Tab 1.1</li>
    			<li>Tab 1.2</li>
    		</ul>
    		<div>Test 1.1</div>
    		<div>TEst 1.2</div>
    		</jqx-tabs>
    	</div>
    	<div>
    		<jqx-tabs>
    		<ul>
    			<li>Tab 2.1</li>
    			<li>Tab 2.2</li>
    		</ul>
    		<div>Test 2.1</div>
    		<div>Test 2.2</div>
    		</jqx-tabs>
    	</div>
    	</jqx-tabs>
    </body>
    </html>
    Tab within Tabs not working #61039

    Peter Stoev
    Keymaster

    Hi shan_vs,

    This can’t be done at present.

    Regards,
    Peter

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.