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

for example > Time.zone.parse("2018") Exception: ArgumentError: argument out of range

I have one model that I establish a connection with through Amazon AWS RDS. In my Events model, I have a scope as follows: ``` scope :scope_subquery, -> { table1...

I have something like a Products table and a Sales table. So a product has many sales. I would like to filter for products with total sales value over X....

If column is bigint, then datatable considers it a string. Empty string. ``` @view_columns ||= {barcode: { source: 'Product.barcode', cond: :eq, orderable: false }} ``` barcode = 123123123 ``` SELECT...

bug

https://github.com/jbox-web/ajax-datatables-rails/blob/66e81baa3ca373248e706cc964f9adcc748e938d/lib/ajax-datatables-rails/datatable/column/search.rb#L63 Why such a harsh limitation? What about `Float` comparison?

Is there any way I can configure AjaxDatatablesRails to sort based on a model method? It's working great on all the other columns based on database columns, but I get...

enhancement
question

I'm tring to implement index column, If we see the example https://datatables.net/examples/api/counter_columns.html we just need to throw empty and add this line ``` $(document).ready(function() { var t = $('#example').DataTable( {...

enhancement

DataTables' _Smart Searching Feature_ is enabled in the [Global Search](https://datatables.net/reference/api/search()) but it seems not to be enabled in the [Column Search](https://datatables.net/reference/api/column().search()). In DataTables' Non Server-Side Processing mode, Smart Search is...

enhancement

Hi. Let's say i have model `User(id, first_name, last_name)` and an instance method called `full_name` In `data` method I can use record.full_name in order to combine `first_name` and `last_name`. But...

When debugging, get_raw_records is called three times. How can I bypass such behavior? For example the logs show: ``` def get_raw_records puts "Raw Records" User.all end ``` Logs: ``` Raw...