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
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
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