Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 2 weeks ago
Scrollable Column
I have a table and within table coulmns I have Vertical Layout and within that I have form + horizontal Layout.
Now I want to make my table column scrollable.
I have found one solution for this:
.v-table tr td:nth-child(odd){
background: lightgray;
overflow-x:scroll;
overflow-y:visible;
}
.v-table tr td:nth-child(even){
background: lavender;
overflow-x:scroll;
overflow-y:visible;
}
but the problem that I am facing right now is this piece of code showing scroll bar on evrything inside the column.be it a form or button
Last updated on
You cannot reply to this thread.