Hello,
when using a server side file/link browser, is there a way to get the
current value of the link/file selected ?
That way we could present the user his old selection in the link/file browser.
André
when using a server side file/link browser, is there a way to get the
current value of the link/file selected ?
That way we could present the user his old selection in the link/file browser.
André

Re: File/Link browsers, retrieve current value
window.opener.CKEDITOR.dialog.getCurrent().getValueOf('info', 'url');or for call from current page
CKEDITOR.dialog.getCurrent().getValueOf('info', 'url');The complete code for all standart dialog:
Re: File/Link browsers, retrieve current value
Thanks