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

use of fnGetSelectedData method

$
0
0
Recently I wanted to select a data row and click on a tabletool plugin button which had to take me to a page based on the selected row's id. I achieved this with the help of Allan. Excellent support. Thank you! I am posting this here in case anyone needed help. This was achieved using fnGetSelectedData method.
{ 
	"sExtends": "text",
	"sButtonText": "My details",
	"fnClick": function (nButton, oConfig) {
		var sData = this.fnGetSelectedData(oConfig);
		if(sData.length == 1) {
			var rowId = sData[0].rowId
			var href = "${pageContext.request.contextPath}/admin/my_home.jsp?rowId=" + rowId;
			$('#ui-tabs-2').load(href);
			return false;
		} 
	}
}

Viewing all articles
Browse latest Browse all 82122

Trending Articles



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