Hi
I have a xsl page, that shows 14 barcodes on one page for printing.
I have created a dropdown list so that you can define how many barcodes you want on a single page.
I have an xsl variable "barcodeTotalNr" with default value of 14.
I have a dropdown list "barcodeTotal" which assigns a value to be read into "barcodeTotalNr" by a reloading / submiting the page....
Search Result
Collapse
27 results in 0.0023 seconds.
Keywords
Members
Tags
-
How to send a variable value from html to XSLT?
Last edited by Dormilich; May 15 '12, 02:17 PM. Reason: Please use [CODE] [/CODE] tags when posting code. -
Filtering the XML Nodes bound with dropdownlist
Hello Friends, I have two DropDownList: 1) CollegeDDL which contains Four static names of the colleges. : Homeopathic Medical College,Physiot herapy College,Institu te of Ayurveda,Instit ute of Business Administration
2) CourseDDL which is bind to CourseDetail.XM L.
Code:<Institutes> <Institute> <InstituteName> Homoeopathic Medical College </InstituteName>
-
xml parsing and show in browser
Hi
I want some idea or information.I have to parse xml files through java sockets and display the content of xml file in the browser/UI in real time.
I can parse the xml file using Jaxb but i dont know how to display it in browser in real time.should i use Xslt to display them in browser.
Can someone tell me the whole procedure/logic to do this? your help is much appreciated. -
Wrap an element if it starts with text
I have a series of <entry> elements whose entire contents I want to wrap in a <p> element.
For example, here is before:
<entry>This is a raw entry that needs a p element.</entry>
Here is after:
<entry><p>Thi s is a raw entry that needs a p element.</p></entry>
I want to ignore <entry> elements that already have a top-level... -
skrajath started a topic org.xml.sax.SAXException: Parser configuration problem: namespace reporting is not enin XMLorg.xml.sax.SAXException: Parser configuration problem: namespace reporting is not en
Hi,
I am facing this problem when i shifted from Saxon-8.7 to Saxon-9he jar .
xmlHandler.star tElement("", "",nodeName , atts);
org.xml.sax.SAX Exception: Parser configuration problem: namespace reporting is not enabled
org.xml.sax.SAX Exception: Parser configuration problem: namespace reporting is not enabled
at net.sf.saxon.ev ent.ReceivingCo ntentHandler.ge tNameCode(Recei vingContentHand ler.java:383)... -
My XSL document causes my XML to disappear.
Stats:
Chrome 11.0
Notepad++
Basically i wrote some XSL and linked it to my XML and then Google Chrome won't display the XML file. The code is below.
Code:<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <xsl:for-each select="recipebook/recipe">
-
How to read a processing instruction?
Hi ALL,
I have a processing instruction like <?aid Char="feff" Self="rc_u434fi 2d8fiecins0"?>
Now i want to read this by XSLT and convert to tags like
<aid char="feff" self="rc_u434fi 2d8fiecins0">
How this is possible using XSLT
Thanks
Sam -
How to repeat the tags using the foreach
I want to repeat the tag according to my cols number
For eg:
Code:<tgroup cols="5"><thead><row>
Code:<tgroup cols="5"> <colspec colnum="1" colname="col1"/> <colspec colnum="2" colname="col2"/> <colspec colnum="3" colname="col3"/> <colspec colnum="4"
Last edited by Dormilich; Mar 4 '11, 09:39 AM. -
Hari Marimuthu started a topic What is the difference between Call template and Name template in xslt?in XMLWhat is the difference between Call template and Name template in xslt?
Xslt:
What is the difference between Call template and Name template in xslt.
Thanks,
[B]HariB]. -
Xpath Help
Hi ALL,
I have a XML file in following type
Code:<xml> <para type="P">Sample text 1 goes here</para> <para>Sample text 2 goes here</para> <para>Sample text 3 goes here</para> <para type="P">Sample text 4 goes here</para> <para>Sample text 5 goes here</para> <para>Sample text 6 goes here</para>
Last edited by Dormilich; Sep 28 '10, 05:54 AM. Reason: please use [code] [/code] tags when posting code -
xsl:value-of select and xsl:template match issue
Hi All,
A newbie to the forum and the world of XML/XSLT
I'm trying to create a XSLT script to convert from one XML format to another (cXML is the target format) for a system integration project.
I want to be able to map values in the source XML tags to the destination cXML tags as necessary but am stumbling on problems retrieving the right elements
Here comes the code...
Source... -
how to add these to a table using xslt
Hi,
I need to transform the following and add them to a table and should look like the following using xslt.
---------------------------------------------
Titles description Date
--------------------------------------------
Everything should list one after the other.
The file rdfExample.xml is the xml file. I need to add the attributes in that to a table so that it looks... -
Grouping on Multiple Field
Hi , I am generating XML file from Database as below..
Code:<?xml version = '1.0'?> <T0019> <IFTA_ACCOUNT> <IFTA_CARRIER_ID_NUMBER>705</IFTA_CARRIER_ID_NUMBER> <IFTA_LICENSE_NUMBER>631227666</IFTA_LICENSE_NUMBER> <IFTA_BASE_COUNTRY>US</IFTA_BASE_COUNTRY> <IFTA_BASE_STATE>AL</IFTA_BASE_STATE>
-
XSLT sort question
Hi,
I have the following content
Code:<inline-graphic href="gkq255i1"/> <inline-graphic href="gkq255i2"/> <inline-graphic href="gkq255i3"/> <inline-graphic href="gkq255i100"/> <inline-graphic href="gkq255i10"/> <inline-graphic href="gkq255i11"/> <inline-graphic href="gkq255i99"/>
-
Saxon Template Reference
Hi everyone,
I hope this is a simple (syntax) thing and that someone can point me in the right direction.
At the moment, I am successfully processing an XML file with Saxon (from the command line) and get the output that I expect.
However, the XSL file that I have 'inherited' contains multiple templates. e.g.
<xsl:template match="/">
XSL ... stuff
</xsl:template>...