Jump to content

The editor in WebFOCUS 8.2.x seems to be based on the Ace Ed...


Warren Hinchliffe

Recommended Posts

  • 5 weeks later...

Hi Waz,

I experienced the same problem with hitting Ctrl+S.

Below is a one-liner that does the saving for you when hitting these keys.

All I do is copy and execute the line below in the browsers console window of the editor.

I know, its not the best solution but it does the job and every time a new editor is opened

this line has to be copied and executed again.

Im on WebFOCUS 8207.28.05.

Again, not ideal, but for me its a time saver.

-Fred-

$(document).bind('keydown', function(e) { if(e.ctrlKey && e.which == 83){ e.preventDefault(); $('.ds-icon-save').trigger('click'); }});

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...