728x90
반응형
1
2
3
4
5
6
7
8
9
10
|
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
})
}
|
cs |
728x90
반응형
'개발 > 웹개발 기본가이드' 카테고리의 다른 글
제이쿼리 노드 찾기 (0) | 2020.09.05 |
---|---|
웹개발 tiles 설정하기 (0) | 2020.08.29 |
Eclipse Dynamic Web Project로 Spring Maven 프로젝트 만들기 (8) | 2020.02.26 |
STS (Spring Tool suite 4) 와 egovframework 사용하기 (0) | 2019.12.24 |
스프링과 메이븐의 비유적 개념 (1) | 2019.10.14 |