hidden checkbox in interface

Hi everyone
Does anyone know if there’s a quickway way to hide a checkbox in the action interface like you can with field items eg like this:

  <action-text var name="field1" />

but with a check-box so some thing like this…

 <action-checkbox var name="checkbox1" />

I still need it… I just want to hide it, so it cant be unchecked
cheers if anyone knows a quick way.

max


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

You can set its fwEnabled to false, which will make it dim and
unchangeable. You should test to see if it is a usable parameter after
that point. You could also set its fwVisible to false, which will hide
it, again, I’m not sure if its value is readable when it’s hidden – I
seem to think it is, because I’ve had to work around that in other
cases (where I would prefer that it not have a value if the user can’t
set that value).

Walter

On May 27, 2009, at 9:36 AM, max wrote:

Hi everyone
Does anyone know if there’s a quickway way to hide a checkbox in the
action interface like you can with field items eg like this:


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thanks walter… I was just being lazy. I was hopping I some one would know something that will just make it invisible by the flick of a switch (var) in its name, but if thats not the case then I might as will do it properly…
cheers max


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hi Walter and any one else who is interested…
ok work out a quick way to do it

in my example above all I did was convert this:

<action-checkbox name="checkbox1" />

to this:

<action-text var name="checkbox1" default="yes"/>

and thats it… it take place of the checkbox, its hidden
and I dont have to change any of my javascript code

All the best max


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options