class TestScreen < PM::GroupedTableScreen row_height :auto, estimated: 100 title 'Test Screen' def table_data [{ :title => 'First Section', :title_view_height => 12, :cells => [{ :cell_class => CustomCell, :properties => { :obj => { :foo => 'foo', :bar => 'bar' } } }, { :cell_class => CustomCell, :properties => { :obj => { :foo => 'foo', :bar => 'bar' } } }] }, { :title => 'Second Section', :title_view_height => 12, :cells => [{ :cell_class => CustomCell, :properties => { :obj => { :foo => 'foo', :bar => 'bar' } } }, { :cell_class => CustomCell, :properties => { :obj => { :foo => 'foo', :bar => 'bar' } } }] }] end end