3 | | I am |
| 3 | I 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 | |
| 5 | btnSave.Attributes.Add("onclick", "FCKUpdateLinkedField('" + this.FckClientId.ToString() + "');"); |
| 6 | |
| 7 | and 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 | |
| 20 | but this gives fck undefined error in FF. |
| 21 | |
| 22 | Can u please post the patch for this. I have referred all post in 234 but not able to fix it. |
| 23 | |
| 24 | Thanks & Regards |
| 25 | Sandhya. |