DatatablesBundle icon indicating copy to clipboard operation
DatatablesBundle copied to clipboard

This Bundle integrates the jQuery DataTables plugin into your Symfony application.

Results 65 DatatablesBundle issues
Sort by recently updated
recently updated
newest added

Hello, https://github.com/stwe/DatatablesBundle/blob/5cca7f74c24017243616186e6fe5705709a5b98c/Datatable/Filter/DateRangeFilter.php#L43 ``` /** * {@inheritdoc} */ public function addAndExpression(Andx $andExpr, QueryBuilder $qb, $searchField, $searchValue, $searchTypeOfField, &$parameterCounter) { list($_dateStart, $_dateEnd) = explode(' - ', $searchValue); $dateStart = new DateTime($_dateStart); $dateEnd...

improvement

As mentioned in #700 this PR adds support for join conditions.

I've found some issues with double nested relation between entities. Entity "SiteVisit" has ManyToOne relation with "Ip", and "Ip" has ManyToOne relation with "Company". Everything is working fine, but when...

added ability to set initial search as array with multiple values for Select & Select2 filters

There seems to be an issue with using column filtering right after the column itself is appended using Column Visibility. ### Steps to reproduce 1. Open a table with not...

I have a twig extension(a filter) for payMethod and status of a bill. How can i use them in a table? Twig Extension: ``` `class AppBillExtension extends AbstractExtension { public...

I'd like to use the [FixedColumns](https://datatables.net/extensions/fixedcolumns/) extension, but that requires changing `\Sg\DatatablesBundle\Datatable\Extensions` and `Resources/views/datatable/extensions.html.twig`. I can create a PR to add this feature, but I feel like this shouldn't be...

feature
refactoring
Help wanted

Hi! I think I found a bug, but I'm not certain. I have a table with filters: ![screenshot_2](https://user-images.githubusercontent.com/39051332/42277323-447f3d12-7f97-11e8-8aa8-786848593c97.png) When I write a name the result is ok, but next when...