Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    How can I diable right click event for TextItem

    In password item, when you right click it, the copy and paste function is disabled. How I can I do this for email or textitem? Or at least disable the right click event so that I can prevent users to copy and paste from email or textitem. Thanks.
    Last edited by yjiang50; 24 Nov 2010, 12:26.

    #2
    I have the same feature request - is this doable with SmartClient? If so, how?

    Comment


      #3
      You can disable the right click by this

      dynamicForm.addShowContextMenuHandler(new ShowContextMenuHandler() {
      @Override
      public void onShowContextMenu(ShowContextMenuEvent event) {
      event.cancel();

      }
      });

      Comment


        #4
        Sorry - Im using SmartClient - I'll repost there

        Comment

        Working...
        X