Search found 5 matches

by syxxzonz
Wed Jun 08, 2005 12:19 am
Forum: General XML Questions
Topic: Frames and Communication between XML and HTML
Replies: 1
Views: 7830

Frames and Communication between XML and HTML

Here is my main HTML document ("demo.html"): <html> <head> <title>Example</title> <script language="javascript"> function populateFrames() { var x = new ActiveXObject("Microsoft.XMLDOM"); var s = new ActiveXObject("Microsoft.XMLDOM"); x.async = false s.async =...
by syxxzonz
Mon Jun 06, 2005 10:44 pm
Forum: XSLT and FOP
Topic: dynamically showing/hiding a row
Replies: 0
Views: 5691

dynamically showing/hiding a row

I have the following: <?xml version="1.0" encoding="ISO-8859-1" ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html" indent="yes" /> <xsl:template match="/database"> <html> <...
by syxxzonz
Mon Jun 06, 2005 10:41 pm
Forum: XSLT and FOP
Topic: Using div elements in XSL
Replies: 5
Views: 8539

problem solved

I solved my problem Thank you
by syxxzonz
Mon Jun 06, 2005 7:34 pm
Forum: XSLT and FOP
Topic: Using div elements in XSL
Replies: 5
Views: 8539

hiding a specific column in an XSL (how is it done)

right...I understand what you're saying, however, when I call a function that hides the first column, it doesn't work. <table> <tr> <td> <div id="some_name" style="display:none"> <apply-templates .....> </div> </td> </tr> </table> this is a basic outlook of my body. I have a butt...
by syxxzonz
Sat Jun 04, 2005 1:33 am
Forum: XSLT and FOP
Topic: Using div elements in XSL
Replies: 5
Views: 8539

Using div elements in XSL

I'm new HTML,XSL,XML. Basically, I'm new to anything having to do with web pages. However, I have a problem regarding HTML div elements. I have an XSL stylesheet that correctly reads and XML file and formats it accordingly. It has a main body (i.e. <html> and <body> tags) and some javascripts. I sta...