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
I ran into an issue where when setting a title_view: on a table section would actually set the RMQ stylesheet I had set on the screen to nil, causing all sorts of problems for the cells underneath.
I fixed this in my project by doing this in table.rb.
# Section header view methodsdeftableView(_,viewForHeaderInSection: index)section=promotion_table_data.section(index)view=section[:title_view]view=section[:title_view].newifsection[:title_view].respond_to?(:new)# Added the line below to fix the issue...view.stylesheet=self.stylesheetifself.stylesheet && view.respond_to?(:stylesheet=)view.on_loadifview.respond_to?(:on_load)view.title=section[:title]ifview.respond_to?(:title=)viewend
Not sure if we should add this to redpotion or what...
The text was updated successfully, but these errors were encountered:
I ran into an issue where when setting a
title_view:
on a table section would actually set the RMQ stylesheet I had set on the screen tonil
, causing all sorts of problems for the cells underneath.I fixed this in my project by doing this in
table.rb
.Not sure if we should add this to redpotion or what...
The text was updated successfully, but these errors were encountered: