javascript - how to isolate scope using directive call a method from directive to controller and method using arguments -
here sample angularjs code .currently can't item name clicked . passed argument name attribute inside method directive template. method used in parent controller.
<!doctype html > <html> <head> <style> .onoffswitch { position: relative; width: 90px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch-checkbox { display: none; } .onoffswitch-label { display: block; overflow: hidden; cursor: pointer; border: 2px solid #999999; border-radius: 20px; } .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s; -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s; } .onoffswitch-inner:before, .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 20px; padding: 0; line-height: 20px; font-size: 8px; color: white; font-family: trebuchet, arial, sans-serif; font-weight: bold; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .onoffswitch-inner:before { content: "on"; padding-left: 10px; background-color: #34a7c1; color: #ffffff; } .onoffswitch-inner:after { content: "off"; padding-right: 10px; background-color: #d1d0ce ; color: #ab9ed9; text-align: right; } .onoffswitch-switch { display: block; width: 18px; margin: 6px; background: #ffffff; border: 2px solid #999999; border-radius: 20px; position: absolute; top: 0; bottom: 0; right: 56px; -moz-transition: 0.3s ease-in 0s; -webkit-transition: 0.3s ease-in 0s; -o-transition: 0.3s ease-in 0s; transition: 0.3s ease-in 0s; } .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0px; } </style> <script data-require="angular.js@1.0.x" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js" data-semver="1.0.7"></script> <script type='text/javascript'> var app = angular.module('mainapp', []); app.controller('check', function($scope) { $scope.seldata=[]; $scope.sel="tt"; $scope.fruits = [{'name':'apple','status':false}, {'name':'orange','status':false}, {'name':'pear','status':false}, {'name': 'naartjie','status':false}]; $scope.check=function(val){ alert(val); } }); app.directive('slidecheckbox', function() { var directive = {}; directive.restrict = 'a'; directive.template = '<table><tr ng-repeat="fruitname in slide"><td>{{fruitname.name}}</td><td><label><div class="onoffswitch">'+ '<input type="checkbox" name="{{fruitname.name}}" class="onoffswitch-checkbox" value="{{fruitname.name}}" ng-checked="fruitname.status"'+ 'x-ng-click="test()">'+ '<label class="onoffswitch-label"><span class="onoffswitch-inner"></span><span class="onoffswitch-switch"></span></label></div> '+ '</label></td></tr> </table>'; directive.scope = { slide: "=obj", test:"&" }; return directive; }); </script> </head> <body ng-app="mainapp"> <div ng-controller="check"> <div style="width:175px; height:150px;overflow: auto;border-style: solid; border-width: 2px;" slidecheckbox obj="fruits" test="check()"></div> </div> </body> </html>
please me out ..
you have ng-click on input input being hidden
.onoffswitch-checkbox { display: none; }
if want click work put on following tag
<label class="onoffswitch-label" ng-click="test()">
Comments
Post a Comment