Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hi all,
How to hide existing 2D elements design during desing time if they overlap with other 2D elements that needs to be created? Like infocards that are getting overlapped sometimes? It's not possible to create other 2D elements if existing one fills the space on the screen
@anickolsky Just to inform, I am owning your PTC Case related to this post and have reached out internally to see if there are any suggestions. Also, would be good to know if anyone else had similar challenges/experience during Designing and have any feedback/suggestions.
-Durgesh
we are also facing the same issue while creating UI in vuforia studio (2D Canvas). I want to elaborate this question more from my side. while creating UI, suppose I inserted popup widget there is hide popup option in properties.
like this way. Is there any another option to hide other widgets in canvas (not in preview).
pdf of hide popup property is attached here for reference
There is no way to hide widgets while designing UI (Except Popup Widget). It's better to give proper studio ID for finding specific widget and add CSS(Padding, Margin) properties to overcome this problem.
I know there is no away yet, I am giving feedback about it. It would be more helpful if there is option available in properties like hide popup. If we get same option in other widgets too in coming years, then that plays major role
Many thanks!
Hello anickolsky
for this case I often use a workaround via CSS. If I need to hide a specific widget for design time I add a class to the widget which is defined for example by:
.hide {
position: fixed;
bottom: -10000px;
right: -10000px;
}
The disadvantage is that you must remember which widgets have this class, because you must remove it before preview/publish project.
Regards
Tomas