Hide navigator
Hide source code
<?php
//For use the component
YsJQuery::useComponent(YsJQueryConstant::COMPONENT_JQEDITOR);
$editor = new YsEditor('editorId');
$editor->setContents("Hello World");
$editor->addHtmlPropertie('style','background-color:red');
?>
<button id="btnOpenDialog">Show Demo</button>
<?php echo YsUIDialog::initWidget('dialogId','style="display:none" title="Basic dialog"') ?>
<?php echo $editor->renderTemplate() ?>
<br/>
<br/>
<button id="btnGetEditorContents">Get the content</button>
<?php echo YsUIDialog::endWidget() ?>
<?php
echo
YsJQuery::newInstance()
->onClick()
->in('#btnOpenDialog')
->execute(
YsUIDialog::build('#dialogId')
->_modal(true)
->_width(670)
->_height('auto')
->_buttons(array(
'Ok' => new YsJsFunction('alert("Hello world")'),
'Close' => new YsJsFunction(YsUIDialog::close('this')),
'Get The Contents' => new YsJsFunction("alert(jQuery('#editorId').elrte('val'))"))
),
$editor->build()
);
echo
YsJQuery::newInstance()
->onClick('#btnGetEditorContents',sprintf("alert(%s)",$editor->getValue()));
?>
Hello World
Support requests, bug reports, and off-topic comments will be deleted without warning.