mistake in wanting to get data from a column

mistake in wanting to get data from a column

tumbero_xtumbero_x Posts: 63Questions: 0Answers: 0
edited March 2012 in General
Hello friends!
when running this code gives me the following error

Uncaught TypeError: Can not call method 'toUpperCase' of undefined
I'm going crazy and can not be
someone could help me?
greetings and thank you very much
[code] "fnDrawCallback": function() {
$(".fr").click(function() {
var position = oTable.fnGetPosition($(this).parents("tr"));
var id2 = oTable.fnGetData(position)[0];
alert(id2)
});
}, [/code]

Replies

  • tumbero_xtumbero_x Posts: 63Questions: 0Answers: 0
    Solved!!!

    [code] "fnDrawCallback": function() {
    $(".fr").click(function() {
    var pos = oTable.fnGetPosition(this.parentNode);
    var id2 = oTable.fnGetData(pos)[0];
    alert(id2)
    });
    }, [/code]
    greetings
This discussion has been closed.