I Know that the button Save do a "Send" to the form, I'm looking for how to save and load content in the Fckeditor,I just find this plugin
http://www.saulmade.nl/FCKeditor/FCKPlugins.php But it don't work with the last version of FCKeditor.
Yes, I can do a submit to save and the charge the content with the $oFCKeditor->Value, but I'm looking for the way to do it without reload.
Anyone know how to do it? Thanks
Sun, 03/29/2009 - 18:44
#1
Re: SAVE BUTTON
Re: SAVE BUTTON
Re: SAVE BUTTON
Currently, I am saving the HTML of the fckEditor on every Page_Load, as the 'Save' button submits the form. However, this seems juvenile and unprofessional.
How can I utilize something like the __doPostBack function where I can pass in the Id and Argument so that I can retrieve these values in the code behind and test for them properly?
I want to click save on the save icon in the toolbar and have it postback to the server with a saveId and/or specific argument that I can look for to tell when the 'save' button has been clicked. I've read several posts similar to this, but it seems no-one is able to actually do it.
I get that the 'save' button is simply a submit button. I can see in the fckConfig.js file where the form is submitting:
Yeah i get that can change the A.submit to call my own function to perform the postback.
However, when i substitue the A.submit to use __doPostBack('myIdOfTheCtrlHere', 'myArgumentHere'), the __doPostBack function is unrecognized.
Help please.