Bonjout,
j'ai une dojox.Grid.DataGrid :
je veux lier les deux dojox.grid.cells.Select de ma grid
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 <table dojoType="dojox.grid.DataGrid" store="store" jsid="grid" id="grid" style="width: 64em; height: 30em;" rowSelector="20px" clientSort="true" > <thead> <tr> <th field ="champs2" formatter ="formateur" width ="150px" cellType ="dojox.grid.cells.Select" options = "..." values = "..." editable = "true" > champs2 </th> <th field ="champs3" width ="150px" editable ="true" cellType ="dojox.grid.cells.Select" options = "...." values = "..." > champs3 </th> </tr> </thead> </table>
ou
remplacer dojox.grid.cells.Select par des Dijit.form.Select
Y'at-il quelqu'un qui peut m'aider
merci d'avance
Partager