HI,
Error: TypeError: k is undefined
Source File: http://xxx.xxx.xxx.xxx/xxxxxx/xxxxxx/js/jquery.dataTables.min.js
Line: 126
Error: TypeError: k is undefined
Source File: http://xxx.xxx.xxx.xxx/xxxxxx/xxxxxx/js/jquery.dataTables.min.js
Line: 126
k.asSorting[0]);c=0;for(d=k.asSorting.length;c<d;c++)if(g.aaSorting[a][1]==k.asSorting[c]){g.aaSorting[a][2]=c;break}}P(g);Ua(g);a=h(this).children("caption").each(function(){this._captionSide=h(this).css("caption-side")});b=h(this).children("thead");0===b.length&&(b=[l.createElement("thead")],this.appendChild(b[0]));g.nTHead=b[0];b=h(this).children("tbody");0===b.length&&(b=[l.createElement("tbody")],this.appendChild(b[0]));g.nTBody=b[0];g.nTBody.setAttribute("role","alert");g.nTBody.setAttribute("aria-live",
<table border="1" id="example" class="table table-striped table-bordered bootstrap-datatable "> <tr> <th width="">No</th> <th width="">Staff Name</th> <th width="">Status</th> <th width="">No</th> <th width="">Staff Name</th> <th width="">Status</th> <th width="">No</th> <th width="">Staff Name</th> <th width="">Status</th> </tr> <tbody> <tr> <?php $i = $StaffCnt = 0; foreach($AssData as $row) : extract($row); ?> <td width=""><?php echo $NoNum; ?></td> <td width=""> <?php echo getStaff($StaffID); ?> </td> <td width=""> <?php echo $Status; ?> </td> <?php if((($i % 3) == 2)) { ?> </tr> <tr> <?php } $i++; ?> <?php endforeach; ?> </tr> </tbody> </table>