Spry data not displaying properly (IE Runtime Error)

Built a few pages for a site using Spry to pull in some XML
pages.
They are supposed to update when a certain selection is
chosen and it works flawlessly in Firefox, Opera and Safari but not
in IE.
IE just shows the SPRY placeholders and doesn't push any XML
data into the fields.
I tried to run the browser compatibility and cleaned up
anything that may be affecting it but nothing is showing an error.
The weird thing is, the page has a total of 585 lines but IE
is saying there is an 'Unknown Runtime Error' on the page at Line:
1163 Char: 4.
does the browser continue to count lines as it pulls in
additional information from attached files (like external css,
javascripts, xml, etc.)?
If so, how do I find out where the error is?
i'm pounding my head against the wall trying to solve this,
but i'm not having much luck.
basically, i'm looking for two things:
How to find the error in the code.
How to FIX the code to work in IE.
any help would be greatly appreciated.
I posted this over in the DW forums, but thought it might be
beter solved over here in the SPRY forums.
TIA!

quote:
Originally posted by:
Donald Booth
You can't have spry:regions on <tr> or <table>
Make sure you have then in <div>s or other tags.
You have lots of little regions. You can have a region and a
repeat in the same tag.
Fix that and then try it.
How do I use both detail regions and master regions in a spry
div then?
my whole problem was, I couldn't get the menu items into the
same table as the detail regions.
If I put the whole table into a spry detail region it would
just read the menu items as a detail region and give me static
data. and if I did it as a standard region, the stuff I wanted to
update wouldn't show as a detail region.
I tried to keep them in <span> tags within the table
but I guess IE doesn't like that.
When I try to insert a detail region within an already
existing DIV tagged spry region I get the DW error "
Spry does not support nesting of spry:region blocks.
Obviously, I must be missing something.
it's been a long time since I built sites from scratch
(99-00), but because my company asked, it is now my project.
I have to relearn stuff and am not 100% familiar w/ building
using DIV, SPAN and CSS. I have the basics; just enough to get me
into trouble. maybe it's time to go back through the Spry
Handbook?

Similar Messages

  • My vertical Spry is not displaying properly in IE 8

    I am working on my first website using Dreamweaver CS4 and my spry is not displaying properly over my flash photo gallery.  It looks ok in Firefox (although the borders are missing on my submenu for "sheds tool list") but in IE 8 the submenus can't be seen.  How can I correct this?
    My website is www.toolshedstudio.com
    Here's my css:
    @charset "UTF-8";
    /* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 10em;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 170px;
        border-top-style: outset;
        border-right-style: outset;
        border-bottom-style: outset;
        border-left-style: outset;
        border-top-width: thin;
        border-right-width: thin;
        border-bottom-width: thin;
        border-left-width: thin;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 8.2em;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        border: 1px none #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #000;
        padding: 0.5em 0.75em;
        color: #CCC;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #33C;
        color: #000;
        font-size: 100%;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #33C;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;

    Hi
    You flash movie doesn't have the parameter wmode=transparent. If  you set that, the menu bar will be on top.
    <param name="wmode" value="transparent">
    I hope this helps.
    Ben

  • Smart form header data not displaying properly

    dear abapers,
         i need to display header..but am not able to get the data properly...

    Hi,
         Take a Text Element at the place where u want header(Before main Window) or
         use appropriate Smart Style(font ,size,style) or
         Check the Table ,Template Layout (if used).

  • Spry Widget not displaying properly

    Forgive me for what is, I am sure, a simple problem: I'm new to working in DreamWeaver and am making a site for a friend to teach myself. 
    I have added a vertical spry menu to my webpage.  One item from the menu has a few more specific topics and so a few more items have been added as a submenu.  I had done something that caused there to be a big space (the same height as the pop out submenu) to appear within the main menu.  I fiddled around and now seem to have changed something causing the submenu to display in the main menu along with the rest of the items. How do I make the submenu return to being invisible until the cursor is held over the specific menu item, and then pop out to the right?
    As I'm new to all of this, I'm not even entirely sure of what part of the code to show in order for someone to tell what's wrong... Hopefully this is of help.  The 5 items (Highland Cattle through to Produce) are intended to be the fly out submenu. 
    <div class="sidebar1">
        <ul id="MenuBar1" class="MenuBarVertical">
          <li><a href="#">Home</a></li>
          <li><a href="#">About Us</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">Our Products</a>
            <ul>
              <li><a href="#">Highland Cattle</a></li>
              <li><a href="#">English Black Sheep</a></li>
              <li><a href="#">Rideau Arcott Sheep</a></li>
              <li><a href="#">Heritage Poultry</a></li>
              <li><a href="#">Produce</a></li>
            </ul>
          </li>
          <li><a href="#">Buying Local</a></li>
          <li><a href="#">Heritage Breeds</a></li>
          <li><a href="#">Photo Gallery</a></li>
          <li><a href="#">Contact Us</a></li>
        </ul>
      </div>
      <div class="content">
    Thanks!  Robyn

    As I'm new to all of this, I'm not even entirely sure of what part of the code to show in order for someone to tell what's wrong...
    The best approach by far is to upload a page to the web which displays the problem you're facing.
    Then post a link to that page here. A link gives us access to every file that we need to inspect.
    That way, it's quick and easy for you to post and quick and easy for us to check and diagnose with browser based troubleshooting tools and will gain many more responses here.

  • Spry menu not displaying properly in IE8

    Right up front, I'm new to Spry.
    I built a flyout menu, nothing fancy just standard.
    Works and looks fine in Firefox, Opera, Safari.  But IE 8 on a PC the first items are "running together and the "twisty >" is under the text.
    Are there any known issues I need to be aware of when using Spry menus in IE?
    Thanks for any comments or suggestions.
    Steve

    Yes you're right code would help.  I took the smallest page and pasted in the code below.  I have bolded the spry menu itself.  I'm going to create another menu on a new page from scratch and without any og the other pieces of the page and see if it works in IE8
    anothe page with the same munu is at:
    http://davidwrightlandscape,com/index2.html
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>David H Wright - Landscape Architect</title>
    <style type="text/css" media="all">
    <!--
    @import url("CSSSculptor/1ColumnFixedCenteredHeaderandFooter_TahitiSea_css/screen.css");
    -->
    </style>
    <style type="text/css" media="print">
    <!--
    @import url("CSSSculptor/1ColumnFixedCenteredHeaderandFooter_TahitiSea_css/print.css");
    body {
    background-color: #FFF;
    -->
    </style>
    <script type="text/javascript" src="CSSMenuWriter/cssmw/menu.js"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <style type="text/css" media="all">
    <!--
    @import url("CSSMenuWriter/cssmw/menu.css");
    -->
    </style>
    <!--[if lte IE 6]>
    <style type="text/css" media="all">
    @import url("CSSMenuWriter/cssmw/menu_ie.css");
    </style>
    <![endif]-->
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="outerWrapper">
      <div id="header">
        <p align="center"><img src="images/DaveWright-logo-WEB.jpg" width="345" height="220" alt="Logo" /><img src="images/DSC_0076.jpg" width="416" height="220" alt="Lindsey OverHead - 076" /><br />
        </p>
    PO Box 100 - Branchville, NJ 07826 - Phone 973-948-2090 - Fax 973-948-2083 </div>
      <div></div>
        <img src="images/Servicebanner2-small.jpg" alt="" width="961" height="30" border="0" usemap="#Map1">
      <map name="Map1" id="Map1">
        <area shape="rect" coords="189,4,380,27" href="firm.html" alt="Firm Information">
             <area shape="rect" coords="61,2,154,27" href="index.html" alt="Return Home">
        <area shape="rect" coords="401,5,532,26" href="portfolio.html" alt="portfolio">
        <area shape="rect" coords="553,5,723,26" href="site.html" alt="Site Amenities">
        <area shape="rect" coords="754,5,903,27" href="contactus.html" alt="Contact Us">
      </map>
      <div id="contentWrapper">
        <div id="content">
          <h1 align="center"><img alt="" name="Image1" width="220" height="100" id="Image1" /><img src="" alt="" width="220" height="100" id="Image2" /><img src="" alt="" width="220" height="100" id="Image3" /><img src="" alt="" width="220" height="100" id="Image4" /></h1>
    <h1><br />
      Plantings Selection and Examples</h1>
    <p> </p>
    <p align="center"><img src="" alt="" width="920" height="500" id="Planting_collage" /></p>
        </div>
      </div>
      <div id="footer">
          <div><span class="parent"><a href="#"><img src="images/DaveWright-logo-FOOTER.jpg" alt="David Wright Landscaping" width="120" height="61" align="left" id="logo" style="background-color: #009966;" /></a></span>
            <ul id="MenuBar1" class="MenuBarVertical">
              <li><a href="index.html">HOME</a>          </li>
              <li><a href="firm.html" class="MenuBarItemSubmenu">FIRM INFORMATION</a>
                <ul>
                  <li><a href="aboutus.html">About Us</a></li>
                  <li><a href="services.html" class="MenuBarItemSubmenu">Services</a>
                    <ul>
                      <li><a href="design.html">Design</a></li>
                      <li><a href="installation.html">Installation</a></li>
                      <li><a href="gardeningservices.html">Gardening Services</a></li>
                      <li><a href="siteplanning.html">Site Planning</a></li>
                    </ul>
                  </li>
                  <li><a href="news.html">News</a></li>
                </ul>
              </li>
              <li><a class="MenuBarItemSubmenu" href="portfolio.html">PORTFOLIO</a>
                <ul>
                  <li><a href="residential.html">Residential</a>              </li>
                  <li><a href="public.html">Public</a></li>
                  <li><a href="display.html">Display Gardens</a></li>
                </ul>
              </li>
              <li><a href="site.html" class="MenuBarItemSubmenu">SITE AMENITIES</a>
                <ul>
                  <li><a href="plantings.html">Plantings</a></li>
                  <li><a href="hardscape.html">Hardscapes</a></li>
                  <li><a href="water.html">Water</a></li>
                  <li><a href="furnishings.html">Furnishings</a></li>
                </ul>
              </li>
              <li class="MenuBarVertical"><a href="contactus.html">CONTACT US</a></li>
            </ul>
        </div>
    <script type="text/javascript">if(window.attachEvent) { window.attachEvent("onload", function() { cssmw.intializeMenu('cssmw',{select_current: 0, orientation: 2}); }); } else if(window.addEventListener) { window.addEventListener("load", function() { cssmw.intializeMenu('cssmw',{select_current: 0, orientation: 2}); }, true); }</script>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>

  • OLE Objects are not displayed properly-overlap characters and empty page

    I'm using CR4E 12 Runtime libraries to load and view reports that are created in CR designer  v10. Some of the OLE Objects (not all) are not displayed properly.
    1) A full page contains terms and conditions as ole object is not at all displayed and just shown as black image.
    2) Some data in a table (OLE Object) shown as overlapped characters.
    Any body know the reason and is there any workaround to solve this issue?
    Thankyou very much for your time.

    Your problem seems to be with the character encoding you are using for your text.  A quick google search for ColdFusion character encoding should turn up the answer.  In case you are interested in learning more:
    http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?cont ext=ColdFusion_Documentation&file=00001201.htm
    Hope that helps!
    - Michael

  • Colours of imported postscript not displayed properly in illustrator

    Hi,
    I produced a colour map and colour gradient legend as a postscript file (.ps) using generic mapping tools software running under linux. When I import this file into illustrator (in windows 8) the colour map is fine, but the colour gradient does not display properly. It appears as a bunch of white spaces and vertical colour bands of random colour. When I then try to export the file as a .pdf the colour gradient appears as solid blue. I've also tried producing a .pdf instead of .ps but it makes no difference.
    It's worth noting that I have done this in the past with no problems. This particular problem first occurred a few months ago and is now persistent.
    Any help or suggestions are appreciated.

    There are no import options to change in Illustrator to make it work. Usually I argue against using Illustrator as a general purpose PDF editor, but since it seems to be your only option here it is better than nothing (i.e., what you got from Illy itself).
    It's worth noting that I have done this in the past with no problems. This particular problem first occurred a few months ago and is now persistent.
    The problem is that the color bar is a 4-bit color image. Did that recently change with an update of your mapping software? Open one of your Illy files that were okay and check the color bar -- is it vector or bitmap? If it's a bitmap, can you "edit" it with Photoshop? (It's not a good day to be an Adobe spokesperson: much to my surprise, Top Market best Seller Photoshop cannot edit 4-bit color images!)
    Let's talk Versions as well. I distilled with Distiller 9, but it seems that is not the magic solution (as you already see that it worked). Both Illustrator and InDesign: CS4. Platform: Windows 7.
    That combo works for me.
    A minor -- relatively unrelated -- note:
    garthboy9999 wrote:
    I also tried to import the .ps file into indesign (which I've never used before), as you suggest, but I got an error about the program not being able to recognize the file format (maybe a plugin missing?).
    No, that indicates you attempted to "open" your ps. You must create a new document first, then use "Place" -- Adobe's terminology for what every other program on the planet calls "Import". It's relatively inconsequential, because either failure or success with InDesign doesn't mean that much; I only included it to point out another blatant unnecessary difference between the two programs.

  • Pages not displaying properly in Publisher instances as we activated the page from Author

    HI All,
    Pages not displaying properly in Publisher instances as we activated the page from Author. In author it is working well but in Pulisher it is showing first 2 lines of the page and then showing error as
    Apache sling/2.2 Hot Spot ****** Sun OS error
    Please help me on this.IS this issue with the templates or components are we using?

    Ok, then let's go the long way and try to reduce the number of possible root causes:
    1) Is your problem reproducible on this publish? (I suppose it is)
    2) Is it reproducible on other publishs as well, which have received the same page with the same application?
    3) Can you reproduce it on other replicated pages as well?
    4) When you upload a page to such an affected publish via a content package, does this page render correctly?
    5) Does this problem appear on other environments as well?
    6) Do you use dispatcher when you get this result? Or do you get it when you request the page directly of CQ5?
    7) What's the HTTP statuscode when you render this page? You can see it in the request.log of CQ5.
    If you change logging via Felix Console, you don't need to restart the instance.
    kind regards,
    Jörg

  • Upgrade to ver 1.6 pages not displayed properly in Firefox

    Hi,
    I upgraded HTML DB to Ver. 1.6 today. The installation was okay, did not raise any errors, but when I use Firefox to log on to HTML DB, the pages are not displayed properly. IE is able to resolve the pages correctly.
    Do I need to get a plug-in for Firefox? Ver. 1.5 was working perfectly with Firefox.
    TIA

    My design view won't display properly in Mozilla or IE. The images show. The CSS (core and flow) are found according to the access logs. But it doesn't display nicely at all. This was an upgrade from 1.5 to 1.6. 1.5 looked fine. My old applications from 1.5 display properly.

  • Fonts not displaying properly (square symbols)

    I'm trying to troubleshoot an error in a 3rd party vendor's java applet where fonts are not displaying properly. It seems as though when the arial bold font is used, it does not display from a particular computer. (this is a company terminal server, by the way).
    To illustrate what I mean, I've posted links to small images showing a working example from another machine:
    http://img.photobucket.com/albums/v317/d0hboy/font_problem_working.gif
    .. and a non-working example:
    http://img.photobucket.com/albums/v317/d0hboy/font_problem_error.gif
    (apologies, I don't know how to include images in this forum).
    Vendor support can only provide support so far as requiring a certain version of a JRE is installed -- after that, it's up to me. I've tried comparing the two JRE/lib/Fonts directories and Windows regional settings but they are the same. I've also tried setting the Sun Java console trace level to DEBUG while Internet Explorer is running the applet.
    Is there any where I can look to find out what font is missing, or whether the "JavaFontNotFound" exception is firing? Any help or pointers would be appreciated.

    Make sure that you're using the correct font. Arial Bold does not provide full Unicode support. Thsi webpage may assist you:
    http://www.fileformat.info/info/unicode/font/index.htm

  • Web page not displaying properly - content in wrong place

    It's been years since I've done html and this is the first time using Dreamweaver.  All my pages have the same header then a horizontal row of link buttons.  I have used Divs to create 3 sections of content underneath this.  Each div has the following defined for it: #Div { position:absolute; width:913px; height:440px; z-index:1; left: 10px; top: 302px; My main page is not displaying properly.  There is a section on the left with text/photo.  To the right of this section, there is a second div containing an image map.  In Dreamweaver, I preview the page (using Chrome) and it looks fine.  However, when I upload it to the web site and then view that page in the web site, the second div is thrown to the upper top right of the page.  I do not know what is causing this and how to fix it.  Can anyone answer this and perhaps give me some tips?

    Start by fixing your HTML errors.  You have a significant number of them.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fgivethegaveltotavel.com%2F
    Also, you have some CSS errors.
    W3C CSS Validator results for http://givethegaveltotavel.com/ (CSS level 2.1)
    Position:absolute is never a good way to layout your web pages.  For 98% of what you do, positioning is not required and should be avoided.  Learn to use CSS margins, padding and floats to align elements where desired.
    CSS margin property.
    CSS padding property
    CSS Float
    Nancy O.

  • Webfont not displaying properly in design mode or appearing in font list

    Just updated Muse and now my heading webfont (Nunito) is not displaying properly in design mode or appearing in the font list. It is, however, displaying properly in preview mode. When I try and delete the font and then add it again I get an error message that says the font can't be added. Any idea what's going on?

    Hello,
    Please try the steps below. Hopefully this will fix the problem.
    1. Close Muse
    2. Rename the folders named tk1 and tk2 in the following locations
    On Windows: %appdata%\com.adobe.AdobeMuseCC.2014.2\Local Store. You can type this in the Path bar at the top of the Windows Explorer window
    On Mac: ~/Library/Preferences/com.adobe.AdobeMuseCC.2014.2/Local Store. You can type this in the Go To Folder dialog (Shift+Command+G)
    3. Launch Muse and add the font again
    Please let me know if that helps.
    Regards
    Vivek

  • Why do pages like natwest and ELC not display properly? It is like their text is too large, yet other pages are fine?

    I have abrand new ASUS notebook with a 11 and a half inch screen. I have up to date Windows system, and am using the latest version of firefox. I have gone through all the tips in the help section of firefox including clearing cache and cookies, and also checking all settings for text, however none of this has corrected the problem. For example when i log into my online banking the text is that big it doesnt fit into the boxes set on natwest screen, so therefore i can view all of the text and it gets jumbled together in some places. With ELC a good example is the menu across the top of the page which gives all of the categories of products they sell for you to click on. As the writing is too large it does not display properly. Im not sure what else to do to crrect this. Can anyone help?

    Try 2 things, if they can help:
    1. on the same window, where you have 1 of above site opened. Do ctrl + F5.
    2. Do Ctrl + shift + P, it will open a new private window and browse any of the above site.

  • Text item of varchar2(2000) with vertical scrollbar not displaying properly

    Hi,
    I have a text item of varchar2(2000) with a vertical scroll bar.
    I am populating data into the text item using a forms procedure.
    (Look at the sample code below)
    The problem is the rpadding is NOT displayed properly. I mean
    the detail records are NOT shown straight below their respective column heading
    in the text item. (BUT if I cut this stuff from the text item and paste it in a
    notepad, then the alignment is correct and the data is shown below their
    respective column headings)
    My code is something like below ...
    CURSOR c_get_lab_client_results
    IS
    SELECT res.lr_id lr_id, org.short_name org_name, TO_CHAR(res.specimen_taken_date,'DD-MON-YYYY') std, substr(res.accession_number,1,20) acc_num, res.lr_type lrtype, res.hdc_id hdcid
    FROM bc_organisations org,
    cq_laboratory_results res
    WHERE cli_id = :clients.cli_id
    AND lr_id = :results.lr_id
    AND res.org_id = org.org_id
    ORDER BY lr_id;
    Begin
    -- Header
    SELECT :TRFRDTLS.TRANSFER_DETAILS||RPAD('ORGANISATION',16,' ')||' '||RPAD('SPECIMEN DATE',15,' ')||' '||RPAD('ACCESSION NUMBER',20)||' '||RPAD('RESULTS',16,' ')||chr(10)||chr(10)
    INTO :TRFRDTLS.TRANSFER_DETAILS FROM DUAL;
    -- Detail
    FOR c1 IN c_get_lab_client_results LOOP
    ls_results := RPAD('XXXX',16,' '); -- Just for example
    SELECT :TRFRDTLS.TRANSFER_DETAILS||RPAD(TO_CHAR(c1.org_name),16,' ')||' '||RPAD(c1.std,15,' ')||' '||RPAD(c1.acc_num,20)||' '||ls_results||chr(10)
    INTO :TRFRDTLS.TRANSFER_DETAILS FROM DUAL;
    END LOOP;
    End;
    Thanks in advance.
    Cheers

    Try using a monospace font such as Courier New for the text item.

  • Page does not display properly in 3.0.4

    If someone from apple reads these postings, the following page does not display properly in Safari 3.0.4 with mac os leopard.
    I can not find an email to email directly to you.
    http://bigten.cstv.com/sports/m-wrestl/spec-rel/021308aab.html

    Hi
    Welcome to Apple Discussions
    Best way to reach Apple is to send a Bug Report via the Safari Menu>Report Bugs to Apple. While Apple doesn't respond directly to these notes, the information gets in the hands of Software Engineers at Cupertino.
    Specific to the referenced site, there are multiple code errors, which would contribute to the rendering problem. Safari is a lot more specific about following correct code than other browsers. I suggest passing the Validation report on to the site developers. Good code practices (W3) makes for better uniformity and security on the Internet.

Maybe you are looking for