Hey Gregory,

I figured it out (unexpectedly)... The trick is to avoid the checked
property and just set the respective value. That is:

        <input type="radio" name="date" checked="true" value="0"/>
        <input type="radio" name="date" value="1"/>
        <input type="radio" name="date" value="2"/>

translates into

        <input type="hidden" name="date" value="0"/>

and instead of setting it like:

        document.horizonviewf.date[1].checked=true;

you do:

        document.horizonviewf.date.value="1";

It seems to be working fine with HorizonView. I'll work through your
searches and fix that up.

Thanks,
Kim

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> Gregory Krohne
> Sent: den 23 augusti 2004 14:39
> To: [EMAIL PROTECTED]
> Subject: RE: [DQSD-Users] New Search: Virtual Telescope
>
> Yeah, I tried to make the search using just "hidden" inputs,
> but it would never work unless I explicitly used the option
> buttons the original form uses. I hate having those option
> buttons show up, too. I'll see if I can do something about
> that. Maybe I can use Javascript to create the option buttons
> dynamically, when the search is run. Any help out there? Does
> anyone know right off the top how to fix this?
>
> > -----Original Message-----
> > From: Kim Gräsman [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, August 22, 2004 7:13 AM
> > To: [EMAIL PROTECTED]
> > Subject: RE: [DQSD-Users] New Search: Virtual Telescope
> >
> >
> > Hi Gregory,
> >
> > An astronomical week, is it? :)
> >
> > There's one thing I noticed, and I'm not sure if it's
> possible to do
> > anything about it:
> >
> > When I restart DQSD after installing the virtel search, three radio
> > buttons are rendered in the edit field. I assume these are
> the three
> > <input type="radio"/> elements at the beginning of the form.
> >
> > Is it possible to make these hidden instead, so they don't
> show up on
> > the DQSD surface? I think the other two searches you posted
> have the
> > same issue, if you drag your DQSD out onto the desktop,
> i.e. undock it
> > from the taskbar, there will be nine radio buttons hanging around
> > there... Fixable?
> >
> > Thanks,
> > Kim



-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
To unsubscribe visit:
https://lists.sourceforge.net/lists/listinfo/dqsd-users
[EMAIL PROTECTED]
http://sourceforge.net/mailarchive/forum.php?forum_id†01

Reply via email to