JSFiddle - React, Tailwind, and code Playground

by KARTHIKEYAN K

HTML

http://plnkr.co/edit/I0BJ09BxR7nG9kZDeEIv?p=preview

https://stackoverflow.com/questions/22104893/angular-ui-router-how-to-create-a-layout-state

https://stackoverflow.com/questions/22537311/angular-ui-router-login-authentication?rq=1

https://github.com/angular-ui/ui-router/wiki/Multiple-Named-Views

https://stackoverflow.com/questions/32423272/what-is-the-purpose-of-use-abstract-state

http://plnkr.co/edit/7FD5Wf?p=preview

http://plnkr.co/edit/9lPQ3GlmH0AEqhzX7lj9?p=preview

http://plnkr.co/edit/Rn7rrkzKFuHdo62nsZtP?p=preview

http://plnkr.co/edit/phQeiI50S4hEdfJoCEEq?p=preview

https://www.youtube.com/watch?v=uyD8k8Kvpp0

https://stackoverflow.com/questions/32423272/what-is-the-purpose-of-use-abstract-state

http://plnkr.co/edit/7FD5Wf?p=preview
http://plnkr.co/edit/phQeiI50S4hEdfJoCEEq?p=preview
http://plnkr.co/edit/ecvW2mhs0akDxOVIb0ht?p=preview

JavaScript

http://plnkr.co/edit/OJ5iCSioIUpz6OGYHQG8?p=preview

angular.module('IMSapp', ['ui.router'])
    .config(['$stateProvider', '$urlRouterProvider', '$locationProvider', function ($stateProvider, $urlRouterProvider, $locationProvider) {
        $urlRouterProvider.otherwise('/bu-10001');
        $locationProvider.html5Mode({
            enabled: true,
            requireBase: false
        });
        $stateProvider
            .state('home', {
                url: '/bu-10001',
                views: {
                    '': {
                        templateUrl: '/app/views/view1.html',
                         controller: 'myCtrl'
                    },
                    'content@home': {
                        templateUrl: '/app/views/templates/view2.html'
                    }
                }
            })
    }])
    .run(['$rootScope', '$state',
        function ($rootScope, $state) {
            $rootScope.$state = $state;
            console.log('view');
        }
    ]);
    
    http://tutlane.com/tutorial/angularjs/angularjs-ui-grid-sorting-filtering-paging-grouping

https://stackoverflow.com/questions/26087123/how-can-i-count-the-number-of-errors-on-form

https://stackoverflow.com/questions/28196104/use-glyphicon-to-mark-required-field-with-css

http://plnkr.co/edit/duv8MKfK18DpW6KlfqKl?p=preview