[FREE] TableViewer - fully style customized to show table data

Result

Selezione not resize!!

Did you fix everything as we suggested ?

Yes but it doesn't change anything..

How many columns do you have in your data, I will see if I can replicate.

Do you want your header row as gray or red ?

Thanks

I have 6 columns and header is gray

Here it is with 8 columns and all your styling:

image

(Column G is hidden, Column A is set to 5% width to show it works)

Sorry, why can't you see the letter B in the header?

image

Also, not sure some of the styling for the header row is coming through.

Thanks to all of you

Simple example of how you can generate a card view style listing using Tableviewer

BLOCKS

CSS Stylesheet

table {
    border-collapse: separate;
    border-spacing: 0 15px;
    width: 100%;
    border: none;
}

table td,
th {
    padding: 20px;
    border: none;
    text-align: left;
}

table tr {
    background-color: #eaeefa;
}

table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #d9dff3;
}

td:first-child,
th:first-child {
    border-radius: 10px 0 0 10px;
}

td:last-child,
th:last-child {
    border-radius: 0 10px 10px 0;
}

SCREEN

2 Likes

Simple example of how you can display a "spinner lookalike" using Tableviewer:

BLOCKS

image

image

note that I have it set to only respond to a radio button selection.

CSS

table,
td {
    border: 0px;
    background-color: #fff;
    font-weight: 400;
    font-size: 1.2em;
}

input[type=radio] {
    transform: scale(1.5);
}

body>table {
    border-collapse: separate;
    border-radius: 15px 15px;
}

td:first-child {
    border-radius: 15px 0 0 15px;
}

td:last-child {
    border-radius: 0 15px 15px 0;
}

SCREEN

You could combine this with a suitable dialog extension to get the modal/overlay effect

4 Likes

where is aix file

Link is in the first post of this topic

image

1 Like


WSA上测试的,APK安装程序运行不了,连接的AI伴侣,报错,之前不会这样子,每次发AI伴侣一用新扩展就卡在发送JAR的地方报错,这是怎么回事?

卸载原来的伴侣,安装最新的伴侣。

Good morning, is there any way to invert the data in the first column?

image

What do you mean? reverse the order? You need to do it with functions in List.

I need to invert the data in the first column only, the last one becomes the first one and so on, I don't know if this is possible, this list is dynamically assembled, but it is only displayed at the end of the filling, I can invert the entire table, but not just the first column.

This extension only accept a list of list, then show it on screen.
As for what kind of list, in which order, this is not the function of this extension.
You can manupulate your list data with blocks from List drawer.

Very well, thank you.