GIF89a;
Direktori : /home/serb/public_html/fckeditor/_samples/html/ |
Current File : /home/serb/public_html/fckeditor/_samples/html/sample03.html |
<!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample03.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-03-01 17:50:45 * * File Authors: * Frederico Caldeira Knabben (fredck@fckeditor.net) --> <!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.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../../fckeditor.js"></script> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var iCounter = 0 ; var oCombo = document.getElementById( 'cmbLanguages' ) ; for ( code in editorInstance.Language.AvailableLanguages ) { AddComboOption( oCombo, editorInstance.Language.AvailableLanguages[code] + ' (' + code + ')', code ) ; iCounter++ ; } oCombo.value = editorInstance.Language.ActiveLanguage.Code ; document.getElementById('eNumLangs').innerHTML = '(' + iCounter + ' languages available!)' ; } 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 + "?" + languageCode ; } </script> </head> <body> <h1>FCKeditor - Javascript - Sample 3</h1> This sample shows the editor in all its available languages. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select a language: </td> <td> <select id="cmbLanguages" onchange="ChangeLanguage(this.value);"> </select> </td> <td> <span id="eNumLangs"></span> </td> </tr> </table> <br> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/_samples/')+1) ; var sLang ; if ( document.location.search.length > 1 ) sLang = document.location.search.substr(1) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; if ( sLang == null ) { oFCKeditor.Config["AutoDetectLanguage"] = true ; oFCKeditor.Config["DefaultLanguage"] = "en" ; } else { oFCKeditor.Config["AutoDetectLanguage"] = false ; oFCKeditor.Config["DefaultLanguage"] = sLang ; } oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html>