Вход Регистрация
Файл: source/public/media/ckeditor/samples/plugins/enterkey/enterkey.html
Строк: 137
<?php
<!DOCTYPE html>
<!--
Copyright (c2003-2013CKSource Frederico KnabbenAll rights reserved.
For 
licensingsee LICENSE.html or http://ckeditor.com/license
-->
<
html>
<
head>
    <
title>ENTER Key Configuration &mdashCKEditor Sample</title>
    <
meta charset="utf-8">
    <
script src="../../../ckeditor.js"></script>
    <
link href="../../../samples/sample.css" rel="stylesheet">
    <
meta name="ckeditor-sample-name" content="Using the &quot;Enter&quot; key in CKEditor">
    <
meta name="ckeditor-sample-group" content="Advanced Samples">
    <
meta name="ckeditor-sample-description" content="Configuring the behavior of &lt;em&gt;Enter&lt;/em&gt; and &lt;em&gt;Shift+Enter&lt;/em&gt; keys.">
    <
script>

        var 
editor;

        function 
changeEnter() {
            
// If we already have an editor, let's destroy it first.
            
if ( editor )
                
editor.destroytrue );

            
// Create the editor again, with the appropriate settings.
            
editor CKEDITOR.replace'editor1', {
                
extraPlugins'enterkey',
                
enterModeNumberdocument.getElementById'xEnter' ).value ),
                
shiftEnterModeNumberdocument.getElementById'xShiftEnter' ).value )
            });
        }

        
window.onload changeEnter;

    </
script>
</
head>
<
body>
    <
h1 class="samples">
        <
a href="../../../samples/index.html">CKEditor Samples</a> &raquoENTER Key Configuration
    
</h1>
    <
div class="description">
        <
p>
            
This sample shows how to configure the <em>Enter</em> and <em>Shift+Enter</emkeys
            to perform actions specified in the
            
<class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-enterMode"><code>enterMode</code></a>
            and <
class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-shiftEnterMode"><code>shiftEnterMode</code></a>
            
parametersrespectively.
             
You can choose from the following options:
        </
p>
        <
ul class="samples">
            <
li><strong><code>ENTER_P</code></strong> &ndash; new <code>&lt;p&gt;</codeparagraphs are created;</li>
            <
li><strong><code>ENTER_BR</code></strong> &ndashlines are broken with <code>&lt;br&gt;</codeelements;</li>
            <
li><strong><code>ENTER_DIV</code></strong> &ndash; new <code>&lt;div&gt;</codeblocks are created.</li>
        </
ul>
        <
p>
            
The sample code below shows how to configure CKEditor to create a <code>&lt;div&gt;</codeblock when <em>Enter</emkey is pressed.
        </
p>
<
pre class="samples">
CKEDITOR.replace'<em>textarea_id</em>', {
    <
strong>enterModeCKEDITOR.ENTER_DIV</strong>
});</
pre>
        <
p>
            
Note that <code><em>textarea_id</em></codein the code above is the <code>id</codeattribute of
            the 
<code>&lt;textarea&gt;</codeelement to be replaced.
        </
p>
    </
div>
    <
div style="float: left; margin-right: 20px">
        
When <em>Enter</emis pressed:<br>
        <
select id="xEnter" onchange="changeEnter();">
            <
option selected="selected" value="1">Create a new &lt;P&gt; (recommended)</option>
            <
option value="3">Create a new &lt;DIV&gt;</option>
            <
option value="2">Break the line with a &lt;BR&gt;</option>
        </
select>
    </
div>
    <
div style="float: left">
        
When <em>Shift+Enter</emis pressed:<br>
        <
select id="xShiftEnter" onchange="changeEnter();">
            <
option value="1">Create a new &lt;P&gt;</option>
            <
option value="3">Create a new &lt;DIV&gt;</option>
            <
option selected="selected" value="2">Break the line with a &lt;BR&gt; (recommended)</option>
        </
select>
    </
div>
    <
br style="clear: both">
    <
form action="../../../samples/sample_posteddata.php" method="post">
        <
p>
            <
br>
            <
textarea cols="80" id="editor1" name="editor1" rows="10">This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.</textarea>
        </
p>
        <
p>
            <
input type="submit" value="Submit">
        </
p>
    </
form>
    <
div id="footer">
        <
hr>
        <
p>
            
CKEditor The text editor for the Internet - <class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
        
</p>
        <
p id="copy">
            
Copyright &copy2003-2013, <class="samples" href="http://cksource.com/">CKSource</a> - Frederico
            Knabben
All rights reserved.
        </
p>
    </
div>
</
body>
</
html>
?>
Онлайн: 1
Реклама