Please let me know How to call a function on click of specific coloum data in datatable.
The below sample i was trying but it is not working…
function getTicketsReport() {
var ticketsData =
{
view : "datatable",
id : "accDataList",
select : "cell",
multiselect : true,
//hidden:true,
clipboard : "selection",
columns : [
{
id : "id",
header : "Id",
template : "#id#",
hidden : true
},
{
editor:"checkbox",
id : "chkbox",
options:bool_set,
header : "Id",
template:"{common.checkbox()}",
/* hidden : true */
width : 100
},
{
id : "ticketId",
header : "Ticket Id",
template : "#ticketId#",
/* hidden : true */
width : 150,
click:function(){
viewTicketInfo();
}}