Buttons Bar
<button id="btnShowDemo">Show Demo</button>
<?php echo YsUIDialog::initWidget('dialogId','style="display:none" title="Basic dialog"') ?>
<?php echo YsUIDatepicker::input('datepickerId')?>
<?php echo YsUIDialog::endWidget() ?>
<?php
echo
YsJQuery::newInstance()
->onClick()
->in('#btnShowDemo')
->execute(
YsUIDialog::build('#dialogId')
->_modal(true)
->_buttons(array(
'Ok' => new YsJsFunction('alert("Hello world")'),
'Close' => new YsJsFunction(YsUIDialog::close('this')))
)
);
echo
YsJQuery::newInstance()
->executeOnReady(
YsUIDatepicker::build('#datepickerId')
->_showButtonPanel(true)
->_appendText(' mm/dd/yyyy')
);
?>

Support requests, bug reports, and off-topic comments will be deleted without warning.