I like to keep my markup and style out of the controller and Models.
In this example Im adding 2 Data base Table column to one View Table with the Project name as the column and the manager as a small span. How can I recreate this with the json technic.
Example Data:
Table
Project | Date | Actions Project Name, project manager | 11/20/2011 | edit, change status action, delete
Would it make sense to memoize the User.count call? I'm not super familiar with memoization, so I'm not sure whether it would benefit this specific situation.
Not really since it isn't being used elsewhere in the class. Keep in mind that the memorization is only valid for the lifecycle of the request and any further requests would no longer have the calculations stored.
How do you deal with enums in this setup? Say I have an integer column and I use enums in it - 0 is "no" and 1 is "yes". How do you filter for the strings rather than the integers within the table?
Great question. It really depends on the complexity to which you've modified the datatables. If you are using server side data and a full text engine, then I would store the 'yes' and 'no' values as part of the indexed data.
If you're using Rails 5.1.x then you could also use a virtual attribute to search on instead of the integer column.
Thanks for the quick reply. I am indeed using Rails 5.1.x. Do you have an example in the context of your demo in how I could accomplish this with virtual attributes? Never heard of these and am reading about them now.
Thanks! Very useful. I understand the concept, but I'm still not sure what the best approach would be to use virtual attributes against an integer column and somehow extract a string from that. Would I need to define a virtual attribute for each integer that I have mapped as an enum? In my case I have up to 10 enums in some columns.
Thanks for the great video! It has inspired me to create a gem that will make it possible for other rails developers to include jquery datatables into their project with serverside processing.
Really cool! Another idea for your gem, allow a block with the listing of columns. Kind of like a small DSL for the ordering and selection of columns.
I've been working on a project which takes the ideas of the Datatables and is basically a full rewrite; allowing pagination, individual column searching, column selection and ordering, saving custom reports and setting defaults, etc. It's a pretty large library so far, but not ready to share with the world.
I'm wondering how would code change in `app/datatables/user_datatable.rb` to have search/filter for specific column?
I believe changes should be done somewhere here: ` users = users.where(search_string.join(' or '), search: "%#{params[:search][:value]}%")`
I'd be happy for any hint. Thank you.
Thank you very mucho. It was very useful. However, I have a question about how to define columns if we have associations.
For instance, my user object has one country, so if I want to see the country name I would do: user.country.name (country is another table).
How should I define the columns method for that? I tried:
def columns
%w(first_name, country.name)
end
But it's not correct. Thank you very much in advance.
that definitely adds a level of complexity, but is solvable. the problem comes into play when you start searching. you would need a joins and search on the country as well. you could add a hash into the columns like `country: :name` and modify the search.
Hi. I found your post very helpful and I thank you very much for taking time to build such clear and helpful posts.
I have an issue that only started to happen after I modified my datatable to server side processing following the instructions in your video.
What started to happen was this.
I have a webapp with a header with some menu options. One of the options is a link to the users index page.
If I create or update a user, my application redirects to that user show page - let's assume I just created user #10. So after the creation I'm at url /users/10.
This is fine up until this point. When I click on the users index link to see all the users is when the issue happens.
I can see in the logs that the correct controller and method is called - users controller and index method.
The page starts to load, I see the title of the page and the columns headers, but then I get and error - the JSON response is not what it was expected.
In the logs, after the call for the index page, another request was made (same url as the detail of the user with some extra params: ?draw=1....). So it starts a GET to /users/10?draw=1...
I do not know where this call is made. I have no idea what to do and it would be great if you could provide some help about this.
Thanks in advance.
Regards,
Afonso Pimentel
how to add links for show and edit in each row of the table.
i'm getting this error undefined method `admin_client_path' for #<0x007fbd3fa7fd38>
when i tried to add link this -> links << link_to('Show', admin_client_path(client), method: :get, role: 'button', class: 'btn btn-primary btn-sm blue-button')0x007fbd3fa7fd38>
Well, I've managed to get the buttons to show up. I just had to adjust the DOM property with BLfrtip.
```
dom: 'Blfrtip',
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print'
]
```
Hope someone can help out. I have my code exactly the same. Running ruby '2.3.0' and rail 5.2.2.
When I go to my users.json path I get `undefined method '[]' for nil:NilClass` on:
`
def sort_column
columns[params[:order]['0'][:column].to_i]
end
`
and actually everything that uses the `params`. any help is much appreciated!
can you make a part 2 of this where you add style to the content and links. Thank you
You should be able to simply add a class attribute to the link_to methods as you normally would to get the styling.
I like to keep my markup and style out of the controller and Models.
In this example Im adding 2 Data base Table column to one View Table with the Project name as the column and the manager as a small span. How can I recreate this with the json technic.
Example Data:
Table
Project | Date | Actions
Project Name, project manager | 11/20/2011 | edit, change status action, delete
<tr>
<td class="cell_stuff" ><%=link_to project. project, class: "stuff_link"%>
<span class="stuff"> <%= project.manager.full_name%> </span>
</td>
I see, keep in mind that the UsersDatatable is its own class and nor really part of the model or controller.
You could extract out the contents of the data method into its own class which I would probably do for larger tables.
As far as the classes on the td tags, that should be possible to do with their API. I'll look into it.
Perfect. will check that out.
FYI. Check your site permisiĆ³n Display UI view. I can see the Delete Edit on your comment.
Thanks for the heads up. It wouldn't work since I'm doing server side authorization, but definitely shouldn't display.
Would it make sense to memoize the User.count call? I'm not super familiar with memoization, so I'm not sure whether it would benefit this specific situation.
Not really since it isn't being used elsewhere in the class. Keep in mind that the memorization is only valid for the lifecycle of the request and any further requests would no longer have the calculations stored.
How do you deal with enums in this setup? Say I have an integer column and I use enums in it - 0 is "no" and 1 is "yes". How do you filter for the strings rather than the integers within the table?
Great question. It really depends on the complexity to which you've modified the datatables. If you are using server side data and a full text engine, then I would store the 'yes' and 'no' values as part of the indexed data.
If you're using Rails 5.1.x then you could also use a virtual attribute to search on instead of the integer column.
Thanks for the quick reply. I am indeed using Rails 5.1.x. Do you have an example in the context of your demo in how I could accomplish this with virtual attributes? Never heard of these and am reading about them now.
You can check out https://www.driftingruby.com/episodes/virtual-columns-in-mysql and https://www.driftingruby.com/episodes/virtual-columns-with-json-data-types on Virtual Columns.
Thanks! Very useful. I understand the concept, but I'm still not sure what the best approach would be to use virtual attributes against an integer column and somehow extract a string from that. Would I need to define a virtual attribute for each integer that I have mapped as an enum? In my case I have up to 10 enums in some columns.
Just a fyi - I ended up creating my own custom select boxes that handle filtering for my enum columns.
Thanks for the great video! It has inspired me to create a gem that will make it possible for other rails developers to include jquery datatables into their project with serverside processing.
For those who are interested, you may find the gem here: https://github.com/brolycjw/datatable
Really cool! Another idea for your gem, allow a block with the listing of columns. Kind of like a small DSL for the ordering and selection of columns.
I've been working on a project which takes the ideas of the Datatables and is basically a full rewrite; allowing pagination, individual column searching, column selection and ordering, saving custom reports and setting defaults, etc. It's a pretty large library so far, but not ready to share with the world.
That's sounds really nice, looking forward to its release!