Discussion Area

ask questions, discuss topics, solve problems

This is a public Discussion Area  publicRSS

Thread

    • SPRY Table help
      Thread posted Sep 28 by PFiction3
      173 Views, 1 Comment
      Title:
      SPRY Table help
      Content:

      am displaying an xml doc in a spry table and using spry if statments to selectively display that data. it works just fine accept i get gaps between <tr> tags that i can not fix. Anyone know why or what to do the fix it????

      attached are the html doc and xml doc.

      Code Snippet:

    Comments

    • it would not let me upload xml file, so here is a snipet.

      <?xml version="1.0" encoding="utf-8"?>
      <fees>
          <item catagory="accountFees">
              <descript>Abandoned Account Dormant Fees (after 24 months)</descript>
              <amount>$5.00 per month</amount>
          </item>
          <item catagory="accountFees">
              <descript>Account Activity Printout</descript>
              <amount>$2.00 per page</amount>
          </item>
          <item catagory="accountClosed">
              <descript>Before 90 days (Savings)</descript>
              <amount>$10.00</amount>
          </item>
          <item catagory="accountClosed">
              <descript>Before 90 days (Checking)</descript>
              <amount>$30.00</amount>
          </item>
          <item catagory="accountClosed">
              <descript>By mail after 90 days</descript>
              <amount>$0</amount>
          </item>
          <item catagory="accountFees">
              <descript>Account Reconciliation/Research</descript>
              <amount>$20.00 per hour (min. $20.00)</amount>
          </item>

      </fees>