Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. dayRender: function (date, cell)
  2. {
  3. $.ajax({
  4. type: 'GET',
  5. url: 'index.php/daysTerms',
  6. dataType: 'json',
  7. cache: true,
  8. success: function (daysTerms) {
  9. $.each(daysTerms, function(index, item) {
  10. if (date.isSame(item)) {
  11. cell.css("border","2px solid #2E6E9E");
  12. }
  13. });
  14. },
  15. error: function() {
  16. // alert('Error. no colors background');
  17. }
  18. });
  19. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement