Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <table id="RegSrc2" class="table table-bordered table-striped">
  2. <thead>
  3. <tr>
  4. <th><b>File Number</b></th>
  5. <th><b>Patient Name</b></th>
  6. <th><b>DOB</b></th>
  7. </tr>
  8.  
  9. </thead>
  10. <tbody></tbody>
  11. <tfoot>
  12. <tr>
  13. <th><b>File Number</b></th>
  14. <th><b>Patient Name</b></th>
  15. <th><b>DOB</b></th>
  16. </tr>
  17. </tfoot>
  18. </table>
  19.  
  20.  
  21. $(document).ready(function () {
  22. var $table = $('#RegSrc2');
  23. $table.dataTable({
  24. bProcessing: true,
  25. "serverSide": true,
  26. "sAjaxSource": $table.data('../CONFIG/WebSerTblsSearch.asmx/SrcTblRegx'),
  27. })
  28. });
  29.  
  30.  
  31.  
  32. my data output is
  33. <anyType xmlns:q1="http://www.w3.org/2001/XMLSchema" xmlns:d1p1="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/" d1p1:type="q1:string">
  34. {"Table":[{"Filenum":15112777,"FullName":"marwam saleh moh saleem","DOB":"2015-11-26T00:00:00"}]}
  35. </anyType>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement