You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Adam Ruggles <a....@gmail.com> on 2007/04/16 19:27:40 UTC

Autocompleter showDownArrow doesn't work

I'm starting to play with the autocompleter tag but I'm running into one 
issue.  No matter what I set showDownArrow to it will never display a 
down arrow.  The html that is sent to the browser looks like this:

<input dojoType="struts:ComboBox" id="test" dataUrl="/productlist.action" dropdownWidth="400" dropdownHeight="200" name="test" keyName="testKey" visibleDownArrow="true">

The code that is generated on the client side (view generated source on 
firefox) looks like this.

<span style="" _="whitespace and CR's between tags adds &nbsp; in FF" class="dojoComboBoxOuter dj_gecko">
<input style="display: none;" tabindex="-1" name="test" value="" dojoattachpoint="comboBoxValue">
<input style="display: none;" tabindex="-1" name="testKey" value="" dojoattachpoint="comboBoxSelectionValue">
<input style="" autocomplete="off" class="dojoComboBox" dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp; compositionEnd; onResize;" dojoattachpoint="textInputNode" type="text">
<img style="width: 0px; height: 0px;" class="dojoComboBox" dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp: handleArrowClick; onResize;" src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png" hspace="0" vspace="0">
</span>

As you can see the width is set to 0 and height is set to 0.  How can I 
change this?  I thought the default was to display a down arrow?

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org


Re: Autocompleter showDownArrow doesn't work

Posted by Dale Newfield <Da...@Newfield.org>.
On Mon, 16 Apr 2007 11:31:49 -0700 "Adam Ruggles" <a....@gmail.com> 
wrote:
>Ok so here is where the white rabbit went.  If I add the autocomplete 
>inside of a hidden div ("display: none;") element and then make it 
>visible it will not display the icon.  If the div is set to be displayed 
>("display: block;") then it displays fine.  After load, if I hide the 
>div and make it visible again it still displays correctly.

I had similar problems with a different javascript component, and wound up 
displaying a div at absolute -1000, -1000 and moving it back where I needed 
it instead of changing it's display style.  Ugly hack, but it works.

-Dale Newfield
 Dale@Newfield.org

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org


Re: Autocompleter showDownArrow doesn't work

Posted by Musachy Barroso <mu...@gmail.com>.
I will give it a try tonight and let you know.

thanks
musachy

On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>
> Ok so here is where the white rabbit went.  If I add the autocomplete
> inside of a hidden div ("display: none;") element and then make it
> visible it will not display the icon.  If the div is set to be displayed
> ("display: block;") then it displays fine.  After load, if I hide the
> div and make it visible again it still displays correctly.
>
> Musachy Barroso wrote:
> > Follow the white rabbit :)
> >
> > //there could be a bug in the autocompleter anyway
> > musachy
> >
> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
> >>
> >> The one in the showcase works.  Interesting...
> >>
> >> Musachy Barroso wrote:
> >> > 2.0.6? Does the page in showcase for the autocompleter display the
> >> arrows
> >> > for you?
> >> >
> >> > musachy
> >> >
> >> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
> >> >>
> >> >> Nope.  Still nothing displayed.
> >> >>
> >> >> Musachy Barroso wrote:
> >> >> > it is indeed. Do you see the arrow if you don't specify anything
> in
> >> >> > "visibleDownArrow"?
> >> >> >
> >> >> > musachy
> >> >> >
> >> >> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
> >> >> >>
> >> >> >> I'm starting to play with the autocompleter tag but I'm running
> >> into
> >> >> one
> >> >> >> issue.  No matter what I set showDownArrow to it will never
> >> display
> >> a
> >> >> >> down arrow.  The html that is sent to the browser looks like
> this:
> >> >> >>
> >> >> >> <input dojoType="struts:ComboBox" id="test"
> >> >> >> dataUrl="/productlist.action"
> >> >> >> dropdownWidth="400" dropdownHeight="200" name="test"
> >> >> keyName="testKey"
> >> >> >> visibleDownArrow="true">
> >> >> >>
> >> >> >> The code that is generated on the client side (view generated
> >> >> source on
> >> >> >> firefox) looks like this.
> >> >> >>
> >> >> >> <span style="" _="whitespace and CR's between tags adds &nbsp; in
> >> FF"
> >> >> >> class="dojoComboBoxOuter dj_gecko">
> >> >> >> <input style="display: none;" tabindex="-1" name="test" value=""
> >> >> >> dojoattachpoint="comboBoxValue">
> >> >> >> <input style="display: none;" tabindex="-1" name="testKey"
> >> value=""
> >> >> >> dojoattachpoint="comboBoxSelectionValue">
> >> >> >> <input style="" autocomplete="off" class="dojoComboBox"
> >> >> >> dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp;
> >> >> compositionEnd;
> >> >> >> onResize;" dojoattachpoint="textInputNode" type="text">
> >> >> >> <img style="width: 0px; height: 0px;" class="dojoComboBox"
> >> >> >> dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp:
> >> >> >> handleArrowClick; onResize;"
> >> >> >>
> >> >>
> >>
> src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png"
> >>
> >> >>
> >> >> >>
> >> >> >> hspace="0" vspace="0">
> >> >> >> </span>
> >> >> >>
> >> >> >> As you can see the width is set to 0 and height is set to 0.  How
> >> >> can I
> >> >> >> change this?  I thought the default was to display a down arrow?
> >> >> >>
> >> >> >>
> >> ---------------------------------------------------------------------
> >> >> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> >> >> >> For additional commands, e-mail: user-help@struts.apache.org
> >> >> >>
> >> >> >>
> >> >> >
> >> >> >
> >> >>
> >> >>
> ---------------------------------------------------------------------
> >> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> >> >> For additional commands, e-mail: user-help@struts.apache.org
> >> >>
> >> >>
> >> >
> >> >
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> >> For additional commands, e-mail: user-help@struts.apache.org
> >>
> >>
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> For additional commands, e-mail: user-help@struts.apache.org
>
>


-- 
"Hey you! Would you help me to carry the stone?" Pink Floyd

Re: Autocompleter showDownArrow doesn't work

Posted by Adam Ruggles <a....@gmail.com>.
Ok so here is where the white rabbit went.  If I add the autocomplete 
inside of a hidden div ("display: none;") element and then make it 
visible it will not display the icon.  If the div is set to be displayed 
("display: block;") then it displays fine.  After load, if I hide the 
div and make it visible again it still displays correctly.

Musachy Barroso wrote:
> Follow the white rabbit :)
>
> //there could be a bug in the autocompleter anyway
> musachy
>
> On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>>
>> The one in the showcase works.  Interesting...
>>
>> Musachy Barroso wrote:
>> > 2.0.6? Does the page in showcase for the autocompleter display the
>> arrows
>> > for you?
>> >
>> > musachy
>> >
>> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>> >>
>> >> Nope.  Still nothing displayed.
>> >>
>> >> Musachy Barroso wrote:
>> >> > it is indeed. Do you see the arrow if you don't specify anything in
>> >> > "visibleDownArrow"?
>> >> >
>> >> > musachy
>> >> >
>> >> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>> >> >>
>> >> >> I'm starting to play with the autocompleter tag but I'm running 
>> into
>> >> one
>> >> >> issue.  No matter what I set showDownArrow to it will never 
>> display
>> a
>> >> >> down arrow.  The html that is sent to the browser looks like this:
>> >> >>
>> >> >> <input dojoType="struts:ComboBox" id="test"
>> >> >> dataUrl="/productlist.action"
>> >> >> dropdownWidth="400" dropdownHeight="200" name="test"
>> >> keyName="testKey"
>> >> >> visibleDownArrow="true">
>> >> >>
>> >> >> The code that is generated on the client side (view generated
>> >> source on
>> >> >> firefox) looks like this.
>> >> >>
>> >> >> <span style="" _="whitespace and CR's between tags adds &nbsp; in
>> FF"
>> >> >> class="dojoComboBoxOuter dj_gecko">
>> >> >> <input style="display: none;" tabindex="-1" name="test" value=""
>> >> >> dojoattachpoint="comboBoxValue">
>> >> >> <input style="display: none;" tabindex="-1" name="testKey" 
>> value=""
>> >> >> dojoattachpoint="comboBoxSelectionValue">
>> >> >> <input style="" autocomplete="off" class="dojoComboBox"
>> >> >> dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp;
>> >> compositionEnd;
>> >> >> onResize;" dojoattachpoint="textInputNode" type="text">
>> >> >> <img style="width: 0px; height: 0px;" class="dojoComboBox"
>> >> >> dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp:
>> >> >> handleArrowClick; onResize;"
>> >> >>
>> >>
>> src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png" 
>>
>> >>
>> >> >>
>> >> >> hspace="0" vspace="0">
>> >> >> </span>
>> >> >>
>> >> >> As you can see the width is set to 0 and height is set to 0.  How
>> >> can I
>> >> >> change this?  I thought the default was to display a down arrow?
>> >> >>
>> >> >>
>> ---------------------------------------------------------------------
>> >> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
>> >> >> For additional commands, e-mail: user-help@struts.apache.org
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
>> >> For additional commands, e-mail: user-help@struts.apache.org
>> >>
>> >>
>> >
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
>> For additional commands, e-mail: user-help@struts.apache.org
>>
>>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org


Re: Autocompleter showDownArrow doesn't work

Posted by Musachy Barroso <mu...@gmail.com>.
Follow the white rabbit :)

//there could be a bug in the autocompleter anyway
musachy

On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>
> The one in the showcase works.  Interesting...
>
> Musachy Barroso wrote:
> > 2.0.6? Does the page in showcase for the autocompleter display the
> arrows
> > for you?
> >
> > musachy
> >
> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
> >>
> >> Nope.  Still nothing displayed.
> >>
> >> Musachy Barroso wrote:
> >> > it is indeed. Do you see the arrow if you don't specify anything in
> >> > "visibleDownArrow"?
> >> >
> >> > musachy
> >> >
> >> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
> >> >>
> >> >> I'm starting to play with the autocompleter tag but I'm running into
> >> one
> >> >> issue.  No matter what I set showDownArrow to it will never display
> a
> >> >> down arrow.  The html that is sent to the browser looks like this:
> >> >>
> >> >> <input dojoType="struts:ComboBox" id="test"
> >> >> dataUrl="/productlist.action"
> >> >> dropdownWidth="400" dropdownHeight="200" name="test"
> >> keyName="testKey"
> >> >> visibleDownArrow="true">
> >> >>
> >> >> The code that is generated on the client side (view generated
> >> source on
> >> >> firefox) looks like this.
> >> >>
> >> >> <span style="" _="whitespace and CR's between tags adds &nbsp; in
> FF"
> >> >> class="dojoComboBoxOuter dj_gecko">
> >> >> <input style="display: none;" tabindex="-1" name="test" value=""
> >> >> dojoattachpoint="comboBoxValue">
> >> >> <input style="display: none;" tabindex="-1" name="testKey" value=""
> >> >> dojoattachpoint="comboBoxSelectionValue">
> >> >> <input style="" autocomplete="off" class="dojoComboBox"
> >> >> dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp;
> >> compositionEnd;
> >> >> onResize;" dojoattachpoint="textInputNode" type="text">
> >> >> <img style="width: 0px; height: 0px;" class="dojoComboBox"
> >> >> dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp:
> >> >> handleArrowClick; onResize;"
> >> >>
> >>
> src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png"
> >>
> >> >>
> >> >> hspace="0" vspace="0">
> >> >> </span>
> >> >>
> >> >> As you can see the width is set to 0 and height is set to 0.  How
> >> can I
> >> >> change this?  I thought the default was to display a down arrow?
> >> >>
> >> >>
> ---------------------------------------------------------------------
> >> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> >> >> For additional commands, e-mail: user-help@struts.apache.org
> >> >>
> >> >>
> >> >
> >> >
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> >> For additional commands, e-mail: user-help@struts.apache.org
> >>
> >>
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> For additional commands, e-mail: user-help@struts.apache.org
>
>


-- 
"Hey you! Would you help me to carry the stone?" Pink Floyd

Re: Autocompleter showDownArrow doesn't work

Posted by Adam Ruggles <a....@gmail.com>.
The one in the showcase works.  Interesting...

Musachy Barroso wrote:
> 2.0.6? Does the page in showcase for the autocompleter display the arrows
> for you?
>
> musachy
>
> On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>>
>> Nope.  Still nothing displayed.
>>
>> Musachy Barroso wrote:
>> > it is indeed. Do you see the arrow if you don't specify anything in
>> > "visibleDownArrow"?
>> >
>> > musachy
>> >
>> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>> >>
>> >> I'm starting to play with the autocompleter tag but I'm running into
>> one
>> >> issue.  No matter what I set showDownArrow to it will never display a
>> >> down arrow.  The html that is sent to the browser looks like this:
>> >>
>> >> <input dojoType="struts:ComboBox" id="test"
>> >> dataUrl="/productlist.action"
>> >> dropdownWidth="400" dropdownHeight="200" name="test" 
>> keyName="testKey"
>> >> visibleDownArrow="true">
>> >>
>> >> The code that is generated on the client side (view generated 
>> source on
>> >> firefox) looks like this.
>> >>
>> >> <span style="" _="whitespace and CR's between tags adds &nbsp; in FF"
>> >> class="dojoComboBoxOuter dj_gecko">
>> >> <input style="display: none;" tabindex="-1" name="test" value=""
>> >> dojoattachpoint="comboBoxValue">
>> >> <input style="display: none;" tabindex="-1" name="testKey" value=""
>> >> dojoattachpoint="comboBoxSelectionValue">
>> >> <input style="" autocomplete="off" class="dojoComboBox"
>> >> dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp; 
>> compositionEnd;
>> >> onResize;" dojoattachpoint="textInputNode" type="text">
>> >> <img style="width: 0px; height: 0px;" class="dojoComboBox"
>> >> dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp:
>> >> handleArrowClick; onResize;"
>> >>
>> src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png" 
>>
>> >>
>> >> hspace="0" vspace="0">
>> >> </span>
>> >>
>> >> As you can see the width is set to 0 and height is set to 0.  How 
>> can I
>> >> change this?  I thought the default was to display a down arrow?
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
>> >> For additional commands, e-mail: user-help@struts.apache.org
>> >>
>> >>
>> >
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
>> For additional commands, e-mail: user-help@struts.apache.org
>>
>>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org


Re: Autocompleter showDownArrow doesn't work

Posted by Musachy Barroso <mu...@gmail.com>.
2.0.6? Does the page in showcase for the autocompleter display the arrows
for you?

musachy

On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>
> Nope.  Still nothing displayed.
>
> Musachy Barroso wrote:
> > it is indeed. Do you see the arrow if you don't specify anything in
> > "visibleDownArrow"?
> >
> > musachy
> >
> > On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
> >>
> >> I'm starting to play with the autocompleter tag but I'm running into
> one
> >> issue.  No matter what I set showDownArrow to it will never display a
> >> down arrow.  The html that is sent to the browser looks like this:
> >>
> >> <input dojoType="struts:ComboBox" id="test"
> >> dataUrl="/productlist.action"
> >> dropdownWidth="400" dropdownHeight="200" name="test" keyName="testKey"
> >> visibleDownArrow="true">
> >>
> >> The code that is generated on the client side (view generated source on
> >> firefox) looks like this.
> >>
> >> <span style="" _="whitespace and CR's between tags adds &nbsp; in FF"
> >> class="dojoComboBoxOuter dj_gecko">
> >> <input style="display: none;" tabindex="-1" name="test" value=""
> >> dojoattachpoint="comboBoxValue">
> >> <input style="display: none;" tabindex="-1" name="testKey" value=""
> >> dojoattachpoint="comboBoxSelectionValue">
> >> <input style="" autocomplete="off" class="dojoComboBox"
> >> dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp; compositionEnd;
> >> onResize;" dojoattachpoint="textInputNode" type="text">
> >> <img style="width: 0px; height: 0px;" class="dojoComboBox"
> >> dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp:
> >> handleArrowClick; onResize;"
> >>
> src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png"
> >>
> >> hspace="0" vspace="0">
> >> </span>
> >>
> >> As you can see the width is set to 0 and height is set to 0.  How can I
> >> change this?  I thought the default was to display a down arrow?
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> >> For additional commands, e-mail: user-help@struts.apache.org
> >>
> >>
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> For additional commands, e-mail: user-help@struts.apache.org
>
>


-- 
"Hey you! Would you help me to carry the stone?" Pink Floyd

Re: Autocompleter showDownArrow doesn't work

Posted by Adam Ruggles <a....@gmail.com>.
Nope.  Still nothing displayed.

Musachy Barroso wrote:
> it is indeed. Do you see the arrow if you don't specify anything in
> "visibleDownArrow"?
>
> musachy
>
> On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>>
>> I'm starting to play with the autocompleter tag but I'm running into one
>> issue.  No matter what I set showDownArrow to it will never display a
>> down arrow.  The html that is sent to the browser looks like this:
>>
>> <input dojoType="struts:ComboBox" id="test" 
>> dataUrl="/productlist.action"
>> dropdownWidth="400" dropdownHeight="200" name="test" keyName="testKey"
>> visibleDownArrow="true">
>>
>> The code that is generated on the client side (view generated source on
>> firefox) looks like this.
>>
>> <span style="" _="whitespace and CR's between tags adds &nbsp; in FF"
>> class="dojoComboBoxOuter dj_gecko">
>> <input style="display: none;" tabindex="-1" name="test" value=""
>> dojoattachpoint="comboBoxValue">
>> <input style="display: none;" tabindex="-1" name="testKey" value=""
>> dojoattachpoint="comboBoxSelectionValue">
>> <input style="" autocomplete="off" class="dojoComboBox"
>> dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp; compositionEnd;
>> onResize;" dojoattachpoint="textInputNode" type="text">
>> <img style="width: 0px; height: 0px;" class="dojoComboBox"
>> dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp:
>> handleArrowClick; onResize;"
>> src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png" 
>>
>> hspace="0" vspace="0">
>> </span>
>>
>> As you can see the width is set to 0 and height is set to 0.  How can I
>> change this?  I thought the default was to display a down arrow?
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
>> For additional commands, e-mail: user-help@struts.apache.org
>>
>>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org


Re: Autocompleter showDownArrow doesn't work

Posted by Musachy Barroso <mu...@gmail.com>.
it is indeed. Do you see the arrow if you don't specify anything in
"visibleDownArrow"?

musachy

On 4/16/07, Adam Ruggles <a....@gmail.com> wrote:
>
> I'm starting to play with the autocompleter tag but I'm running into one
> issue.  No matter what I set showDownArrow to it will never display a
> down arrow.  The html that is sent to the browser looks like this:
>
> <input dojoType="struts:ComboBox" id="test" dataUrl="/productlist.action"
> dropdownWidth="400" dropdownHeight="200" name="test" keyName="testKey"
> visibleDownArrow="true">
>
> The code that is generated on the client side (view generated source on
> firefox) looks like this.
>
> <span style="" _="whitespace and CR's between tags adds &nbsp; in FF"
> class="dojoComboBoxOuter dj_gecko">
> <input style="display: none;" tabindex="-1" name="test" value=""
> dojoattachpoint="comboBoxValue">
> <input style="display: none;" tabindex="-1" name="testKey" value=""
> dojoattachpoint="comboBoxSelectionValue">
> <input style="" autocomplete="off" class="dojoComboBox"
> dojoattachevent="key:_handleKeyEvents; keyUp: onKeyUp; compositionEnd;
> onResize;" dojoattachpoint="textInputNode" type="text">
> <img style="width: 0px; height: 0px;" class="dojoComboBox"
> dojoattachpoint="downArrowNode" dojoattachevent="onMouseUp:
> handleArrowClick; onResize;"
> src="/finance/struts/dojo/src/widget/templates/images/combo_box_arrow.png"
> hspace="0" vspace="0">
> </span>
>
> As you can see the width is set to 0 and height is set to 0.  How can I
> change this?  I thought the default was to display a down arrow?
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
> For additional commands, e-mail: user-help@struts.apache.org
>
>


-- 
"Hey you! Would you help me to carry the stone?" Pink Floyd