Bläddra i källkod

Correctif sortable with tree

packProduct
Fab 2 år sedan
förälder
incheckning
84b5cb8367
1 ändrade filer med 14 tillägg och 1 borttagningar
  1. +14
    -1
      Field/AssociationField.php

+ 14
- 1
Field/AssociationField.php Visa fil

@@ -78,6 +78,15 @@ final class AssociationField implements FieldInterface
return $this;
}


public function addOrderBy($field, $direction ='ASC') : self
{
$this->queryBuilderParameters['orderBy'][] = $field;
$this->queryBuilderParameters['orderByDirection'][] = $direction;

return $this;
}

public function initQueryBuilder(): self
{
$param = $this->queryBuilderParameters;
@@ -96,7 +105,11 @@ final class AssociationField implements FieldInterface
$qb->andWhere('e.status = :status')->setParameter('status', $param['status']);
}

$qb->orderBy('e.position', 'ASC');
if (isset($param['orderBy'])) {
foreach ($param['orderBy'] as $i=>$field) {
$qb->addOrderBy('e.'.$param['orderBy'][$i], $param['orderByDirection'][$i]);
}
}

/*if (isset($param['devAlias'])) {
$qb->andWhere('e.devAlias = :devAlias')->setParameter(

Laddar…
Avbryt
Spara