How can I get 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/11
10:42 UTC
Read the original article
Hit count: 244
I'm using a YUI DataTable with a checkbox column like this:
var myColumnDefs = [
{key:"check", label:'', formatter:"checkbox"},
{other rows...}
];
How can I iterate over the checked columns in my DataTable?
© Stack Overflow or respective owner