[eluser]paulopmx[/eluser]
[quote author="davgino" date="1207314237"][quote author="paulopmx" date="1207274961"][quote author="davgino" date="1207273538"]Hi,
How i find id of row?[/quote]
is it the selected row? or any row.[/quote]
at both of them: the id of the selected row and array of the id's selected.[/quote]
The id of the data is stored as id of the row it self with the format "row"+id;
ok say you want to get the id of a selected row from a table with class 'flexme'
Code:
$('.flexme tr.trSelected').each
(
function ()
{
rowid = this.id.substring(3);
//use row id data here
}
);
of course if you want to just get all just remove the word 'trSelected' in the jQuery Selector.