disable the click functionality in the data Table in for particular columns
disable the click functionality in the data Table in for particular columns
kailasapu
Posts: 7Questions: 0Answers: 0
i am fed up with all this tables, but finally i go the answer here, with the data table plug in. nice one.
i need some modification,
in my table i have a columns like check box(1st column) ,No(second column),name 1,name 2,name 3......finally button(10th column), i need to disable the click functionality for those columns.when i click the row the i wrote some J Query to get the values, now i am facing if i click the check box also i am getting the same J Query call.
let me now how to disable the functionality for that.
$('.clcikedRow').click(function () {
var Name1=$(this).find('#columnID').text();
alert(Name1);
});
thanks & regards
kailasapu
i need some modification,
in my table i have a columns like check box(1st column) ,No(second column),name 1,name 2,name 3......finally button(10th column), i need to disable the click functionality for those columns.when i click the row the i wrote some J Query to get the values, now i am facing if i click the check box also i am getting the same J Query call.
let me now how to disable the functionality for that.
$('.clcikedRow').click(function () {
var Name1=$(this).find('#columnID').text();
alert(Name1);
});
thanks & regards
kailasapu
This discussion has been closed.
Replies
Allan