Changes between Initial Version and Version 1 of Ticket #1255, comment 12


Ignore:
Timestamp:
Jun 1, 2011, 11:42:41 AM (13 years ago)
Author:
sandhya
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1255, comment 12

    initial v1  
    11Hi,
    22
    3 I am
     3I am using FCK editor 2.6 with asp.net 3.5 and ajax toolkit script manager. I have added following code to get updated text from fck editor.
     4
     5btnSave.Attributes.Add("onclick", "FCKUpdateLinkedField('" + this.FckClientId.ToString() + "');");
     6
     7and on aspx page
     8
     9 function FCKUpdateLinkedField(id) {
     10       
     11    try {
     12        if (typeof (FCKeditorAPI) == "object") {
     13            FCKeditorAPI.GetInstance(id).UpdateLinkedField();
     14        }
     15    }
     16    catch (err) {
     17    }
     18}
     19
     20but this gives fck undefined error in FF.
     21
     22Can u please post the patch for this. I have referred all post in 234 but not able to fix it.
     23
     24Thanks & Regards
     25Sandhya.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy