Arjay Angeles

Results 436 comments of Arjay Angeles

Here is a quick POC for `editColumn` to give you an idea of possible implementation. On the Column class, ```php protected array $columnDefs = [ 'edit' => [], ]; public...

@alexc-jeromes thank you for taking your time in reviewing this issue. Can you please submit a PR, I will review it asap.

This is DB related and not on the package. Anyway, I don't have much experience with json handling in DB. But a wild guess might be to use a virtual...

You can use `withCount` or `withAvg` in your query and then include it in the columns. Or use sub select query. ```js columns: [ {data: 'stat1_total', searchable: false} ] ```

Yes please, a PR would be much appreciated. Thanks!

Not sure, but I think this should be on the database level character set / collation settings?

I've done a quick research on this issue, and it still goes back to DB Collation settings. See https://stackoverflow.com/questions/29570831/mysql-distinct-and-accents There is also a DT Util https://datatables.net/reference/api/DataTable.util.diacritics(), but I think it's...

@copilot open a new pull request to apply changes based on the comments in [this thread](https://github.com/yajra/laravel-datatables/pull/3262#pullrequestreview-3475604876)

Yes, you can use raw TNS to connect. Are you using a persistent connection with SERVER=POOLED? I just read the link and seems like it's nice to have this implemented...

@NimaAzizii I created PR https://github.com/yajra/laravel-datatables/pull/3262. Please check if it works for you. PS: The PR is created via cursor and might not be accurate. I haven't used the HasManyDeep package...