class Playbook::PbAdvancedTable::TableRow

def render_row_checkbox

Selectable Rows w/ Subrows - checkboxes part of toggleable first cell
def render_row_checkbox
  if selectable_rows
    pb_rails("checkbox", props: {
               id: "select-row-#{row_id || row.object_id}",
               name: "select-row-#{row_id || row.object_id}",
               data: {
                 row_id: row_id || row.object_id.to_s,
               },
             })
  end
end