Robin
Robin
This PR can be closed, the issue seems to be solved with newer versions of FOSRestBundle.
Try using one of the [callbacks](https://github.com/stwe/DatatablesBundle/blob/v1.0/Resources/doc/callbacks.md) (maybe [`pre_draw_callback`](https://datatables.net/reference/option/preDrawCallback)?) to override the respective datatable setting (using js).
Note: this PR is still active, the account was just transformed into an organization account. I'm managing the account.
Note: this PR is still active, the account was just transformed into an organization account. I'm managing the account.
You could implement a custom column, which renders a custom template (see #727 for more on that). Then just use your twig filter in that template.
Unless you are trying to debug a vendor bundle, never make any changes to vendor files ;-) Your changes would be overwritten anyway when updating the vendor libraries. Create the...
Well, as an example look at the column template of the bundle: ``` # vendor/sg/datatablesbundle/Resources/views/render/column.html.twig {{ data }} ``` So you created a custom template looking like that and your...
The html is in the file `@App/Columns/payMethod.html.twig`, right? Is the twig extension registered successfully, did you try using it in a simple view? In theory this approach should work. I...
We're experiencing the same problem when mocking Clock `mockkStatic(Clock::class)`. Downgrading mockk to `1.13.3` works for now (with Spring Boot `3.0.5`, Kotlin `1.8.10` and JDK `17.0.4.1`).