VLWeb SP2 Tab Folder Has Red Border
Posted: Tue May 22, 2018 12:39 am
After upgrading to SP2, I noticed our tab folders have now have a red border.
I created a simple page and dropped a tab folder onto it, and got the same result.
This seems to only be affecting the new MaterialDesign themes. Changing the Theme to 2015Blue does not show the red border. MaterialDesignBlue and MaterialDesignDeepPurple do.
I created a simple page and dropped a tab folder onto it, and got the same result.
Code: Select all
begin_com role(*EXTENDS #PRIM_WEB) Theme(#SYS_THEME<MaterialDesignBlue>)
define_com class(#PRIM_TAB) name(#Tab1) BottomLayoutPriority(4) ComponentVersion(2) DisplayPosition(1) Height(200) Left(122) LeftLayoutPriority(1) Parent(#COM_OWNER) RightLayoutPriority(2) TabPosition(1) Top(94) TopLayoutPriority(3) Width(200) ShowMenus(None) ViewStyle(Navigator)
define_com class(#PRIM_TBSH) name(#Sheet1) Caption('Page1') DisplayPosition(1) Height(66) Left(0) Parent(#Tab1) TabPosition(1) TabStop(False) Top(32) Width(200)
define_com class(#PRIM_TBSH) name(#Sheet2) Caption('Page2') DisplayPosition(2) Height(66) Left(0) Parent(#Tab1) TabPosition(2) TabStop(False) Top(32) Width(200)
evtroutine handling(#Com_owner.Initialize)
endroutine
end_com