Project

General

Profile

« Previous | Next » 

Revision 77e12c85

Added by Tomer Brisker over 7 years ago

Fixes #13047, #16291 - Upgrade datatables and move it to npm

View differences:

app/helpers/compute_resources_vms_helper.rb
{ :table => 'inline' }
end
content_tag :table, :class => table_css_classes, :data => data do
content_tag :table, :class => table_css_classes, :width => '100%', :data => data do
yield
end
end
......
# Really counting vms is as expansive as loading them all, especially when
# a filter is in place. So we create a fake count to get table pagination to work.
def ovirt_fake_vms_count
params['iDisplayStart'].to_i + 1 + [@vms.length, params['iDisplayLength'].to_i].min
params['start'].to_i + 1 + [@vms.length, params['length'].to_i].min
end
def ovirt_vms_data

Also available in: Unified diff