Page 1 of 1

Hiding Fields in the popover...

PostPosted: Mon Feb 02, 2015 1:12 pm
by brian.curran
Hi,
I've been following the instructions at http://www.seedcode.com/pmwiki/index.ph ... ntPopovers

Edited the relevant script line to read as below but the popover still displays the Resource and Project fields for some reason.

List (
"Hide popover items here" ;
"resource
project"
)

I also ran the "Upon Opening" script as recommended but it doesn't make a difference.

Thanks
Brian.

Re: Hiding Fields in the popover...

PostPosted: Mon Feb 02, 2015 1:16 pm
by jeffalmquist
I think your syntax is just off a little. Try this:

List (
"resource" ;
"project"
)

Re: Hiding Fields in the popover...

PostPosted: Mon Feb 02, 2015 1:39 pm
by brian.curran
Ah, too easy! ;)

Another quick question, how do I get the Popover times and Calendar view times to be displayed with leading zeros in 24-hr format? Seeing 8:00 to 20:00 really gets my OCD fired up...

Thanks Jeff

Re: Hiding Fields in the popover...

PostPosted: Tue Feb 03, 2015 10:32 pm
by jeffalmquist
You can get that leading zero by changing "H:mm" to "HH:mm" in the calculation used to set the $sc_TimeFormat variable in the "Webviewer Settings" script.

Re: Hiding Fields in the popover...

PostPosted: Wed Feb 04, 2015 1:35 am
by brian.curran
That's great, many thanks Jeff...
Brian.