This is a migrated thread and some comments may be shown as answers.

[Solved] translatetool not implemented

1 Answer 91 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Chase Florell
Top achievements
Rank 1
Chase Florell asked on 01 Apr 2009, 04:37 PM
Not sure where this is coming from.  I am getting the following javascript alert

"The command TranslateTool is not implemented yet."

Any suggestions?

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 06 Apr 2009, 07:27 AM
Hi Chase,

You can get this error if the TranslateTool command is not canceled after its execution, e.g.:

function OnClientCommandExecuting(editor, args)
{
            if (args.get_name() == "TranslateTool")
            {
                  ....
                  args.set_cancel(true); //cancel the command
            }
}

You can see the following live example for more information: Google Translate.

Greetings,
Rumen
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
Editor
Asked by
Chase Florell
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or