fnGetData is not defined

fnGetData is not defined

tanittanit Posts: 5Questions: 0Answers: 0
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

  • aaronwaaronw Posts: 89Questions: 3Answers: 4
    Can you please add a code sample?
  • allanallan Posts: 63,381Questions: 1Answers: 10,449 Site admin
    Agreed - please see http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read
  • tanittanit Posts: 5Questions: 0Answers: 0
    $('#myTable').on('click', 'tr', function(event) {
    $('#myTable').fnGetData(this);
    }).on('dblclick', 'td', function(event) {
    $(this).css('background', '#000');
    });
  • tanittanit Posts: 5Questions: 0Answers: 0
    $("#myTable tbody tr").live("click", function(event){
    var id = myTable.fnGetData(this)[0];
    displayUserInfo(id);
    });
    }
  • tanittanit Posts: 5Questions: 0Answers: 0
    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.
  • tanittanit Posts: 5Questions: 0Answers: 0
    Just found out that you need to download Table Tools separately from DataTable package download.
This discussion has been closed.