Front/JS & jQuery

[datatables] createdCell로 tr에 Class 적용하기

오선지♬ 2023. 10. 23. 19:15
728x90
반응형
createdCell :  function(td,cellData, rowData, row, col){
					if(!rowData['rdYn']){
			    		$(td).closest('tr').addClass('bg-ylwbg');
			    		$(td).closest('tr').find('td').addClass('bold');
					}
                }

 

리스트목록 중에 읽음여부가 true 이면 tr의 배경색과 안에 글씨를 두껍게 바꿔야하는데,

모든 td에 효과를 줘야하는데 createdCell을 적요한 컬럼 뒤에는 해당 함수가 적용이 안되는것이었다.

cellData로 하지 않고 rowData로 설정하여 맨 마지막 컬럼에 createCell 을 쓰니까 모든 컬럼에 효과가 다적용되었다!

728x90
반응형