cbichis
cbichis
Hi, It seems to me a major issue on using Query Digest UI is the fact when filtering the Count column details are not changing based on filter/selection. Currently no...
On Form\Element\Proxy.php ``` if ($this->displayEmptyItem) { $options[''] = $this->getEmptyItemLabel(); } ``` Should be changed to: $options[] = array('label' => $this->getEmptyItemLabel(), 'value' => ''); Otherwise the emptyLabel wont be displayed properly...
Hi, For some printers is needed to send the file as raw. By example from terminal I send using this: `lpr -P Zebra-Technologies-ZTC-TLP-2824-Plus -o raw path/to/label.zpl` Which works perfectly, printing...
For AbstractRestfulController we should have more details, including a sample route. By example there is an issue with a normal route config if is not nullified the default action. Without...
Hi, It seems we are affected by the same problem as http://www.doctrine-project.org/jira/browse/DDC-1927 By example for this source: ``` protected function getSource() { $queryBuilder = $this->getObjectManager()->createQueryBuilder(); $queryBuilder ->select('e.id id') ->from('Application\Entity\Package', 'e')...
Hi, The link decorator is not compatible with Doctrine. The code should be updated to something similar with: ``` public function render($context) { $values = array(); if (count($this->vars)) { $actualRow...
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...
See issue #78 for details.
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...
Hi, If for a header we set the width and there is no filter (either text or select) the column size is adjusting according to specified width. However, for headers...