-
Hi, Is it possible to share the code for https://cloudscape.design/examples/react/table.html. I cannot have the same view. In the AppLayout, under contentHeader if I put a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, Unfortunately, the source code for the demos is not available at the moment, see #61. When you have a full-page table like this, i.e., the table is first and main element of the page, you can use the
You can find an example in our pages: https://github.com/cloudscape-design/components/blob/main/pages/app-layout/with-table.page.tsx Hope that helps! :) |
Beta Was this translation helpful? Give feedback.
Hello,
Unfortunately, the source code for the demos is not available at the moment, see #61.
When you have a full-page table like this, i.e., the table is first and main element of the page, you can use the
full-page
variant of the Table component to move it up into the content header of the page. To make this work, you have to do two things:variant="full-page"
andstickyHeader={true}
to the Tablecontent="table"
on your App layoutYou can find an example in our pages: https://github.com/cloudscape-design/components/blob/main/pages/app-layout/with-table.page.tsx
Hope that helps! :)