Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: substr(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: substr(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: substr(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: substr(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Deprecated: substr(): Passing null to parameter #1 ($string) of type string is deprecated in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/YsJQueryBuilder.php on line 127
Custom Formatter
<?php YsJQuery::useComponent(YsJQueryConstant::COMPONENT_JQGRID); $grid = new YsGrid('gridId','Title'); $idGridField = new YsGridField('id', 'Id'); $idGridField->setAlign(YsAlignment::$CENTER); $idGridField->setFormatter(YsArgument::likeVar('formatRating')); $idGridField->setUnformat(YsArgument::likeVar('unformatRating')); $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 <= 10 ; $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'); ?> <button id="btnOpenDialog">Show Demo</button> <?php echo YsUIDialog::initWidget('dialogId','style="display:none" title="Basic dialog"') ?> <?php echo $grid->draw() ?> <?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'))) ) ) ?> <script type="text/javascript" language="javascript" > function formatRating(cellValue, options, rowObject) { var color = (parseInt(cellValue) > 5) ? "green" : "red"; var cellHtml = "<b><span style='color:" + color + "' originalValue='" + cellValue + "'>" + cellValue + "</span></b>"; return cellHtml; } function unformatRating(cellValue, options, cellObject) { return $(cellObject.html()).attr("originalValue"); } </script>
Deprecated: Return type of YsGridRecordList::append($value) should either be compatible with ArrayObject::append(mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/project-web/jquery4php/lib/YepSua/Labs/RIA/jQuery4PHP/Components/jqGrid/YsGridRecordList.php on line 21
Support requests, bug reports, and off-topic comments will be deleted without warning.