Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: How can I control focus on multiple editors?
Re: How can I control focus on multiple editors?
12-11-2008, 5:55 AM
aydinmesut
Joined on 11-19-2008
Posts 2
Re: How can I control focus on multiple editors?
Reply
Quote
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