ZfTable icon indicating copy to clipboard operation
ZfTable copied to clipboard

*Not supported*ZfTable 3.1. Awesome ZF2 table / grid (and much much more) generator with huge possibilities of decorating and conditioning. Integrated with DataTables, Doctrine 2, Bootstrap 2.0 and 3...

Results 49 ZfTable issues
Sort by recently updated
recently updated
newest added

Hi, First of all, thank you for this awesome module! Today I was trying absolutely to make ZfTable more responsive (hide columns on smaller devices). I easily managed to add...

i can only see the sql file for the table customers, but i cant find the sql file for the table product An exception occurred while executing 'SELECT COUNT(*) AS...

I'd like to be more flexible with filters and use other inputs besides Text and Select elements, For instance when you want to filter by Date you can use a...

``` $qb->select("s","u") ->add('from', 'Application\Entity\Schools s') ->leftJoin('s.user', 'u', 'WITH', 'u.id = s.user'); protected $headers = array( 'id' => array('tableAlias' => 's', 'title' => 'Id', 'width' => '50', 'sortable' => false) ,...

``` $this->getHeader('city')->getCell()->addDecorator('callable', array( 'callable' => function($context, $record){ if(is_object($record->school_branches)){ echo ""; print_r($record->getSchoolBranches()[0]->getCity()); die; return $record->getSchoolBranches()[0]->getCity(); }else{ return ''; } } )); ``` ``` print_r($record->getSchoolBranches()[0]->getCity()); // it prints correct value ``` but...

Hi, The table alias "." is included into order even if the field is a composed one. sample: For `CONCAT(u.lastName, ' ', u.firstName) staff_name` Order looks like this: `ORDER BY...

I love ZfTable! It would be nice to config the number of pages in range. Right now it seems that the value is fixed to 10. I am using a...

Hi, I see no configuration way to sort descending the rows (by example by ID). There is a out of the box way ? The other option would be to...