Files
citrus-cms/app/Functions/devextreme-data-store.php
T
2026-04-28 21:14:25 +03:00

8 lines
296 B
PHP
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php function dxDataStore($tableName, $columnName, $filter = "") {
?>
new DevExpress.data.ODataStore({
                url: '<?php echo autocomplete_url2($tableName, $columnName) ?><?php echo $filter ?>,
                key: 'id',
            });
<?php
} ?>