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]

xsl to HTML


Hi

In the following code I am trying to assign the value of the element
"/root/publication/fromdt" to the text field named "from_dt" I have tried the
following ways


<input style="width: 100px" maxlength="8" title="Choose Date" type="text" id
="From_Date" name="From_Date" value="{/root/publication/fromdt}" onFocus
="getCalendarFor(this); this.blur()" class="form"/>


<input style="width: 100px" maxlength="8" title="Choose Date" type="text" id
="From_Date" name="From_Date" value="{./
root/publication/fromdt}" onFocus="getCalendarFor(this); this.blur()" class
="form"/>


<input style="width: 100px" maxlength="8" title="Choose Date" type="text" id
="From_Date" name="From_Date" value="{./
root/publication/fromdt/text()}" onFocus="getCalendarFor(this); this.blur()"
class="form"/>


<input style="width: 100px" maxlength="8" title="Choose Date" type="text" id
="From_Date" name="From_Date" value="{/
root/publication/fromdt/text}" onFocus="getCalendarFor(this); this.blur()" class
="form"/>

<xsl:variable name = "A1" select = "/root/publication/fromdt"></xsl:variable>
                 AAAAAAA<xsl:value-of select="$A1"/>BBBB
                 <input style="width: 100px" maxlength="8" title="Choose Date"
type="text" id="From_Date" name="From_Date" value="{$A1}" onFocus
="getCalendarFor(this); this.blur()" class="form"/>



I am new to XSL so I do not know where I am going wrong non of the above method
seem to work. I get blank. Kindly help.

Regards
Rajesh J



 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]