You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On sync_update @item, I got that partial is rendering ( User debugger/binding.pry ) but not update on UI level. Like When my item is update then that partial is called but not update on browser page.
Controller :-
def create
stuff for updating an item object.......
sync_update @item
end
View :-
<% @top_bidding_items.each do |item| %>
<%= sync partial: 'top_item_bids', resource: item %>
<% end %>
When I put 'binding.pry" in "top_item_bids" I got that page when item is updated, but doesn't reflect on view.
The text was updated successfully, but these errors were encountered:
On sync_update @item, I got that partial is rendering ( User debugger/binding.pry ) but not update on UI level. Like When my item is update then that partial is called but not update on browser page.
Controller :-
def create
stuff for updating an item object.......
sync_update @item
end
View :-
<% @top_bidding_items.each do |item| %>
<%= sync partial: 'top_item_bids', resource: item %>
<% end %>
When I put 'binding.pry" in "top_item_bids" I got that page when item is updated, but doesn't reflect on view.
The text was updated successfully, but these errors were encountered: