bonjour
j'ai un grid dont la première colonne contient des checkbox et je voudrais
récupérer les id des lignes cochées
Mais je n'y arrive pas quelqu'un a t il une idée
Merci d'avance
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 this._grid= new dojox.grid.DataGrid ( { query:{ id:"*" } }, this._divGrid ); this._grid.startup(); var structure= [ {name: ' ',field: "mod", width: '30%', editable: true, type:dojox.grid.cells.Bool}, {name:'Essai', field:"essai",width:'20%'}, {name:'nom', field:"lnom",width:'20%'}, ]; this._grid.setStructure(structure);
Partager