Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82130

Display/Hide row details on click on 'TR' elements

$
0
0
If you interested to click on your TR to display a row detail, use this code to replace default "datatable" code
$('#tab_annonces tbody tr').live('click', function () {
			
	oTable =$('#tab_annonces').dataTable();
	var nTr = this;
	var nImg = nTr.childNodes[0].childNodes[0];				
			
	if (nImg.src.match('details_close'))
	{				
		/* Close this row */
		nImg.src = "../_ajax/datatables/images/details_open.png";
		oTable.fnClose( nTr );
	}
	else
	{
		/* Open this row */
		nImg.src = "../_ajax/datatables/images/details_close.png";
		oTable.fnOpen( nTr, fnFormatDetails(oTable, nTr), 'details' );
	}
} );

Viewing all articles
Browse latest Browse all 82130

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>