Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the originalTR to the record object #230

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion jquery.dynatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
pushState: true,
search: true,
recordCount: true,
perPageSelect: true
perPageSelect: true,
copyTRClass: false
},
table: {
defaultColumnIdStyle: 'camelCase',
Expand Down Expand Up @@ -675,6 +676,11 @@
tableRecords.each(function(index){
var record = {};
record['dynatable-original-index'] = index;
if (settings.features.copyTRClass) {
if ($(this)[0].className && $(this)[0].className != "") {
record["originalTRClass"] = $(this)[0].className;
}
}
$(this).find('th,td').each(function(index) {
if (columns[index] === undefined) {
// Header cell didn't exist for this column, so let's generate and append
Expand Down