GIF89a;
Direktori : /home/serb/public_html/fckeditor/_samples/html/ |
Current File : /home/serb/public_html/fckeditor/_samples/html/sample05.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: sample05.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-01-12 20:09:28 * * 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 oCombo = document.getElementById( 'cmbSkins' ) ; // Get the active skin. var sSkin = editorInstance.Config['SkinPath'] ; sSkin = sSkin.match( /[^\/]+(?=\/$)/g ) ; oCombo.value = sSkin ; oCombo.style.visibility = '' ; } function ChangeLanguage( languageCode ) { window.location.href = window.location.pathname + "?" + languageCode ; } </script> </head> <body> <h1>FCKeditor - Javascript - Sample 5</h1> This sample shows how to change the editor skin. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select the skin to load: </td> <td> <select id="cmbSkins" onchange="ChangeLanguage(this.value);" style="VISIBILITY: hidden"> <option value="default" selected>Default</option> <option value="office2003">Office 2003</option> <option value="silver">Silver</option> </select> </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) ; // Get the skin from the URL. var sSkin ; if ( document.location.search.length > 1 ) sSkin = document.location.search.substr(1) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; if ( sSkin != null ) oFCKeditor.Config['SkinPath'] = sBasePath + 'editor/skins/' + sSkin + '/' ; 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>