FCKEditor implemented in Apex - save button doesn't save!

Hi there,
I used the excellent notes on implementing FCKEditor into apex (see Re: textarea html editors and everything is working very well, however the FCKEditor Save button, whilst doing a submit is not saving the edited contents of the window.
I'm wondering whether the automatic DML process of the page is being bypassed because the request value passed by the page submit is not one of the ones that the process recognises?
Has anyone faced this problem, and figured out a solution?
I'm using FCKEditor 2.2 (http://www.fckeditor.net) with apex express version 2.1.0.00.39
Thanks in advance,
Mike Cretan
Message was edited by:
MGC

Hi,
Check the demo program  SAPSCRIPT_DEMO_NOTE_EDITOR what ever you enter in the editor you get the text using method
call method note_editor->get_text_as_stream
       importing text = notetab.

Similar Messages

  • E-recruiting BSP Tab Note Save & Back button  doesn't save data

    Hi all,
    We have implemented, EHP3, and we had a problem with the cancel button in the screen of the tab note of TRM category, the problem with  Cancel button was that it save data when it shouldn't do, so we implemented the note < 1439737   " Note text is getting saved when you press 'Cancel' button " > and <1379694  "  Changes in the letter section are lost after tab switch " >, so the problem with Cancel button was solved, but now the Save & Back button doesn't save anything the data is getting lost, we sent am OSS Note to SAP, but still no answer, so I wanna know if somebody has a similar problem, and if it is, how did u solve?? Please let me know please.
    Many Thanks.

    Hi all,
    We have implemented, EHP3, and we had a problem with the cancel button in the screen of the tab note of TRM category, the problem with  Cancel button was that it save data when it shouldn't do, so we implemented the note < 1439737   " Note text is getting saved when you press 'Cancel' button " > and <1379694  "  Changes in the letter section are lost after tab switch " >, so the problem with Cancel button was solved, but now the Save & Back button doesn't save anything the data is getting lost, we sent am OSS Note to SAP, but still no answer, so I wanna know if somebody has a similar problem, and if it is, how did u solve?? Please let me know please.
    Many Thanks.

  • SAVE button doesn't appear in Toolbar of Text Edit Control

    Hai All,
    I need to save the changes made to the text in my Text Edit Control, i know how to handle the Save command but my problem is the SAVE button doesn't appear in the Toolbar of the Text Editor. I have searched through the SDN but in all of those threads they already have the SAVE button and hence only the logic was discussed. But i need the SAVE button to appear in my Text Edit Control. Looking forward  for your helpful answers.
    Thanks in Advance,
    rama

    Hi,
    Check the demo program  SAPSCRIPT_DEMO_NOTE_EDITOR what ever you enter in the editor you get the text using method
    call method note_editor->get_text_as_stream
           importing text = notetab.

  • I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. Some contacts have problems opening files sent by me using Mail too. This was never a problem on pre-Intel. A real Mac **** up !

    I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. And some contacts occasionally have problems opening files sent by me using Mail too. This was never a problem on pre-Intel Mac. A real Mac **** up ! Any ideas ?

    Can you drag and drop the attachments visible in the email to the Desktop OK or does that fail ?
    Re the sending: Are these recipients on Mac's or PC's as the file type could be an issue, if on Mac's then try setting the Mail Preferences Composing setting to Plain Text not Rich Text and see if that improves things.

  • Can't create Smart Collection, Save-Button doesn't work

    i have the Problem  that i can't create Smart Collection, the Save-Button doesn't work, the Smart-Collection Window stays open and nothing happens when i click the "save" button!
    i use CC with a new installed W8 and all is up-to-date.
    Its a strange thing. Please Help me.

    Just to clarify, Photoshop CC has not been released yet.  It will come out on June 17.
    What you have now is Photoshop 13.x as per the subscription model (»Abo«) and it's called Photoshop CS6.  When Photoshop 14.x is released on June 17, then it will be called "CC".
    It's not clear—at least to me—which images, if any, you have selected in Bridge when you hit the »Speichern« (Save) button.
    Remember that a Collection is nothing more than a saved search, i.e. a saved collection of selected search results (hits).
    Could you elaborate on what it is you want to save as a collection? 
    Incidentally, the Adobe Bridge forum is here:
    http://forums.adobe.com/community/bridge?view=discussions

  • I can't save pic. from net. "set your download location place as "Pictures"" That button doesn't work, or button for "browse" to send a file.

    With my new browser i can't save pictures from net. I saw a question about changing file location. I can't, coz that button doesn't work. Also if i want to send a file, using mail or something, browser button for searching file doesn't work. Thanks.

    I am using Firefox for several years and never had any problem. Since i update it to the new Firefox, problems start:
    If i am trying to save a picture from ALL internet, it is not working. I am doing in the same way, like always: view image/save image as.... When i click it is not working, and all my screen doing like i make a refresh. I saw something strange files in temp after i am trying to save a picture, files with name like "etilqs" and some other letters after, the files are hidden. When i close firefox, files disappear.
    If i am trying to send an e-mail with some files, button for search files in my pc, is not working, and when i click him, same thing with my screen. It is not about what kind of mail i am using, same problem if i want to attache a file on a site, even if i try to change files location in browser setup, like : options/general/save files to/... and i hit "browse..." button, same problem like i want to attache a file. Even here, if i want to use "ADD IMAGES" option, under is browse button, it is not working, same problem with my screen. Like is angry or something.

  • Cancel button doesn't cancel

    Hello.
    I have the following code:-
    public void actionPerformed(ActionEvent e) {
              if (e.getSource() == ok)
                   theType = type.getSelection().getActionCommand();
                  // use the entered data
                  theBid = Integer.parseInt(bid.getText());
                theName = name.getText();
              else if (e.getSource() == cancel) {
                  // data entry cancelled
              dispose();
         }my problem is the cancel button doesn't actually cancel although does close the window it still submits the data.
    how can i get it to destroy all data and then close the window?
    many thanks in advance.
    dave.

    Hello,
    those bits of code still don't seem to work. it ends up setting 'null' for strings and 0 for ints still when i press cancel.
    here is more code to show where the data is actually used:-
    GUINew.java (part of previous code):-
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class GUINew extends JDialog implements ActionListener
         private JButton ok;
         private JButton cancel;
         private ButtonGroup type;
         private JTextField bid;
         private JTextField name;
         int theBid;
         String theName;
         String theType;
         public GUINew(String sTitle, JFrame owner) {
              super (owner, sTitle, true);
              setLooknFeel();
              bid = new JTextField(4);
              name = new JTextField(14);
              ok = new JButton("Hire Boat!");
              ok.addActionListener(this);
              cancel = new JButton("Cancel");
              cancel.addActionListener(this);
              type = new ButtonGroup();
              // create each radio button, specifying its label
              JRadioButton pedal = new JRadioButton("Pedal boat");
              JRadioButton rowing = new JRadioButton("Rowing boat");
              // set a String to associate with each button
              // will use this when the radio button is selected
              pedal.setActionCommand("Pedal boat");
              rowing.setActionCommand("Rowing boat");
              type.add(pedal);
              type.add(rowing);
              JPanel top = new JPanel();
              top.add(pedal);
              top.add(rowing);
             getContentPane().add("North", top);
              JPanel center = new JPanel();
              center.add(new JLabel("Enter Boat ID:"));
              center.add(bid);
              center.add(new JLabel("Enter Name/Colour:"));
              center.add(name);
              getContentPane().add("Center", center);
              JPanel bottom = new JPanel();
              bottom.add(ok);
              bottom.add(cancel);
              getContentPane().add("South", bottom);
              pack();
         public int getBid() { return theBid; }
         public String getName() { return theName; }
         public String getType() { return theType; }
         public void actionPerformed(ActionEvent e) {
              if (e.getSource() == ok)
                   theType = type.getSelection().getActionCommand();
                  // use the entered data
                  theBid = Integer.parseInt(bid.getText());
                theName = name.getText();
              else if (e.getSource() == cancel) {
                  this.dispose();//will release memory
                   this.setVisible(false);//will hide the window
              dispose();
         // windows look and feel settings
         private void setLooknFeel() {
            String lookAndFeel = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
            try {
                UIManager.setLookAndFeel(lookAndFeel);
            catch (Exception e) {
                e.printStackTrace();
    }Main.java - where the data is used:-
    else if (e.getSource() == mtOne) { // add new boat
                   GUINew newb = new GUINew("Add a new boat", this);
                   newb.setVisible(true);
                   if(newb.getType() == "Rowing Boat") {
                        octagon.addBoat(new RowingBoat(newb.getName(), newb.getBid()), newb.getBid(), textarea, title);
                   else {
                        octagon.addBoat(new PedalBoat(newb.getName(), newb.getBid()), newb.getBid(), textarea, title);
              }at the moment when i click cancel it submits getName as Null and getBid and 0.
    Thanks
    Dave.

  • A pop-up message is frozen on my settings page. I was trying to set up an apple id for iTunes when I got a message "required fields have been left blank. The missing information is highlighted in red." the ok button doesn't work. 1st gen iPad.

    A pop-up message is frozen on my settings page. I was trying to set up an apple id for iTunes when I got a message "required fields have been left blank. The missing information is highlighted in red." the ok button doesn't work. The message is now fixed &amp; I cannot get rid of it. Ironically, when I found this forum I was able to set up an apple Id. Please advise how to get rid of the pop-up box. Thanks!

    I'm having this same problem as well and cannot advance--very irritating. All of the information is filled out correctly and I've editted my AppleID information online separately as well to get around this issue, but no luck...

  • Can't lower voice memo volume. My decrease button doesn't work anymore. Any other way i can lower it without disabling speaker

    Own an iphone 5. Can't control voice memo volume from anywhere that deals with volume on my phone. My decrease button doesn't work. I have to listen to my voice memos on full blown volume. Can't lower it from settings or from music. Help please!

    Hi,
    thanks for your answer. 
    The Size of all disks is: 6 x 4 TB.
    In the Pool are 5 x 4 TB plus 1 x Hot Spare. 
    It comes up to about 14,6 TB of Data formatable.
    But tried it also with just 3 x 4 TB to see if it works. 
    I just made a Raid5EE on the controller and then used Storage Spaces with simple, all worked fine. 
    Here the results of my tests: 
    1) your command had to be modified (typoe in usemaximumsize, and had to add -ResiliencySettingName Parity. 
    new-virtualdisk -friendlyname testpsh -storagepoolfriendlyname test -ResiliencySettingName Parity -usemaximumsize
    But anyway, my problem is not creating the virtual disk, but formatting the partition if it's parity only. 
    I added a screenshot: 
    Here you see my storage pool, and I added 3 virtual disk. 
    1 simple, 1 mirror, 1 parity. Only the parity cannot be formatted. The others can. No mather which size I do. 
    About a testserver, I added 4 x 4 TB to a VM (VHDX-files) and could do parity without problems. So it seems it is this server specific.
    As it worked with another controller, I really wonder if the controller could break parity of Storage Pools?
    The other weird part is, it sais "Raid" as BUS, but it's set to pass through, in details I see the serial of the attached HDD. 
    This is what properties shows on this volume. Always RAW. 
    I also tried Software Raid5 within the server. 
    This also worked fine. So really only parity. 
    Thanks
    Patrick

  • My screen if frozen and I can't shut off my phone. I already have my assistiave touch button on my screen but it still own't let me shut off my phone. And my lock button doesn't work either

    My screen is frozen on the camera and my phone won't let me shut it off. My lock button doesn't work and my assistance touch button won't let me shut it down either. My phone also takes hours to die and my battery if fully charged so i can't wait for it to die i need to get it back to normal asap! How do I get it to unfreeze?

    A reset is when you press and hold both the home and sleep buttons for 10 seconds or so until the Apple logo appears. You won't lose any data. Give it a try.

  • Volume and Power button doesn't work..how do I fix?

    My son's volume buttons or the power button doesn't work.  Is there something I can do to fix these issues?

    Try the following to rule out a software problem.
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                                                              

  • "Submit to SAP" Button doesn't work

    Hi to all,
    I'm trying to develop an interactive form using NW04 SP22. My problem is that the submit to sap button doesn't work. I think I have not properly installed active component framework (ACF) on my client pc but I can't find the right ACF to install. I found a note 766191 in which I can download ACF for SP22 but  the link [url]https://sapmats-de.sap-ag.de/download/download.cgi?id=OZOHD0204MQQADJPWOZSGFDNCP39PBJ6TFA2CANJKUPYIGJF16[url]  seems not to work. Where can I find it?
    Thank you very mich,
    Enrico

    Hi Enrico,
    You can download it from the below link:
    http://www.esnips.com/web/arafatfNewFolder/
    Let me know once you are done so that I will delete the link.
    Regards,
    Arafat

  • Can't Add Credit Card (submit button doesn't work)

    Hey. Recently come across a problem trying to add my credit card so I could buy a Twitter app that works with Twitters new authorization.
    The submit button doesn't work. It is still there, but it is unclickable, it doesn't load up anything, or do anything. It doesn't change to being clickable at any time.
    If it helps, I have the Palm Pre, I'm with O2 (UK).
    Can anyone help?
    Post relates to: Pre p100ueu (O2)

    This sounds like a credit card related issue. Has anything about your credit card changed, like a new expiration data? You can go to App Catalog, tap the drop-down menu, select Preferences and Accounts, then choose the account name, enter your profile password, tap continue, When the Edit Credit Card screen appears, re-enter the credit card number and confirm that the remaining info is valid or enter any new information, then submit.

  • "open in ibooks" button doesn't open pdf on iPhone 6, click it several times and nothing happens

    The "open in ibooks" button doesn't open pdf on new iPhone 6. I'll click it several times and nothing happens. Is there a way to uninstall ibooks and reinstall?

    there is no share button in preview
    I am seeing a Share button in Preview's toolbar, Larry:  Can you see the screenshot?
    The content of the Share menu will depend on the file format. For PDFs the menu will be nearly empty and iPhoto and aperture are missing.
    MacBook Pro (17-inch Late 2011), OS X Yosemite (10.10), 2.4 GHz i7, 16GB, 500GB SSD,1TB HD

  • My iPod touch 4th gen white's home button doesn't work the first time I press it, but the second time.

    My home button doesn't work the first time I press it, but the second time.  This is very annoying.  Why is it doing this?

    - Try a reset. It cures many ills and nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    -If a hardware problem see:
    fix for Home button

Maybe you are looking for

  • Error while creating order (IBE_SC_ERR_RELOAD_C_MEMBER_UPD)

    we are facing issue while creating Order, the error says "Your cart has been updated by another member.  We have reloaded it for you.  Please reenter your changes."  (IBE_SC_ERR_RELOAD_C_MEMBER_UPD) . It appears if l_last_upd_party_id = l_owner_party

  • Sample Applications and/or obtaining apps from Influxis

    Anyone have a list of other sites providing example apps and/or free applications for download? I also was interested in getting some of the apps from Influxis to test with. Has anyone been able to get any of those? LEt me know.

  • Drawing with an Arrow Symbol

    I want to draw a curving, curling path of cursor arrows, all following one another in "single file" in the same direction, from one end of the path to the other. How can I do this?

  • Import quality to iPhoto

    Read previous posts and still not clear. On vacation I backed up my camera to my iPad 3 using the connector kit. By the time I arrived home the iPad had copied photos via Photo Stream to my iMac desktop. My question is whether the photos transmitted

  • Flash CS6 Actionscript 3 errors, please help!

    This is my code, and I am having the following errors: else is unexpected, expecting identifier, and expecting rightbrace before end of program. I'm sorry if it's really ridiculously easy, I'm a complete noob at flash, and coding all together! In fac