CodeIgniter4-DataTables icon indicating copy to clipboard operation
CodeIgniter4-DataTables copied to clipboard

Results 19 CodeIgniter4-DataTables issues
Sort by recently updated
recently updated
newest added

I have problem with use distinct() error in file DataTableQuery.php line 101 $value = $row->{$column->alias}; "Undefined property: stdClass::$f.firmname" temporarily fixed it yes but i don't know if it's correct ```...

bug

Hello, I would like to request the debug feature, as it exists in version 3, when enabled, returns "baseSelect" and "filteredSelect". Thanks

Just added a second optional parameter to the DataTable::of. Its default value is `'id'`.

**Describe the bug** In your code and contained docblocks you use e.g. (from file DataTable.php) ```php namespace Hermawan\DataTables; /** * Make a DataTable instance from builder. * * Builder from...

bug

This is from my friend's discovery, thanks to @muhazmi @FebriTahta for reporting this, I decided to fix it by myself but i'm stuck on searching and thinking what's should i...

It looks like the string inside SELECT function was not converted correctly, showing an error that the column does not exist as a result here is my code ![image](https://github.com/hermawanramadhan/CodeIgniter4-DataTables/assets/44340813/665c5766-dbc6-4a19-b84b-bcb608979114) Here...

bug

`$builder = $this->worktimes->builder('worktimes w') ->select('w.id, w.created_at, w.work_at, w.time_at, CASE WHEN w.object = "firms" THEN "Firma" WHEN w.object = "persons" THEN "Osoba" END as object, CASE WHEN w.object = "firms" THEN...

bug

**Bug Description** All data from query result wont simply return the all column of the data, resulting only show the data which is came from add() method (but the amount...

bug

is it possible to Send a response with a csrf token so that it can be obtained in the ajax process? or is there another way of implementing ```php /**...

Hi there, I'd like to understand the "alias" option. I can't seem to find any documentation or example. Could you enlighten me a bit? Thanks!