Sheet Modal, i cant scroll table

Good day!!!

i have a sheet modal with dinamically populated table:

<div class="sheet-moda lista">
  <div class="sheet-modal-inner" style="overflow: visible !important;">
      <div class="data-table card">
        <br>
        <table>
          <thead>
            <tr>
              <th class="label-cell color_cell">Family</th>
              <th class="label-cell color_cell">Nom Común</th>
              <th class="label-cell color_cell">Nom Científico</th>
            </tr>
          </thead>
          <tbody id="dynamicPopulate">
          </tbody>
        </table>
      </div>  
  </div>
</div>

When i open it:

app.sheet.open('.lista');

it show my list, but i cannot scroll and see all the list items.

Thanks!!

This is the reason in your code

Try to wrap data table with div class=“page-content”

Thanks for your time, it work!!!

1 Like