class Playbook::PbAdvancedTable::TableRow

def render_checkbox_cell

Selectable Rows No Subrows - checkboxes in their own first cell
def render_checkbox_cell
  if selectable_rows
    pb_rails("table/table_cell", props: {
               classname: "checkbox-cell",
             }) do
      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,
                   flat_advanced_table_select: true,
                 },
               })
    end
  end
end