cbichis

Results 23 comments of cbichis

I have the same issue. If there is focus on a text input box the text is typed in and the input data it seems to be corrupted (getting some...

So I think the best idea is to: 1. Rename the current column to Total count 2. Add a new column called: Filtered count (which should be = to total...

Also, this seems to colide with emptyOption from Zend\Form\Element\Select which is adding the NULL actually...

Yes, I confirm this as a bug, your fix seems to work fine for now.

Sending the ZPL using sockets will work, no need of command line and cups.

This row should be freezed to bottom of results, no matter what page we are.

Better compatibility with Doctrine (see the last issues I posted). Also, some totals: https://github.com/dudapiotr/ZfTable/issues/73 https://github.com/dudapiotr/ZfTable/issues/74

Is that working for you ? I don't think I can mass select the u entity, I need to only fetch from second table a CONCAT(u.first_name, ' ', u.last_name) staff_name

I found a workaround. ZfTable\Source\DoctrineQueryBuilder getPaginator() should be modified as below: ``` public function getPaginator() { if (!$this->paginator) { $this->order(); $doctrinePaginator = new ORMPaginator($this->query); $doctrinePaginator->setUseOutputWalkers(false); $adapter = new DoctrineAdapter($doctrinePaginator); $this->paginator...