Doctuh

Joined

50 Experience
0 Lessons Completed
0 Questions Solved

Activity

0

I have created a partial that gets rendered on my index page, via AJAX. This works flawless. However when I access the route, that i also want the rendered partial to show up on, it renders with no styling, as plain HTML. I have made a video that shows it pretty well. Pay notice when I access my route /accounts/euw. This is where it renders it as plain HTML, which I dont wan't, I want it to be rendered like the AJAX, with all style in-tact. What am I doing wrong??

My controller:
´´´
def euw
@euw_products = Server.find(1).products
respond_to do |format|
format.js { render partial: 'accounts/euw_result' }
format.html { render partial: 'accounts/euw'}
end
end
´´´
https://www.youtube.com/watch?v=HyP7S2qJ7OI&feature=youtu.be

Screencast tutorials to help you learn Ruby on Rails, Javascript, Hotwire, Turbo, Stimulus.js, PostgreSQL, MySQL, Ubuntu, and more.

© 2024 GoRails, LLC. All rights reserved.