Bonjour,

Je veux mettre en place une double liste comme sur le montre l'image suivante:



En effet j'ai une entité Company dont le code est en dessous qui contient une relation Many-to-many avec une entité City , c'est cette dernière que je veux exploiter dans ma double liste comment je peux crée ce type de champ ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
    class Company{
 
    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;
 
    /**
     * @ORM\Column(name="name", type="string", length=255)
     */
    protected $name;
 
 
    /**
     * @ORM\ManyToMany(targetEntity="City", cascade={"persist"})
     */
    protected  $city;
 
 
 
 
    /**
     * Constructor
     */
    public function __construct()
    {
        $this->city = new \Doctrine\Common\Collections\ArrayCollection();
    }
 
    /**
     * Get id
     *
     * @return integer 
     */
    public function getId()
    {
        return $this->id;
    }
 
 
    /**
     * Add city
     *
     * @param \Company\AdminBundle\Entity\City $city
     * @return Company
     */
    public function addVille(\Company\AdminBundle\Entity\City $city)
    {
        $this->city[] = $city;
 
        return $this;
    }
 
    /**
     * Remove city
     *
     * @param \Company\AdminBundle\Entity\City $city
     */
    public function removeCity(\Company\AdminBundle\Entity\City $city)
    {
        $this->city->removeElement($city);
    }
 
    /**
     * Get city
     *
     * @return \Doctrine\Common\Collections\Collection 
     */
    public function getCity()
    {
        return $this->city;
    }
 
    /**
     * Set name
     *
     * @param string $name
     * @return Company
     */
    public function setName($name)
    {
        $this->name= $name;
 
        return $this;
    }
 
    /**
     * Get name
     *
     * @return string 
     */
    public function getName()
    {
        return $this->name;
    }
 
    public function __toString()
    {
 
        return (string) $this->name;
    }
}

Merci