Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Cut, Copy and Paste function for textbox using AngularJs

I want to disable copy paste in a textarea using angularJs. I tried to do so with ng-paste, like so:

Controller:

  angular.module('inputExample', [])
  .controller('ExampleController', ['$scope', function($scope) {

  $scope.val = '1';
  $scope.past = function() {

    console.log("d");
    $scope.val ="  ";

  }
}]);

HTML:

<input ng-paste="past()" ng-model="val" ng-pattern="/^\d+$/" name="anim" class="my-input" />

Input box has old data ( the initial paste data).

Blocking paste works the second time around, that is if I paste the data into input box, the data will be present, but on a second paste the data won't paste, but the old data value is not removed.

like image 699
Kaja Avatar asked Jan 05 '15 15:01

Kaja


2 Answers

Try making a directive that listens fot the cut, copy, and paste events and then prevent the default event action.

app.directive('stopccp', function(){
    return {
        scope: {},
        link:function(scope,element){
            element.on('cut copy paste', function (event) {
              event.preventDefault();
            });
        }
    };
});

Use by adding the attribute to the input box.

<input stopccp ng-model="val" />

Plunker

You could also use the ng-copy, ng-cut and ng-paste directives and directly cancel the event.

<input ng-cut="$event.preventDefault()" ng-copy="$event.preventDefault()" ng-paste="$event.preventDefault()" ng-model="val" />

Plunker

like image 184
quw Avatar answered Sep 23 '22 06:09

quw


The simplest way:

<input ng-paste="$event.preventDefault();" placeholder='You cannot past here'>

Working here

like image 45
ismaestro Avatar answered Sep 26 '22 06:09

ismaestro