cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X

Scroll bar function in top panel for checklist

benchan
6-Contributor

Scroll bar function in top panel for checklist

benchan_0-1609750480212.png

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. 

1 REPLY 1

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.

Top Tags