datagrid
datagrid copied to clipboard
:muscle: DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc
It's unwanted feature that grid remembers active page when grid is opened next time. Is it possible to suppress remembering of active page? Is there any workaround how to delete...
DataGrid v5.7.0 with Bootstrap 4.1.3. If DataGrid is placed in .container-fluid, in IE and Edge is always visible page horizontal scrollbar. FF, Chrome and Opera are OK. With BS 3...
Hi, It would be nice to have method for setting a column unhideabe when $grid->setColumnsHideable() is set. When I use inline add with expected column hidden, add doesn't work. Thanks
After spending an hour in documentation (https://ublaboo.org/datagrid/tree-view) I do not understand how to either remove the deleted row or redraw all subrows of certain item. Is that even possible?
Hi, I'm using Doctrine and Aggregation function like: ```php $grid->addColumnNumber('hoursDay', $this->translator->translate('templates.codes.calculatedValueDay')) ->setSortable() ->setFilterText(); $grid->addColumnNumber('hoursHalfDay', $this->translator->translate('templates.codes.calculatedValueHalfDay')) ->setSortable() ->setFilterText(); $grid->addAggregationFunction('hoursDay', new FunctionSum('hoursDay')); $grid->addAggregationFunction('hoursHalfDay', new FunctionSum('hoursHalfDay')); ``` And results are `0` (when I...
Hi, when using datagrid in tree mode I came across the situation when loading subtree takes some time. In this case there is no spinner showing up to let user...
Please add `->setHtmlAttribute()` or `->addClass()` to `addExportCallback` button. When i want to add disabled class to button, i must do this: ``` $disabled_class = 'btn btn-xs btn-default'; if ($grid->getDataSource()->getCount() ==...
Hi if i try use FilterDate or daterange on Doctrine datasource it throw ConversionException Column in datagrid is text (and filter date) and in entity is datetime 
In brange master is missing use Dibi; (DataModel.php)
Hello, i have problem with inline add/edit and selectize: 1. After click on add item the form for add is displayed. 2. I search for some string in selectize (loaded...