Re: How can I control focus on multiple editors?

  •  12-11-2008, 5:55 AM

    Re: How can I control focus on multiple editors?

    function initializeEditor(editor)
    {                
            var iFrameObject = document.getElementById(editor.id + "_Frame");        
            iFrameObject.onfocus = mtextFocus;     
    }    
        
    function mtextFocus()
    {
            var activeEditor = document.getElementById(this.id.replace('_Frame', ''));        
    }
View Complete Thread