Widgets > [No Target Defined] > Use the Simple Toolbar |
The wijeditor widget supports a simplified version of its editing toolbar, which provides these buttons: Bold, Italic, Link, Block Quote, Strikethrough, Insert Date Time, Image Browser, Numbered List, Bulleted List, and Insert Code. See the Editor > Simple sample of the MVC Control Explorer live demo at http://demo.componentone.com/ASPNET/MVCExplorer/editor/Simple.
Simply set the mode option to "simple" in the script to take advantage of this feature.
<script id="scriptInit" type="text/javascript">
$(document).ready(function () {
$("#wijeditor").wijeditor({
mode: "simple"
});
});
</script>
<body>
<div class="demo">
<textarea id="wijeditor" style="width: 400px; height: 400px;">
<h1>Heading</h1>
<p>Your Content Here</p>
</textarea>
</div>
<script id="scriptInit" type="text/javascript">
$(document).ready(function () {
$("#wijeditor").wijeditor({
mode: "simple"
});
});
</script>