728x90
반응형
■ JQuery datatable tr click event
fnDrawCallback: function () {
$('#tableId tbody tr').click(function () {
// get position of the selected row
var position = $('#tableId').dataTable().fnGetPosition(this)
// value of the first column (can be hidden)
var id = $('#tableId').dataTable().fnGetData(position).id
// redirect
document.location.href = 'abcd.html?id=' + id
})
}
728x90
반응형
'JQuery' 카테고리의 다른 글
[JQuery] color picker 사용법, colorPicker js (1) | 2022.01.07 |
---|---|
[JQuery] onclick event 마우스 우클릭 이벤트 contextmenu (0) | 2021.12.15 |
[JQuery] Reorder row Datatable Drag and Drop (0) | 2021.11.19 |
[JQuery] 문자열 내 특정 검색 단어 하이라이터 효과주기 (2) | 2021.11.02 |
[JQuery] JSON 정렬 사이트, 코드 정렬 사이트 (0) | 2021.09.08 |