"columns" : [
{"data" : "no","defaultContent":""},
{"data" : "name","defaultContent":""},
{"data" : "user_id","defaultcontent":""},
{"data" : "",
render: function(data,type,row){
return "<button id='btn_info' type='button' class='btn' onClick='openInfo("+row.user_id+")'>상세정보</button>";
}
}
],
function openInfo(user_id) {
// Table 에서 받은 user_id 출력
console.log(user_id);
}
'JavaScript&Platform > datatable' 카테고리의 다른 글
[datatable] table header 를 html tr 없이 정의 하기 (0) | 2022.11.24 |
---|---|
[Datatable] Jquery Datatable DOM (0) | 2018.10.08 |