Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: Default "blank" value in combo box

From: Ben Thomas <user@-------.--->
To: NULL
Date: 12/11/2006 3:59:00 PM

like this:

<xsl:for-each select="xpath expression">
<xsl:if test = ". = 'no value'" >
<option value="{.}" checked="'checked'">					<xsl:value-of select="." />
</option>								</xsl:if>
</xsl:for-each>

<xsl:for-each select="xpath expression">
<xsl:if test = ". != $myvariable" >					<option value="{.}">
<xsl:value-of select="." />							</option>								</xsl:if>



Ah yeah, erm... I'm not sure why I did it like that before actually :\ 
Just tried it like this though:

<option>
    No Value
</option>

and it still doesn't work. I need some way of incorporating the blank 
value into the loop/if test without messing up the loop.

Anthony Jones wrote:
> "BL" <user@e...> wrote in message
> news:x50fh.508$FN2.306@f......
>> Hi, having a small problem with a combo box. I have a combo box which
>> gets values from an xml file and lets the user select one and submit it
>> via a form, I want the value they selected to be "remembered" in the
>> combo box when the page has refreshed.
>>
>> This was working fine
> 
> How did you get it working fine?
> 
> until I added a "blank" value as the first value
>> in my combo box. Now it won't remember the value they selected.
>>
>> The way I added the default value was by adding this (above my loop
>> which populates the values from the xml file into the combo box:
>>
>> <option value="{''}">
> 
> Are you sure you don't just need:-
> 
> <option>
> 
> What are you expecting value="{''}" to acheive?  It will resolve to value=""
> so what's the {''} doing?
> 
>>      No Value Selected
>> </option>
>>
>> Anyone got any ideas?
>>
>> Thanks,
>> B
>>
> 
> 


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent