ajax-datatables-rails icon indicating copy to clipboard operation
ajax-datatables-rails copied to clipboard

A wrapper around DataTable's ajax methods that allow synchronization with server-side pagination in a Rails app

Results 59 ajax-datatables-rails issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi there, Currently, due to the way the current application stacks are structured, I need to do a custom join in my data fetch query but I find that when...

I am having order table and invoices. i mean one order having multiple invoice like invoice 1,2,3. i need to show the orders table like following order_id order_name invoice_id invoice_name...

Hi, Thank you for ajax-datatables-rails - it is awesome! I have a database column called `study_time`, that has string values of "0-5", "6-10", "11-20", "21-40", "40+", and `nil`. Users are...

Is there any way to do this? I can't implement the counter cache because the where clause is used when retrieving a count. I saw similar issues but no answer...

If the activerecord query that feeds the datatable uses group it totally breaks paging. I assume this is because `.count` is being called on the result set at some point...

Datatables gives you the ability to map data like so: ``` { '0' => { 'display' => submission.date_and_time, '_' => submission.date_and_time, 'sort' => submission.timestamp }, '1' => submission.submitter_initials, '2' =>...

Hi, I am facing in writing the joins or includes complex queries for this gem. Models:- class Contact < ApplicationRecord has_many :contact_contact_categories has_many :contact_categories, through: :contact_contact_categories end class ContactCategory <...

We successfully used `ajax-datatables-rails` with a local ActiveRecord resource. We need to extend it in order to request JSON Api compliant resources. For several projects, we have used https://github.com/JsonApiClient/json_api_client This...

Hi I've followed the documentation step by step but getting the above error while rendering the JSON. Ruby 2.3.1 Rails 4.2.1 `gem 'active_model_serializers', '~> 0.10.10'` Here is my datatable class...

I have many to many relationship with tracks and right holders. This is as follow Tracks -> RightHolderTracks -> RightHolders I had join the table with Tracks.includes(:right_holders) I tried searching...