Antonio Antillon
Antonio Antillon
I am experiencing this same issue with `reverse_geocoded_by`, funny thing is, it was working fine, then after reloading the app code through `reload!` in the console, now I can't access...
@alexreisner well, I don't have `react-rails` in my Gemfile, my project is an API server and it is as bare-bones as possible.
Hi @marshallmassengill I would love to finally have Mongoid support for this gem :) If you want to help drive out this feature, please take a look at this gem's...
Excellent! Let me know if you get stuck anywhere, perhaps I may help. Really looking forward to what you build :)
Hey @marshallmassengill , Inside the `AjaxDatatablesRails::ORM::ActiveRecord` module, we use `Arel` to build a search query targeting all and each of the columns defined inside the `view_columns` method (regular `jQuery.dataTables` approach)...
Ok, make sure you: - add the new mongoid module to the list of module requires here: https://github.com/antillas21/ajax-datatables-rails/blob/v-0-4-0/lib/ajax-datatables-rails.rb - add the corresponding `extend` clause here: https://github.com/antillas21/ajax-datatables-rails/blob/v-0-4-0/lib/ajax-datatables-rails/base.rb#L99-L100 And that should be...
@marshallmassengill well... to be honest, as a rule of thumb, I always suggest to turn off `turbolinks` and only leave it _on_ if you know what you're doing. My recommendation...
If that's a `coffee` file, remember that indentation matters... I would also check that `#virtualMachinesTable` table would have a `data-source` attribute and that is pointing to the JSON version of...
LOL! No worries, as I said before, I am interested in finally adding support for mongoid (several people have already asked about it), so if I can help in any...
No, the error should be fixed once you add a `view_columns` method in your datatable class as it's coming from here: https://github.com/antillas21/ajax-datatables-rails/blob/v-0-4-0/lib/ajax-datatables-rails/base.rb#L123-L131 and called here: https://github.com/antillas21/ajax-datatables-rails/blob/v-0-4-0/lib/ajax-datatables-rails/base.rb#L20-L22 So, your datatable class...