Back to all examples
PHP
<?php
require_once '../lib/Kendo/Autoload.php';
?>
<div class="configuration k-widget k-header">
<span class="configHead">Events log</span>
<div class="console"></div>
</div>
<?php
$editor = new \Kendo\UI\Editor('editor');
$editor
->attr('style', 'width:490px;height:400px')
->startContent();
?>
<p><img src="../content/web/editor/kendo-ui-web.png" alt="Editor for ASP.NET MVC logo" style="display:block;margin-left:auto;margin-right:auto;" /></p>
<p>
Kendo UI Editor allows your users to edit HTML in a familiar, user-friendly way.<br />
In this version, the Editor provides the core HTML editing engine, which includes basic text formatting, hyperlinks, lists,
and image handling. The widget <strong>outputs identical HTML</strong> across all major browsers, follows
accessibility standards and provides API for content manipulation.
</p>
<p>Features include:</p>
<ul>
<li>Text formatting & alignment</li>
<li>Bulleted and numbered lists</li>
<li>Hyperlink and image dialogs</li>
<li>Cross-browser support</li>
<li>Identical HTML output across browsers</li>
<li>Gracefully degrades to a <code>textarea</code> when JavaScript is turned off</li>
</ul>
<p>
Read <a href="http://docs.telerik.com/kendo-ui">more details</a> or send us your
<a href="http://www.telerik.com/forums">feedback</a>!
</p>
<?php
$editor->endContent();
// attach event handlers
$editor
->change("onChange")
->select("onSelect")
->execute("onExecute")
->paste("onPaste");
echo $editor->render();
?>
<script>
function onChange(e) {
kendoConsole.log("value change");
}
function onSelect(e) {
kendoConsole.log("selection change");
}
function onExecute(e) {
kendoConsole.log("command :: " + e.name);
}
function onPaste(e) {
kendoConsole.log("paste");
}
</script>
<style>
.configuration {
height: 376px;
width: 200px;
margin-bottom: -21px;
}
.configuration .console {
background-color: transparent;
border: 0;
height: 342px;
overflow: auto;
}
</style>