Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # jQuery Datatables Examples
  2.  
  3. Table of contents
  4. * [Promises](#promises)
  5.  
  6. ## Promises
  7. ```javascript
  8. $('#example').DataTable({
  9. ajax: function (data, callback, settings) {
  10. YourService.yourServiceMethod().then(function (response) {
  11. callback(response);
  12. });
  13. }
  14. });
  15. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement