Announcement

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

    how to disable EditPane.contextMenu?

    SmartClient Version: v10.0p_2014-12-13/EVAL Deployment (expires 2015.02.11_12.43.38) Licensed to: Isomorphic Software (#ISC_EVAL_NIGHTLY)

    Hello, I want to disable the 'clear' EditPane.contextMenu, how could it be done?

    #2
    The simplest thing is to just add a contextClick handler and cancel the event instead of showing the menu.

    Comment


      #3
      this:
      Code:
      isc.EditPane.create({
          showContextMenu:function() {
              return false;
          },
      ....
      works as expected, thanks for the suggestion

      Comment

      Working...
      X