Hi,
If I follow these instructions: http://www.telerik.com/support/kb/aspnet-ajax/editor/details/using-the-image-and-document-managers-outside-radeditor
When I open like this everything is OK:
function OpenImgManager(TheBox) {
$find(TheBox).open('ImageManager', { CssClasses: [] }, null, 'ImageManager');
}
But when I open like this, the image url is only passed when double clicking the image, on INSERT button null value is passed.
function OpenImgManager(TheBox) {
var args = new Telerik.Web.UI.EditorCommandEventArgs("ImageManager", null, document.createElement("a"));
args.CssClasses = [];
$find(TheBox).open('ImageManager', args);
}
What is happening here, I think this always worked till now.
Marc