i have problem to set tabindex to FCK editor . i am using following php code for fck editor
require_once("".$abspath."fckeditor/fckeditor.php");
$oFCKeditor = new FCKeditor("shippinginfo") ;
$oFCKeditor->BasePath = "../fckeditor/" ;
$oFCKeditor -> Height = '300';
$oFCKeditor -> Width = '900';
$oFCKeditor->Value = stripslashes(str_replace("\\","",$product_shippinginfo));
$oFCKeditor->Create() ;
and i also like to class to fck editor
any one have the idea
by textarea replacing method we can set
tabindex
. so it works thanks !