However that does not seem to affect the color switching not working. Should all the props appear correctly first drawing in development mode? I will check again.
↧
Re: pageframe webactivecolors
↧
From: | Tuvia Vinitsky |
To: | Thierry Nivelet (FoxInCloud) |
However that does not seem to affect the color switching not working. Should all the props appear correctly first drawing in development mode? I will check again.
(function(){var o = $$('link[type=text/css][href^=/ucsTest/awDefault_]')[0];if (o && !o.href.endsWith('/ucsTest/awDefault_3OS0R5UW2.css')){var p = o.previousSiblings()[0]; o.remove(); o = Object.extend(document.createElement('link'), {href:'/ucsTest/awDefault_3OS0R5UW2.css', type:'text/css', rel:'stylesheet'}); p.insert({after:o}); } })();
Please note that this happens only in development mode: production mode uses the global 'awDefaultAll.css' stylesheet generated by xxxProd.css.prg, which is defined once for all.
Also, the height of tabs where enabled=.f. is always drawn only a few pixels high. It does not matter if the other tabs are drawn with FiC default or with specific size.
Not even close. Also the tabs start out raising and displaying poperly, but after switching to any other than the iniial tab, all the tab fonts revert to a small font and stay that way and no more special effects. I have
wlactivepagecolors = .t.
wlactivepagehighlight=.t.
wnactivetabraise = 2
wntabmargin=2
pgf.init:
IF NOT thisform.wlHTMLgen
*this.ActivePage = 1
this.Pages[1].activate()
RETURN DODEFAULT()
ENDIF
in each page.activate:
IF m.thisForm.wlHTMLGen
RETURN .T.
ELSE
THIS.PARENT.setAll('BACKCOLOR', RGB(116,189,46) , 'PAGE')
THIS.BACKCOLOR= RGB(255,255,255)
ENDIF
But when it loads I get this (two tabs are disabled):
Then when I click on the middle "leave info" tab I get:
PROCEDUREpageframe.Initthis.Pages(1).ActivatereturnDoDefault()ENDPROCPROCEDUREpageframe.somePage.activateIF m.thisForm.wlHTMLGen RETURN .T.ELSETHIS.PARENT.setAll('BACKCOLOR', inactivePageRGB, 'PAGE')THIS.BACKCOLOR=activePageRGB ...ENDIFENDPROC
Still unclear what code goes in pgf init to get that appearance.