How can I find the checked rows in a YUI DataTable?
Posted
by Justin Tanner
on Stack Overflow
See other posts from Stack Overflow
or by Justin Tanner
Published on 2010-06-11T10:38:15Z
Indexed on
2010/06/13
3:32 UTC
Read the original article
Hit count: 473
I'm using a YUI DataTable with a checkbox column like this:
var myColumnDefs = [
{key:"check", label:'', formatter:"checkbox"},
{other columns...}
];
How can I iterate over all the rows that have been checked?
© Stack Overflow or respective owner