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:
(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?
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
Simple example of how you can display a "spinner lookalike" using Tableviewer:
BLOCKS
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
where is aix file
Good morning, is there any way to invert the data in the first column?
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.