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
{{ message }}
This repository was archived by the owner on Sep 21, 2022. It is now read-only.
I have a sortable-table as the bottom half of a vertical layout (below a core-splitter), and while I've been able to make the table scroll (rather than the entire vertical layout), the column headers of course scroll out of view.
I'm a polymer newbie, so maybe I'm missing an obvious solution, but the ideas that strike me so far (such as trying to scroll the tbody instead) aren't working.
I have a
sortable-tableas the bottom half of a vertical layout (below acore-splitter), and while I've been able to make the table scroll (rather than the entire vertical layout), the column headers of course scroll out of view.<div vertical layout fit> <textarea id="query" style="width:100%;height:10em;"></textarea> <core-splitter direction="up" allowOverflow></core-splitter> <sortable-table class="bootstrap" checkbox multiSelect rowSelection disableColumnMove id="databaseListTable"> <sortable-column name="Name">Name</sortable-column> <sortable-column name="Title">Title</sortable-column> <sortable-column name="Result">Result</sortable-column> </sortable-table> </div>I'm a polymer newbie, so maybe I'm missing an obvious solution, but the ideas that strike me so far (such as trying to scroll the
tbodyinstead) aren't working.