Displaying 1 result from an estimated 1 matches for "bjqueryui".
Did you mean:
  jqueryui
  
2013 Jan 22
1
rails datatables refresh javascript
...don’t see any 
request coming into my webserver for refreshes and hence, no refreshes on 
the web page itself. 
Here''s my code:
app/assets/javascripts/comments.js.coffee
[code]
jQuery ->
  $(''#comments_id'').dataTable
    sPaginationType: "full_numbers"
    bJQueryUI: true
    bProcessing: true
  setInterval(''$("#comments_id").dataTable().fnDraw()'', 1000);
[/code]
                
And here is the code that gets generated on the client side:
[code]
(function() {
  jQuery(function() {
    $(''#comments_id'').dataTable...