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

[Solved] Image Editor Bugs

3 Answers 175 Views
Editor
This is a migrated thread and some comments may be shown as answers.
James Stuart
Top achievements
Rank 1
James Stuart asked on 21 Sep 2007, 01:49 PM
These also happen on the Telerik demo site.

On right clicking an image:
"Set Image Properties" produces either a "not implemented yet" alert, or an "invalid pointer"  error

"Image Map Editor" also produces the "not implemented yet" message.

Is the forums the correct place for me to post bugs?

3 Answers, 1 is accepted

Sort by
0
Valeri Hristov
Telerik team
answered on 21 Sep 2007, 01:56 PM
Hello James,

Indeed, the Image Properties and Image Map dialogs are still not implemented, but will be in Service Pack 1, which is scheduled for October 10th and yes, the forums are a great place to post bugs or suggestions for our products! We will be glad to get your feedback, even if it is negative, about RadEditor Prometheus.

Best wishes,
Valeri Hristov (Senior Developer, MCSD)
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
James Stuart
Top achievements
Rank 1
answered on 21 Sep 2007, 02:11 PM
Thanks for the reply. Is it possible to turn off the popup menu for the image editor until the release of the service pack?
0
Valeri Hristov
Telerik team
answered on 21 Sep 2007, 02:27 PM
Hi James,

You could use the following code to disable the menu for images:
protected void Page_Load(object sender, EventArgs e)
{
 if (!IsPostBack)
 {
  EditorContextMenu imgMenu = null;
  foreach (EditorContextMenu menu in RadEditor1.ContextMenus)
  {
   if (menu.TagName.Equals("img", StringComparison.InvariantCultureIgnoreCase))
   {
    imgMenu = menu;
    break;
   }
  }
  if (imgMenu != null)
  {
   RadEditor1.ContextMenus.Remove(imgMenu);
  }
 }
}


All the best,
Valeri Hristov (Senior Developer, MCSD)
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
James Stuart
Top achievements
Rank 1
Answers by
Valeri Hristov
Telerik team
James Stuart
Top achievements
Rank 1
Share this question
or