ciao a tutti,
ho provato a usare il form "potenziato" (modello html area) gerenaro con fckeditor.
è dichiarato che è compatibile anche con mozilla e firefox.
Effettivamente se inserisco un campo input funziona su tutti i browser.
Se invece provo ad inserirne due, funziona perfettamente con explorer, ma con firefox non mi permette di cambiare il testo di una dei due campi input.
Qualcuno ha qualche idea?
provo a postare la pagina così come viene generata,:
[CODE]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="sample/sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
function FCKeditor_OnComplete( editorInstance )
{
var oCombo = document.getElementById( 'cmbLanguages' ) ;
for ( code in editorInstance.Language.AvailableLanguages )
{
AddComboOption( oCombo, editorInstance.Language.AvailableLanguagescodice:+ ' (' + code + ')', code ) ; } oCombo.value = editorInstance.Language.ActiveLanguage.Code ; } function AddComboOption(combo, optionText, optionValue) { var oOption = document.createElement("OPTION") ; combo.options.add(oOption) ; oOption.innerHTML = optionText ; oOption.value = optionValue ; return oOption ; } function ChangeLanguage( languageCode ) { window.location.href = window.location.pathname + "?Lang=" + languageCode ; } </script> </head> <body> <h1>FCKeditor - PHP - Sample 2</h1> This sample shows the editor in all its available languages. <hr> <form action="sampleposteddata.php" method="post" target="_blank"> <div><input type="hidden" id="titolo" name="titolo" value="You are using <a href="http://www.fckeditor.net/">FCKeditor</a>."><input type="hidden" id="titolo___Config" value="DefaultLanguage=it"><iframe id="titolo___Frame" src="editor/fckeditor.html?InstanceName=titolo&Toolbar=Default" width="100%" height="200" frameborder="no" scrolling="no"></iframe></div> <div><input type="hidden" id="resto" name="resto" value="prova"><input type="hidden" id="resto___Config" value="AutoDetectLanguage=false&DefaultLanguage=it"><iframe id="resto___Frame" src="editor/fckeditor.html?InstanceName=resto&Toolbar=Default" width="100%" height="200" frameborder="no" scrolling="no"></iframe></div> <input type="submit" value="Submit"> </form> </body> </html>