The 2.6 development has been concluded. After the beta, this version comes to stabilize the new dialog system, as well as fix several issues.
We'll be waiting for a while to catch some feedback about this release, and hopefully the final 2.6 will become public soon, having the same code base as this Release Candidate.
We'll be waiting for a while to catch some feedback about this release, and hopefully the final 2.6 will become public soon, having the same code base as this Release Candidate.
Re: FCKeditor 2.6 RC released
Opera 9.50 beta Build 9864 Windows XP
Re: FCKeditor 2.6 RC released
We run here and in our server
Re: FCKeditor 2.6 RC released
Re: FCKeditor 2.6 RC released
And in the dialogs FLASH and IMAGE the UPLOAD doesn't work either.
Bugs!!!When use RegisterDoubleClickHandler() method!
1.when I use RegisterDoubleClickHandler() to listen event on the <select> element in firefox,error occurs always,the js script stops and error increases after mouse clicks!
Error info in firefox:
[Exception... "'Ö^' Text.nodeType öCP ³' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no]
My codes likes following:
function FCKeditor_OnComplete(editorInstance) {
oApi = FCKeditorAPI.GetInstance('editor1');
oApi.Focus();
...
oApi.RegisterDoubleClickHandler(handle1, 'input');
oApi.RegisterDoubleClickHandler(handle1, 'select');
...
}
2.the RegisterDoubleClickHandler() method is invalid with the <input type="hidden" /> element,I don't know why?
Re: FCKeditor 2.6 RC released
My setting:
but no style is applied to the editor area.
Same code is working correctly in v 2.5.1.
Re: FCKeditor 2.6 RC released
Wanted to post my findings to save others time that may be experiencing the EditorAreaCSS not working in 2.6 problem. It had nothing to do with FullPage settings in my case. I was appending a cache buster random number to the css url which caused cssFileOrArrayOrDef to think that it was a style and not a url.
Ex:
http://someplace.com/style.css?123483745 would be returned in style tags.
http://someplace.com/style.css is valid and would be returned in a link tag.
Maybe it isnt necessary anymore, but I remember at one point it was not refreshing the style sheets automatically. IE issue I am sure, but the random number originally fixed it. The regular expression that checks to see if it is a valid url, doesnt take query strings into consideration, so to keep cache busting, just append a valid extension to your cache busted url.
Ex:
http://someplace.com/style.css?123483745.css