Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. largegrape

    XSLT column

    Never mind, I just figured it out, thx anyways. <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" encoding="Windows-1252" /> <xsl:variable name="NumberOfRows" select="2" /> <xsl:template match="/">...
  2. largegrape

    XSLT column

    My bad, for some reason my xml file got changed. It does work thanks jay and jel. But I noticed that with this solution I can only do 2 columns. Could you help me out with a solution that will make the number of ROWS configurable? ie: if total items = 15 and ROWS is set to 3 1 4 7 10 13 2 5...
  3. largegrape

    XSLT column

    Nope, just copied and pasted your code into a new file.
  4. largegrape

    XSLT column

    I'm using IE6. I have item.xml and item.xslt. In the item.xml I have: <?xml-stylesheet type="text/xsl" href="item.xslt"? Then I just open the item.xml file using IE6. IE6 does client side transformation and the following is the result: variable NumberOfRows is: 2 My position is: 1 but I'll...
  5. largegrape

    XSLT column

    Hey Jel, I just tried out your xslt file, it didn't produce the results i was looking for. This is what i got: 13 24 3 4 Someone out there must know how to get what I need, please help me!!! Thanks, LG
  6. largegrape

    XSLT column

    BTW, I found some code to do horizontal columns with less code, if you're interested (see below). But I still need to know how to get vertical columns working. <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html"...
  7. largegrape

    XSLT column

    Hi Jay, I appreciate the help but what I need is vertical columns: 1 6 2 7 3 8 4 9 5 10 not 1 2 3 4 5 6 7 8 9 10 Do you or anyone else out there know how to do this? Thanks, LG
  8. largegrape

    XSLT column

    How do I transform the following: <root> <item> <title>1</title> </item> <item> <title>2</title> </item> <item> <title>3</title> </item> <item> <title>4</title> </item> </root> to look like this: 1 3 2 4 A solution that can configure the number of rows and/or...
  9. largegrape

    INSERT statement conflicted with COLUMN FOREIGN KEY constraint

    I'm trying to update data from Database1 to Database2. Both databases have the same schema. Table1.column3_foreign_key has a foreign key constraint Table2.column1_primary_key (lookup table). Table2.column1 is a primary key with identity. The problem is that when I try to do something like...

Part and Inventory Search

Back
Top