Hide navigator
Hide source code
<?php
//For use the component
YsJQuery::useComponent(YsJQueryConstant::COMPONENT_JQEDITOR);
$editor = new YsEditor('editorId');
?>
<button id="btnOpenDialog">Show Demo</button>
<?php echo YsUIDialog::initWidget('dialogId','style="display:none" title="Basic dialog"') ?>
<?php echo $editor->initWidget() ?>
<table>
<tr>
<td style="background-color: red">
Hello World
</td>
</tr>
</table>
<?php echo $editor->endWidget() ?>
<?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')))
),
$editor->build()
)
?>
Support requests, bug reports, and off-topic comments will be deleted without warning.