Hide navigator
Hide source code
<?php
YsJQuery::useComponent(YsJQueryConstant::COMPONENT_JQGRID);
$grid = new YsGrid('gridId','Title');
$idGridField = new YsGridField('id', 'Id');
$clientGridField = new YsGridField('client', 'Client');
$accountGridField = new YsGridField('account', 'Account');
$balanceGridField = new YsGridField('balance', 'Balance');
$grid->addGridFields($idGridField, $clientGridField, $accountGridField, $balanceGridField);
$recordList = new YsGridRecordList();
for($i = 1; $i <= 9 ; $i++){
$record = new YsGridRecord();
$record->setAttribute('id', $i);
$record->setAttribute('client', 'Client #' . $i);
$record->setAttribute('account', time() + rand(1, 100000000));
$record->setAttribute('balance', rand(1, 1000));
$recordList->append($record);
}
$grid->setRecordList($recordList);
$grid->setWidth("100%");
$grid->setDataType(YsGridConstants::DATA_TYPE_LOCAL);
$grid->setRowNum($i - 1);
$grid->setRowList(array(3,5,10));
$grid->setViewRecords(true);
$grid->setSortname('client');
$grid->setMultiselect(false);
$grid->setSubGrid(true);
$grid->setBeforeSearchExpandedContent('alert("Before Search")');
$grid->setAfterSearchExpandedContent('alert("After Search")');
$grid->searchExpandedContentIn('examples/response/subGridResponse.php');
$grid->setSubGridPlusIcon(YsUIConstant::ICON_TRIANGLE_1_E);
$grid->setSubGridMinusIcon(YsUIConstant::ICON_TRIANGLE_1_S);
$grid->setSubGridOpenIcon(YsUIConstant::ICON_ARROWRETURNTHICK_1_E);
?>
<button id="btnOpenDialog">Show Demo</button>
<?php echo YsUIDialog::initWidget('dialogId','style="display:none" title="Basic dialog"') ?>
<?php echo $grid->renderTemplate() ?>
<?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')))
)
)
?>
<?php echo $grid->execute() ?>
Support requests, bug reports, and off-topic comments will be deleted without warning.