This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: node vrs node//node?


> <checkbox name="i2a" value="1" checked="yes">One</checkbox>
> I get this output:
> One<input type="checkbox" name="i2a" value="1" checked>

You shouldn't get that. checked="yes" should not have any special effect
in XSLT it should just produce  checked="yes"  not the short form
checked. (Also it shouldn't have any affect on an HTMl system either,
the correct ling form is checked="checked".

The reason why the second template is fireing in all cases is that they
have the same priority  which is an error but your processor is
recovering by using the last one.

You want the first to win if it applies so add priority="10" (or any
number bigger than 0.5)

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]