Hello,
How can I make the hover in a table? I mean, I want to make the hover for all the horitzontal and vertical cells from the cell selected.
I know that it can configure the hover for the selectioned cell, but only the selected cell.
I tried to color the cell one by one but it makes to slow down the runtime... so It will be good to know if there is a hover option that makes + (cross).
I will attach an image to help the understanding.
Thank you so much,
Junho Jang
Table Hover
Search
Re: Table Hover
I didn't find an option to make hovering for the complete line and column.
It looks like there is no option to fulfill this requirement.
Best Regards
Leopold Knipp
Senior Support Specialist
It looks like there is no option to fulfill this requirement.
Best Regards
Leopold Knipp
Senior Support Specialist
-
- Posts: 30
- Joined: Fri Aug 23, 2019 12:55 pm
Re: Table Hover
Thank you for your quick answer!
But I have a dubt about what you said because I found the next text (Attatched Image) on online help of WinCC OA 3.16.
It says that there is a hover option for row and column
but I don't know how it works....
But I have a dubt about what you said because I found the next text (Attatched Image) on online help of WinCC OA 3.16.
It says that there is a hover option for row and column

-
- Posts: 30
- Joined: Fri Aug 23, 2019 12:55 pm
Re: Table Hover
My collegue is trying to modify the stylesheet.css of the project and he adds the following statements:
----------------------------------------------------------
Cell Hover:
QTableView[type = "AGC"] ::item:hover{
background: green;
}
Row Hover:
QTableView[type = "AGC"] :
hover{
background: green;
}
-------------------------------------------------------------
And he reached to make a hover of a cell and of a row. But no row+column.
Do you know what option should we write in the stylesheet?
Thank you so much
Junho Jang
----------------------------------------------------------
Cell Hover:
QTableView[type = "AGC"] ::item:hover{
background: green;
}
Row Hover:
QTableView[type = "AGC"] :
background: green;
}
-------------------------------------------------------------
And he reached to make a hover of a cell and of a row. But no row+column.
Do you know what option should we write in the stylesheet?
Thank you so much

Junho Jang
-
- Posts: 30
- Joined: Fri Aug 23, 2019 12:55 pm
Re: Table Hover
wow.... : : tr : instead of :
It automatically changes to the Turkish flag...
It automatically changes to the Turkish flag...
Re: Table Hover
It refers to the "selectByClick" table property. Have a look at the documentation. The problem is that it only supports either of the following:jjang@gtd.eu wrote: ↑Wed Feb 05, 2020 2:51 pm Thank you for your quick answer!
But I have a dubt about what you said because I found the next text (Attatched Image) on online help of WinCC OA 3.16.
It says that there is a hover option for row and columnbut I don't know how it works....
- no selection
- selecting full lines
- selecting full columns
- selecting single cells
As you can see there is no option for selecting both a full line and a full column, and think that's what Leopold meant.
Cheers,
Daniel
-
- Posts: 1
- Joined: Tue Sep 05, 2017 3:53 pm
Re: Table Hover
jjang@gtd.eu wrote: ↑Wed Feb 05, 2020 2:57 pm My collegue is trying to modify the stylesheet.css of the project and he adds the following statements:
----------------------------------------------------------
Cell Hover:
QTableView[type = "AGC"] ::item:hover{
background: green;
}
Row Hover:
QTableView[type = "AGC"] :hover{
background: green;
}
-------------------------------------------------------------
And he reached to make a hover of a cell and of a row. But no row+column.
Do you know what option should we write in the stylesheet?
Thank you so much
Junho Jang
Hello,
i tried to use Stylesheets to import those 2 hover functions.
"Cell Hover" works fine, but somehow "Row Hover" wont't work for me.
Is there anything speciel i have to take into account for it?