Hello Friends,
I know that we can set Focus to fckeditor using
FCKConfig.StartupFocus = true;
But i have multiple editors in my project. If it's first then it would be no problem.
But if i have fckedior after 2-3 fields (Example:- First Name (Text), Last Name (Text), About Me (FCK Editor).
So in this case my focus would be First Name not FCK Editor.
If i do FCKConfig.StartupFocus = true; , after page loads it focuses to About Me (FCK Editor)
instead of First Name (Text).
So i'm looking for a script through which we can set Focus page wise. Like this script for
that u can set TabIndexing.
<script type="text/javascript">
var instance = "field_name";
var iFrame = document.getElementById(instance + "___Frame");
iFrame.tabIndex = 9; // Set ur tabIndex here
</script>
I know that we can set Focus to fckeditor using
FCKConfig.StartupFocus = true;
But i have multiple editors in my project. If it's first then it would be no problem.
But if i have fckedior after 2-3 fields (Example:- First Name (Text), Last Name (Text), About Me (FCK Editor).
So in this case my focus would be First Name not FCK Editor.
If i do FCKConfig.StartupFocus = true; , after page loads it focuses to About Me (FCK Editor)
instead of First Name (Text).
So i'm looking for a script through which we can set Focus page wise. Like this script for
that u can set TabIndexing.
<script type="text/javascript">
var instance = "field_name";
var iFrame = document.getElementById(instance + "___Frame");
iFrame.tabIndex = 9; // Set ur tabIndex here
</script>