How to set focus on the ace editor?

后端 未结 5 535
轻奢々
轻奢々 2021-02-03 18:54

I am using the ace editor component from ajax.org inside a jquery tab interface. Each tab will contain a separate ace editor. Whenever I switch to a new tab, the editor in it wo

5条回答
  •  天涯浪人
    2021-02-03 19:54

    Nice solution, but I wanted to go to the end of the last line not the beginning of the last line.

    //To focus the ace editor
    editor.focus();
    session = editor.getSession();
    //Get the number of lines
    count = session.getLength();
    //Go to end of the last line
    editor.gotoLine(count, session.getLine(count-1).length);
    

提交回复
热议问题