Posts by Elis Bresciani • 46 points
7 posts
-
0
votes2
answers737
viewsA: Filter select fields using other selects with Ruby on Rails
There’s an episode of Railscast that deals with Dynamic Select Menus, you’ve already taken a look? Maybe these links are useful too:…
-
0
votes1
answer460
viewsA: Pass parameter of selected line to another RUBY view
Okay, maybe it’s late, but I’ll try to help. You could try it: <td> <%= link_to "sua view (Pedido) / #{pedido.id}", detalhes_backoffice_pedidos_path(:pedido_id => @pedido.id),…
-
0
votes1
answer105
viewsA: Rails Admin- Problems with Gem Paperclip and ckeditor
I managed to fix it. After putting the Gems in the Gemfile, and installing, I managed the ckeditor model, as it is in the tutorial. To make him pick up my settings, I put it in…
-
1
votes2
answers29
viewsA: How can I access already modified table data?
Hello, good, and if you separate, put in different tables. Every month, you call a new record of that patient. As far as I can see it’s a one-to-n association.…
ruby-on-railsanswered Elis Bresciani 46 -
0
votes1
answer105
viewsQ: Rails Admin- Problems with Gem Paperclip and ckeditor
I integrated my application with Rails admin, and I put the ckeditor in one of the Forms, I followed all the steps of official documentation but it is not accepting my config.js, I have reduced the…
-
0
votes1
answer236
viewsQ: Save data from a WYSIWYG editor to the database
I will have a "form" inside it will have a WYSIWYG like take the typed data from inside it and save in the database, because I will have text and images inside. I am developing in Ruby, and trying…
-
1
votes1
answer1373
viewsQ: Text area with image
Hi, I’m going to make a form and I don’t know how to include an image within the text area, something like that. TEXT TEXT IMAGE TEXT Something to include user know? How is done here in stack…