The community will undergo maintenance on October 16th at 10:00 PM PDT and will be unavailable for up to one hour.
Hi all,
I am currently developing a checklist function in Vuforia Studio, meant for Tablet usage.
The checklist is in the Top Panel, Column.
As I have like multiple checklists, it will exceed the column height size in the top panel.
What are the CSS/Code that I can input to the column so that it is scrollable, so that user can scroll to see all the checklist in the top panel column.
Thanks all for helping.
Hi, @benchan
It seems that if Default properties (below)
.twx-2d-overlay .twx-panel {
pointer-events: none;
}
is changed to below by adding it in STYLES would solve the issue.
.twx-2d-overlay .twx-panel {
pointer-events: auto;
}
But anything in the STYLES affects whole Project.
So it could cause some unexpected issues.
I'd like to know if there is any other solution.