Skip to main content

Posts

Showing posts with the label angularjs confirmation dialog box

angularjs confirmation dialog box

Hi, I am going to share the code-sample for confirmation dialog box on an ng-click using a custom AngularJs directive. The example code as given below. Table of Contents 1. HTML 5 code-sample 2. AngularJs controller $ scope function i.e. $scope.removeRowIndex 3. AngularJs custom directive code-sample.   HTML 5 code-sample ? 1 < button confirmed-click = "removeRowIndex(col, row)" ng-confirm-box-click = "Are you sure want to delete?" class = "btn btn-xs btn-default" ></ button > <button confirmed-click="removeRowIndex(col, row)" ng-confirm-box-click="Are you sure want to delete?" class="btn btn-xs btn-default"></button> AngularJs controller $scope function i.e. $scope.removeRowIndex ? 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 var app = angular.module( 'mobileApp' , [ 'ngGrid' ]); app.controll...