Monday, November 23, 2015

JQUERY how to get clicked tr or td table's ID ??

Use the below line of code .

$(this).closest('table').attr('id');

Sunday, November 22, 2015

DATATABLE : how to remove pagination if no record found from the database

Add following line of code into your datatable definition 

"fnDrawCallback":function(oSettings){
var totalFoundRecords = oSettings._iRecordsDisplay;
if((totalFoundRecords!=null && totalFoundRecords>0) == false){
$(oSettings.nTableWrapper).find('.dataTables_paginate').hide();
}
},

Scrum and Scrum master

Scrum  Scrum is a framework which helps a team to work together.  It is like a rugby team (the scrum name comes from rugby game). Scrum enco...