Web 2: can we change the alternating color of a weblistbox?

You can modify it globally in the App’s HTML Header Property:

<style>
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(112 214 255 / 22%);
}
</style>

In general you can use the chrome dev tools to inspect an element’s style, alter the styles you want, and copy them over to your HTML Head under the corresponding “css selector” you want

1 Like