I tried to upload a file in .NET it does not workl, I hava to press F5 key to make it kork but the system told me: the file already exist and change the name for........
I try with asp, and html and it works fine, will you bring a new dll to fix this? or do you have a example with .net.
Mac OS/X with Mozilla, Firefox, and Netscape 7.2 have cut/copy/paste working from the keyboard. However, when you click any of the buttons to do the action, rather than pop up the "Use the Keyboard" message, they all crash.
The Demo site seems to have this fixed. Is it possible to release grab the code base that the Demo site is running on from a CVS repository?
I liked the tabs as well. They look to me like Macromedia Cold Fusion tabs. Am I right? I've been meaning to review that js, myself - MM has an impressive demo that makes me like CF a little bit. Personaly, I wrote my own tab functions, but they probably stink compare to the MM ones. I'm thinking about switching. I use a getElementByClass function I found somewhere on the internet. (BTW, the example on topic is not mine. It was made by jmcent01.) I should make an example myself soon.
I would say that is a bug. That "null" is null or not an object is something that I sometimes get in IE also, though I've no idea what causes my errors other than that I get them when I try to navigate off of the page.
<?
include ("../../../../functions/db.php");
include("../../../../functions/variables.php");
//include("../functions/stripslashes.php");
include("../../../../functions/functions.php");
$classification_result2 = mssql_query("SELECT * FROM classification order by name");
?>
RE: IMPORTANT: Final Candidate Preview
http://******************************** ... startup.js
RE: IMPORTANT: Final Candidate Preview
https://sourceforge.net/forum/forum.php ... _id=257180
RE: IMPORTANT: Final Candidate Preview
I try with asp, and html and it works fine, will you bring a new dll to fix this? or do you have a example with .net.
Thanks for this great editor.
IE6 Undo / Redo BUG
http://msdn.microsoft.com/workshop/brow ... ingdoc.asp
http://msdn.microsoft.com/workshop/brow ... nerovw.asp
RE: IMPORTANT: Final Candidate Preview
RE: IMPORTANT: Final Candidate Preview
The Demo site seems to have this fixed. Is it possible to release grab the code base that the Demo site is running on from a CVS repository?
-t
RE: IMPORTANT: Final Candidate Preview
RE: IMPORTANT: Final Candidate Preview
http://eureka.ext.usu.edu/admin/test.cfm
RE: IMPORTANT: Final Candidate Preview
http://eureka.ext.usu.edu/admin/test.cfm
RE: IMPORTANT: Final Candidate Preview
I'm using Firefox 1.0
RE: IMPORTANT: Final Candidate Preview
RE: IMPORTANT: Final Candidate Preview
Macromedia Tabs
Personaly, I wrote my own tab functions, but they probably stink compare to the MM ones. I'm thinking about switching. I use a getElementByClass function I found somewhere on the internet. (BTW, the example on topic is not mine. It was made by jmcent01.) I should make an example myself soon.
Tableediting problem
RE: Tableediting problem
Windows Firefox: SLOW, Linux: FAST
In Linux firefox (and IE for Windows) typing is normal and fast.
Anyone else seeing this?
-Warr
RE: IMPORTANT: Final Candidate Preview
onkeydown event in fck_1_ie.js
RE: IMPORTANT: Final Candidate Preview
With the standart RC3, I couldn't use more than one fckeditor instance on a single webpage under firefox (1.03).
Now with the FC release, it works flawlessly with four instance.
Thanks
RE: IMPORTANT: Final Candidate Preview
http://www.cuccu.net/ken/bugs/fckeditor.html
RE: IMPORTANT: Final Candidate Preview
FINALLY!!!! - Successful with plugin with RC2
http://www.opensource.org/licenses/lgpl-license.php
http://www.fckeditor.net/
fredck@fckeditor.net
<html> <head> <title>Classify Properties</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta content="noindex, nofollow" name="robots"> <script src="common/fck_dialog_common.js" type="text/javascript"></script> <script type="text/javascript"> var oEditor = window.parent.InnerDialogLoaded() ; // Gets the document DOM var oDOM = oEditor.FCK.EditorDocument ; var oActiveEl = oEditor.FCKSelection.GetSelectedElement() ; window.onload = function() { // First of all, translate the dialog box texts oEditor.FCKLanguageManager.TranslatePage(document) ; if ( oActiveEl && oActiveEl.tagName == 'A' && oActiveEl.name.length > 0 && oActiveEl.getAttribute('href').length == 0 ) GetE('txtName').value = oActiveEl.name ; else oActiveEl = null ; window.parent.SetOkButton( true ) ; } function Ok() { if ( GetE('txtName').value.length == 0 ) { alert( oEditor.FCKLang.DlgClassifyErrorName ) ; return false ; } //oEditor.FCK.InsertHtml( '<a name="' + GetE('txtName').value + '"></a>' ) ; oEditor.FCK.InsertHtml( '<b>'+ GetE('txtName').value + '</b>' ) ; return true ; } </script> </head> <body bgcolor="#efefef" style="OVERFLOW: hidden" scroll="no"> <table bgcolor="#efefef" height="100%" width="100%"> <tr> <td align="center"> <table border="0" cellpadding="0" cellspacing="0" width="80%"> <tr> <td> <span fckLang="DlgClassifyName">Classification Picker</span><BR> <!-- <input id="txtName" style="WIDTH: 100%" type="text"> --> <!-- <select name="txtName" style="WIDTH: 100%"> <option value="None">Select Classification to Enter</option> <option value="TS//test Classify 1">TS//test Classify 1</option> <option value="TS//test Classify 2">TS//test Classify 2</option> <option value="TS//test Classify 3">TS//test Classify 3</option> <option value="TS//test Classify 4">TS//test Classify 4</option> </select> --> <select id="txtName" name="txtName" style="WIDTH: 100%"> <option value="">----Classification Picker----</option> <?php //include ("functions/db.php"); //$classification_result2 = mssql_query("SELECT * FROM classification order by name"); while($row1=mssql_fetch_array($classification_result2)) { echo "<option value='$row1[name]'>$row1[name]</option>"; }; ?> </select> <op </td> </tr> </table> </td> </tr> </table> </body> </html>RE: IMPORTANT: Final Candidate Preview