Web 2 : how to remove the vertical line of a column of a weblistbox?

did not find how to do this… thanks !

edit: this is for a weblistbox I didn’t precise.

simply with css? Change your Bootstrap-Theme-CSS that way.

and what app/web site can we use to generate bootstrap themes
that are correctly read by xojo ? I tried some and everytime xojo reads it but the app hangs or don’t launch…

sorry but I tried some online bootstrap editors, and did not find what variable to change to remove the vertical column border of a listbox. anyone can help me on this ? thanks.

If you want to remove all lines within the table (both header and body), you can add this code to the App HTML Header:

<style>
.table-bordered td, .table-bordered th {
    border: 0px solid;
}
</style>

You get this:
image

If you want the lines between rows, you can use this code:

<style>
.table-bordered td, .table-bordered th {
    border: 0px solid;
    border-top: 1px solid #dee2e6;
}
</style>

You will get this:
image

1 Like