dojox
»
grid
»
selection
» getSelectedCount
dojox.grid.selection.getSelectedCount
dojo.require("dojox.grid._grid.selection");
defined in dojox/grid/_grid/selection.js
Usage
function ()
(view source)
var
c =
0
;
for
(
var
i=
0
; i
<
this.
selected
.
length
; i++
)
{
if
(
this
.
selected
[
i
]
)
{
c++;
}
}
return
c;