0

I developed an mgwt,gwt-phonegap app and I installed it in ios device. I want to disable the cut ,copy and paste options to my text fields.

Is there any chance to do it through css? if not please provide me solution to achieve it.

fedorqui
  • 275,237
  • 103
  • 548
  • 598

1 Answers1

0

This disable the copy / paste for everything except input :

   *{
        -webkit-touch-callout: none;
        -webkit-user-select:none;
    }
    input {
        -webkit-touch-callout: auto !important;
        -webkit-user-select: auto !important;
    }

You can use it to target your text fields only.

Clement Dungler
  • 737
  • 6
  • 10