Hi. I just installed CKEditor and have added a custom button that pulls up a dialog box (similar to the "My Dialog" button in /ckeditor/_samples/api_dialog.html).
It works great. However, after the user enters a value in the text box, how do I do anything with this value? Ideally, I want this value entered inside the editor. For example, I am asking them for an ISBN number. Once they submit the ISBN number, I want the following code to be inserted in the editor (at the spot where the custom button was pressed):
<a href='http://myurl.com/goto.php?isbn=VALUE'>TEXT</a>
Where VALUE is the value the user entered and TEXT is the text that the user had selected before clicking on my custom button. Is this possible? Thanks.