DataTables
Advanced interaction
features for your tables.
Editor
Comprehensive editing
library for DataTables.
Manual
Download
Examples
Manual
Reference
Extensions
Plug-ins
Blog
Forums
Discussions
Sign In
Support
FAQs
Download
Purchase
≡
Show site navigation
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: 63,381
Questions: 1
Answers: 10,449
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.
Sign In
·
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Quick Links
Categories
Recent Discussions
Unanswered
Categories
74.2K
All Categories
56
Priority support
24K
Free community support
995
General
14
Announcements
2.5K
DataTables
74
DataTables 2
1.3K
DataTables 1.10
92
DataTables 1.9
35
DataTables 1.8
9
CloudTables
2.2K
Editor
2.8K
Extensions
20
AutoFill
310
Buttons
50
ColVis
30
DateTime
68
FixedColumns
50
FixedHeader
31
ColReorder
30
KeyTable
103
Responsive
23
RowReorder
41
Scroller
163
SearchBuilder
193
SearchPanes
107
Select
26
StateRestore
22
TableTools
219
Bug reports
67
Feature requests
100
Plug-ins
11
Blog
69
Web-site
Replies
$('#myTable').fnGetData(this);
}).on('dblclick', 'td', function(event) {
$(this).css('background', '#000');
});
var id = myTable.fnGetData(this)[0];
displayUserInfo(id);
});
}