≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
fnGetData is not defined
fnGetData is not defined
tanit
Posts: 5
Questions: 0
Answers: 0
August 2013
edited August 2013
in
DataTables 1.9
I am using v1.9.4 . When trying to use
fnGetData
I get an error telling me that
fnGetData
is not defined. Please help.
Replies
aaronw
Posts: 89
Questions: 3
Answers: 4
August 2013
Can you please add a code sample?
allan
Posts: 65,819
Questions: 1
Answers: 10,951
Site admin
August 2013
Agreed - please see http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read
tanit
Posts: 5
Questions: 0
Answers: 0
August 2013
$('#myTable').on('click', 'tr', function(event) {
$('#myTable').fnGetData(this);
}).on('dblclick', 'td', function(event) {
$(this).css('background', '#000');
});
tanit
Posts: 5
Questions: 0
Answers: 0
August 2013
$("#myTable tbody tr").live("click", function(event){
var id = myTable.fnGetData(this)[0];
displayUserInfo(id);
});
}
tanit
Posts: 5
Questions: 0
Answers: 0
August 2013
In both cases I get javascript error that
fnGetData
is not defined. It doesn't seem to be part of v1.9.4 Can someone copy/paste that function here or point me in the right direction to download it.
tanit
Posts: 5
Questions: 0
Answers: 0
August 2013
Just found out that you need to download Table Tools separately from DataTable package download.
This discussion has been closed.
Replies
$('#myTable').fnGetData(this);
}).on('dblclick', 'td', function(event) {
$(this).css('background', '#000');
});
var id = myTable.fnGetData(this)[0];
displayUserInfo(id);
});
}