TP3 Oracle Three Column Layout Template error

Hi,
if I choose for page template: Oracle Three Column Layout and run this page I get blank page with message: Error trying to include:viewId:/oracle/templates/threeColumnTemplate.jspx uri:/oracle/templates/threeColumnTemplate.jspxjavax.servlet.ServletException: Error in servlet
thanks,
Branislav

Hi,
if I exctract threeColumnTemplate.jspx from oracle-page-templates.jar and store it in my project as a template file it works and it works also with FF 2.0.0.11
thanks,
Branislav

Similar Messages

  • How to edit the "Oracle Three Column Layout" page template?

    Hello all,
    My question is very simple: how can one edit the Oracle Three Column Layout page template? I tried searching the file system for a file called "threeColumnTemplate.jspx" but I cannot seem to find it. Is it hidden into a jar file of some kind? Or at least can anyone tell me the name of the nice component located in the upper right corner that displays the loading activity?
    Thanks.

    Extract oracle-page-templates.jar with winzip & browse to location oracle/templates
    open the file threeColumnTemplate.jspx using jdeveloper.
    after you open it , you can edit the logo , save the changes & create this jar again or save it to the zip which will automatically update the jar.

  • JSF Page - Three Column Layout

    Hi all,
    I'm trying to create a JSF page with Oracle Three Column Layout but am only one column in the visual design view. Moreover, in the visual design view, i cannot see the normal Oracle logo on the left corner.
    Heres he steps i used:
    1. Right click ViewController and select New.
    2. Under Web Tier i click JSF and selected JSF Page then click OK
    3. In the Create JSF Page dialog, i renamed the page and in Page Template drop down i select Oracle Three Column Layout and checked Create as XML Document then click OK
    I'm new in JDeveloper and if theres any steps i'm missing then please let me know.
    Thanks in advance
    Stoneiidol

    Hi,
    Mostly a Jdeveloper design view problem. Did you try closing and reopening the page? Or restarting JDeveloper?
    The code Generated in my Jdev is:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1">
    <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx"
    id="pt1">
    <f:facet name="center"/>
    <f:facet name="header"/>
    <f:facet name="end"/>
    <f:facet name="start"/>
    <f:facet name="branding"/>
    <f:facet name="copyright"/>
    <f:facet name="status"/>
    </af:pageTemplate>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    What Amit said is alos true.
    Regards,
    Venkat

  • Changing logo in Oracle three column template

    Hi All,
    Can we change the Oracle image being displayed at the top left corner of the built-in Oracle three column template in Oracle JDeveloper 11g?
    Thanks ... Best Regards
    Bilal

    Hi,
    You will helpful following
    How to change default templateand check for
    http://rcastrosp.blogspot.com/2010/04/oracle-adf-built-in-templates.html

  • Help with three column layout please

    Hello All
    I have been struggling with a three column layout to incorporate inserted images on the right. Please see http://www.greenpatchwebsites.com/ridgeway/index2.html
    At the moment I have resorted to a background image but I am not happy with the quality and lack of positioning in relation to the text.
    I have looked at lots of sites re faux / three columns etc but I can't make it work. As you will see from the attached css there are lot of divs because of the expanding box and I am getting in a muddle.
    Expert help here would be very gratefully received and I thank you in advance.

    Hi There,
    You can refer to 3 column fixed template (with header and footer) provided by DW itself. For reference how to make a 3 column layout use following code. Just save the whole of this as .html file and preview. Go through the structure and css classes in the head to understand the layout.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body  {
         font: 100% Verdana, Arial, Helvetica, sans-serif;
         background: #666666;
         margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
         padding: 0;
         text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
         color: #000000;
    .thrColFixHdr #container {
         width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
         background: #FFFFFF;
         margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
         border: 1px solid #000000;
         text-align: left; /* this overrides the text-align: center on the body element. */
    .thrColFixHdr #header {
         background: #DDDDDD;
         padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .thrColFixHdr #header h1 {
         margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
         padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .thrColFixHdr #sidebar1 {
         float: left; /* since this element is floated, a width must be given */
         width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
         background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
         padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
    .thrColFixHdr #sidebar2 {
         float: right; /* since this element is floated, a width must be given */
         width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
         background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
         padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
    .thrColFixHdr #mainContent {
         margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
         padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    .thrColFixHdr #footer {
         padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
         background:#DDDDDD;
    .thrColFixHdr #footer p {
         margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
         padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
         float: right;
         margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
         float: left;
         margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
         clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    -->
    </style><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .thrColFixHdr #sidebar1 { width: 180px; }
    .thrColFixHdr #sidebar2 { width: 190px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
    .thrColFixHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]--></head>
    <body class="thrColFixHdr">
    <div id="container">
      <div id="header">
        <h1>Header</h1>
      <!-- end #header --></div>
      <div id="sidebar1">
      <h3>Sidebar1 Content</h3>
        <p>The background color on this div will only show for the length of the content. If you'd like a dividing line instead, place a border on the left side of the #mainContent div if it will always contain more content. </p>
        <p> </p>
      <!-- end #sidebar1 --></div>
      <div id="sidebar2">
        <h3>Sidebar2 Content</h3>
        <p>The background color on this div will only show for the length of the content. If you'd like a dividing line instead, place a border on the right side of the #mainContent div if it will always contain more content. </p>
        <p> </p>
      <!-- end #sidebar2 --></div>
      <div id="mainContent">
        <h1> Main Content </h1>
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent aliquam,  justo convallis luctus rutrum, erat nulla fermentum diam, at nonummy quam  ante ac quam. Maecenas urna purus, fermentum id, molestie in, commodo  porttitor, felis. Nam blandit quam ut lacus. Quisque ornare risus quis  ligula. Phasellus tristique purus a augue condimentum adipiscing. Aenean  sagittis. Etiam leo pede, rhoncus venenatis, tristique in, vulputate at,  odio. Donec et ipsum et sapien vehicula nonummy. Suspendisse potenti. </p>
        <h2> </h2>
        <!-- end #mainContent --></div>
         <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
      <div id="footer">
        <p>Footer</p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    </html>
    Don't be overwhelmed as this is simple code only (much like your own page). You can then divide your background image and put one part in the center column (mainContent DIV) and the other in the right sidebar (sidebar2 DIV).
    Hope this helps.
    Regards,
    Vinay

  • Duplicate Layout Template error

    Hi,
    I have designed a print layout with Crystal Report (A/R Invoice) and now I would like to duplicate it and create a AR Credit Note layout, similar to Invoice layout.
    When I use th enew utility of sap 8.81 to Duplicate Layout Template (Administration -> Utilities), i'm able to duplicate the layout, but if I try to enter in the new layout with Crystal Report Designer to add a new field, i'm not able to find the AR Credit Note table (ORIN) and I'm not able to add the new field. If I use the new layout with no modify, all the data is correct, but if I want to add a new field I'm not able to do it. Is it a bug or I use a wrong procedure?
    Regards
    Marco

    HI,
    Alternate way you export AR Invoice report in PACKAGE, use same package to import but choose RIN (AR Credit Notes) and place with different name.
    Again go i n Administrator > Setup > General > Report and Layout >
    Edit presently added report and try to add new field on rpt.
    Hope this may work, please do with TEST database
    Thanks
    Kevin

  • Minor help needed with four-column layout

    Hello,
    I took a three-column DW template and turned it into a
    four-column layout, and I'm very proud to say that I've figured out
    most of it myself. (CSS is NOT my strong point.) However, I'm
    having some problems with the background in the fourth column.
    http://www.patiastephens.com/new
    How can I make the top of the fourth column/background level
    with the other three columns?
    And how can I get the background to repeat?
    I plan to eventually put ads in the fourth column, and I may
    or may not leave the background in, depending on how it looks.
    Thanks much!

    Hi, thank you, Bonnie.
    I did mess with the repeat properties, but nothing helped.
    However, I ended up moving the background image to the entire page;
    I think it looks better. (See updated page if you're interested.)
    Now I'm trying to figure out why I get float drop when I move
    the main content column above columns 3 and 4 (so it loads first)
    And why the text in columns 1 and 4 is pushed down ....
    Aaargh.

  • Photo Gallery combined with three column CSS

    Hi, I am trying to implement your photo gallery into our
    school site and I am having trouble with the layout. I am using a
    three-column layout created with CSS and JS, and then placing the
    photo gallery inside of this. What happens is when you pull up the
    page the three column layout does not position everything correctly
    until you resize the browser window (ever so slightly). Help, have
    been staring at CSS and JS code now for about a month and cannot
    get it to behave, any help would be greatly appreciated. Thanks.
    HSPVA Photo
    Gallery

    "kjuliff" <[email protected]> wrote in message
    news:eqij22$are$[email protected]..
    >I can reproduce your problem, gnd4evr&evr. I have XP
    an IE7 and FF2.
    >It's fine
    > in FF2 but not in IE7.
    >
    > I have a similar problem, and I think it's related. This
    problem
    > really needs
    > addressing!
    >
    > Go to
    http://www.coolabah.com/spry/demos/gallery/
    and look at the
    > bottom of
    > the page (in either IE or FF). You will see a google
    adsense div.
    > Although it
    > is specified in it's div tab as being 15 px in height,
    it takes up
    > much more
    > than that.
    >
    > I HAD wanted to have these google links at the top of my
    gallery, but
    > cannot
    > as I cannot force the div to be only 15px in height.
    >
    > I posted this problem a few weeks ago but no one
    answered.
    Your Google ads are in an iframe. This rule will get you
    started
    iframe {
    height: 2em !important;
    position: absolute;
    top: 650px;
    You can leave the position static if you like, and it will
    move up and
    down with your images - I found that a bit distracting,
    though. If you
    leave it static, use a top-margin to establish space between
    your image
    and the ads.
    The !important notation is required for the height,
    indicating either a
    conflict somewhere in your markup or CSS, or poor Google code
    (not
    uncommon).
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"

  • Oracle 11g bug for column ambigously defined error

    I have below format query running on Oracle 10g without any issues
    select col1
    from (select col1
    from (select 'A' col1
    from dual)
    ) v1
    inner join (select col1 as col2
    from (select 'A' col1
    from dual)
    ) v2
    on (v1.col1=v2.col2);
    When I run the exact same query on Oracle 11g I get column ambiguously defined error. But when I change the query to as below it works fine on 11g
    select v1.col1
    from (select col1
    from (select 'A' col1
    from dual)
    ) v1
    inner join (select col1 as col2
    from (select 'A' col1
    from dual)
    ) v2
    on (v1.col1=v2.col2);
    Is it because 11g ignores column alias in my inner queries.

    I'd tend to agree that this seems to be a bug in 11.1.0.7 (at least, that's the version I'm running it in)
    It's not even that Oracle doesn't know about the column aliases, you can remove the aliases in the ON without a problem, i.e.
    SELECT v1.col1
       FROM
      (SELECT col1 FROM
        (SELECT 'A' col1 FROM dual
      ) v1
    INNER JOIN
      (SELECT col1 AS col2 FROM
        (SELECT 'A' col1 FROM dual
      ) v2
         ON (col1=col2);works fine. Using the old join syntax also seems to work fine
    SELECT col1
       FROM
      (SELECT col1 FROM
        (SELECT 'A' col1 FROM dual
      ) v1,
      (SELECT col1 AS col2 FROM
        (SELECT 'A' col1 FROM dual
      ) v2
      WHERE (col1=col2);So it appears that something in the SQL 99 parser is broken. Have you logged a bug in Metalink?
    Justin

  • Deleting duplicate rows based on three columns in Oracle 8i

    Hi all,
    The database we use is Oracle 8i.
    The query below raises the too_many_rows exception when I launch an application. So I want to delete the duplicated rows :
    select polarisation_1, polarisation_2
    into v_pol1_tech, v_pol2_tech
    from v_cfh_lien_element
    where nom_lien = p_nom_lien
    AND num_canal_1 = p_num_canal_1
    AND freq_emise_1 = p_freq_emise_1;
    Notice that with many possible values of the parameters p_nom_lien, p_num_canal_1 and p_freq_emise_1 then the exception is raised.
    So how to delete generally the duplicated rows based on the three columns "nom_lien" , "num_canal_1" and "freq_emise_1" ?
    Thank you very much indeed.

    Check the other thread with same question deleting duplicate rows based on three columns in Oracle 8i

  • Want attach the XML data file with layout template in Oracle 10g

    Hi All,
    I need a help from you genius guys.
    I am genrating reports in BI with xml the procedure which I am following is as below.
    1. generating XML from the RDF
    2. creating a template in .rtf format
    3.after that loading the xml to the template then getting the required report.
    This all is doing through the given buttons
    But now my requirement is to create the gui from user can select the report and get the desire output file so how we would be able to attach the XML data file with layout template in Oracle 10g.
    If you require more detail please let me knnow.
    Thanks,
    Harry

    I am not using Oracle apps.
    I am using oracle 10g reports and I get something in it like one patch I downloded and one java code is having which creates the batch file ...still I am working on it ..
    If you will get some please share so that it will be helpful.
    Thanks,
    Harry

  • Error While running Oracle Look and feel Template Form -  (LAF_TEMPLATE)

    Forms Version 10.1.2.3
    JRE version 1.6.0_30
    Operating System Windows XP
    I am trying to setup oracle look and feel project on my local machine.
    For that i upgraded forms to 10.1.2.3 then i also applied path no *9593176* (But not yet performed steps related to jacob and webutil).
    Problem : When i run Oracle look and feel template form it comes up with following error.*
    Forms Applet version is : 10.1.2.3
    Exception in thread "thread applet-oracle.forms.engine.Main-1" java.lang.NoSuchMethodError: oracle.forms.handler.IHandler.getApplet()Ljava/applet/Applet;
         at oracle.forms.fd.DrawLAF.init(DrawLAF.java:285)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Hello,
    I have spent a lot of time to indicate wherever I could that you don't have to ask questions about the LAF on this forum. You have two other different locations, a dedicated email and a dedicated forum.
    At the first sight, it seems that you have not used the laf_10123.jar in your archive tag.
    Thank you,
    Francois

  • Template Error Msg

    Hey there folks,
    I've run into an odd problem with the a layout template I created off the index file I made for the portfolio website I wish to make, and have 'dummy' index files for all of the relevant folders ready for the template to be applied to, but whenever I try to apply said template to any of them I get this notification:
    'There is an error at line 11, column 7 (absolute  526) of "C:\Users\...\template1.dwt":
    Nested editable regions'
    Is it something to do with the attached css file [even though no visual media is, obviously, displaying in this template format]?
    It's really annoying nevertheless, and I want to sort it asap [I'm workin' on a Web Design course alongside this personal project of mine].
    I would attach my website folder [so far], sans the assets folder, but there doesn't appear to be the option to here[?].
    Any suggestive nuggets of wisdom would be much appreciated!
    ~Dan~

    I'm gonna take the next hour or two before I tuck in for the night to look at some Dreamweaver CS4 Template tutorials [whilst they are still active, what with CS5's recent release], but I thought I'd post the code for the template file I created from my index one, just to see if any glaring errors are apparent to anyone [I've only got onto the Template portion of my Web Design course in the last two or three days]:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Daniel Bevis Portfolio</title>
    <!-- TemplateEndEditable -->
    <link href="../danielbevis_portfolio_index.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <body>
    <div id="container">
    <div id="header">Daniel Bevis Portfolio</div>
    <div id="sidebar">
      <ul>
        <div id="nav">
          <li><a href="../Gallery/index.htm">Gallery</a><ul>
          <li><a href="../Gallery/Illustrations/Abstract/index.htm">-Abstract-</a></li>
          <li><a href="../Gallery/T-Shirt Designs/index.htm">-T-Shirt Designs-</a></li>
          <li><a href="../Gallery/Logos/index.htm">-Logos-</a></li>
          <li><a href="../Gallery/Printed Media/index.htm">-Printed Media-</a></li>
          <li><a href="../Gallery/Web Design/index.htm">-Web Design-</a></li>
        </ul>
        </li>
          <li><a href="../Produced Work/index.htm">Produced Works</a></li>
          <li><a href="../Testimonials/index.htm">Testimonials</a></li>
          <li><a href="../my_links.htm">My Links</a><ul>
          <li><a href="http://www.facebook.com/home.php#!/profile.php?id=787869885" target="_blank">-My Facebook-</a></li>
          <li><a href="http://chosenoneknuckles.deviantart.com/" target="_blank">-My Deviantart-</a></li>
          <li><a href="http://new.myfonts.com" target="_blank">-MyFonts-</a></li>
          <li><a href="http://abduzeedo.com/" target="_blank">-Abduzeedo Graphic <br> Design Blog-</a></li>
        </ul>
        </li>
        <li><a href="mailto:[email protected]">Contact</a></li></div>
        </li>
      </ul>
    </div>
    <div id="mainContent">
      <div id="header2"><!-- TemplateBeginEditable name="pagetitle" -->
        <p>PAGE TITLE</p>
      <!-- TemplateEndEditable -->
        <p></div>
      <!-- TemplateBeginEditable name="mainContent" -->
      <p>Main content region</p>
      <!-- TemplateEndEditable -->
      <p></div>
    <p class="clearfloat"> </p>
    <div id="footerlinks"><!-- #BeginLibraryItem "/Library/index_footerlinks.lbi" -->
      <ul>
        <li><a href="../Gallery/index.htm">Gallery</a></li>
        <li><a href="../Produced Work/index.htm">Produced Works</a></li>
        <li><a href="../Testimonials/index.htm">Testimonials</a></li>
        <li><a href="../my_links.htm">My Links</a></li>
        <li><a href="mailto:[email protected]">Contact</a></li>
      </ul>
    <!-- #EndLibraryItem --></div>
    <div id="footer"><!-- TemplateBeginEditable name="footer" -->
      <p>Copyright 2010 by Daniel James Bevis | All rights reserved</p>
    <!-- TemplateEndEditable -->
      <p></div>
    </div>
    </body>
    </html>
    Again, many thanks in advance for any more pointers.
    ~Dan~

  • Template Error I've never seen before

    I've been using Dreamweaver and it's template system for over
    5 years now. Today, I'm redoing a site, started it like I always
    do, utilizing the CSS Blank page layout for a three column. Set up
    my template, looks fine. Then I try inserting some PHP/Mysql call
    to actions in the right hand column, outside of a template region
    and I receive the error:
    You have added or changed code outside the <html> tag.
    This change will not be copied to documents based on the template
    unless you insert this tag in the <head> section of your
    template:
    <!-- TemplateInfo codeOutsideHTMLIsLocked="true"
    -->
    Now I have done this before and I've never received this
    error. When I put the above in the head section then I receive
    nothing but errors. Looking at the code it wants me to put in, in
    my thinking it should =false not true. I don't want my code locked
    outside my HTML since I'm dealing in PHP/Mysql environment, there
    is a lot that goes on outside of the html code.
    Did Dreamweaver do an updated that messed things up? Why did
    it work fine last week and not this week.
    Thanks.

    That's not an error. It's an alert. It's for information
    only. Read it
    carefuly and understand it. Then ignore it.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "cheryljames" <[email protected]> wrote in
    message
    news:ftgp3m$qtl$[email protected]..
    > I've been using Dreamweaver and it's template system for
    over 5 years now.
    > Today, I'm redoing a site, started it like I always do,
    utilizing the CSS
    > Blank
    > page layout for a three column. Set up my template,
    looks fine. Then I
    > try
    > inserting some PHP/Mysql call to actions in the right
    hand column, outside
    > of a
    > template region and I receive the error:
    >
    >
    You have added or changed code outside the <html> tag.
    This change will
    > not
    > be copied to documents based on the template unless you
    insert this tag in
    > the
    > <head> section of your template:
    >
    > <!-- TemplateInfo codeOutsideHTMLIsLocked="true"
    -->
    >
    > Now I have done this before and I've never received this
    error. When I put
    > the
    > above in the head section then I receive nothing but
    errors. Looking at
    > the
    > code it wants me to put in, in my thinking it should
    =false not true. I
    > don't
    > want my code locked outside my HTML since I'm dealing in
    PHP/Mysql
    > environment,
    > there is a lot that goes on outside of the html code.
    >
    > Did Dreamweaver do an updated that messed things up? Why
    did it work fine
    > last week and not this week.
    >
    > Thanks.
    >

  • Long list of names - three columns

    Hi,  I am tryhing to do the follow:
    -  I have a long list of names which need to be continually updated.
    -  List is in Alphbetical order
    -  As the list is so long I want to have three columns per page.
    -  How can I keep updating and making sure they are in alphabetical order without having to keep organising them.
    If you select and put into ascending order it only does one column at a time not the whole list?
    Please can you help.
    Thanks.
    Ozpaws

    Hi Oz,
    I'm disappointed that we haven't heard from you since my (and Jerry's and Jeff's) most recent posts.
    I've done a bit of further exploring since then. Here's a sample of the results, using the same data as in my earlier suggestion, but with the result data moved into two three-column tables.
    The result tables (Print3x, on Sheet 1, on the right, are scaleable to the size that will fit one to a page, and additional result table need only a simple edit to the formula before it is filled into the new table. The extra column on Print3a is required to avoid a self-reference error. All Print3x tables must contain the same number of rows.
    Updating, as previously, requires a sort of the Data table (on Sheet 2, on the left) after new entries are made. Resorting of the result tables is automatic.
    The small table, Counts, on Sheet 2, is for calculations related to the transfer, and may be hidden, or moved to a third sheet, if desired.
    Formulas:
    Counts::B2: =COUNTA(Data3 :: $A)
    Counts the number of names in the list.
    Counts::B3: =ROWS(Print3a :: $D)-1
    Counts the number of rows (including the header row) in Print3a. Subtracts 1 to obtain the number of rows to fill with names.
    Counts::B4: =COLUMNS(Print3a :: $1:$1)-1
    Counts the number of columns (including the extra column) in Print3a. Subtracts 1 to obtain the number of columns to fill with names.
    Counts::B5: =B3*B4
    Calculates the number of cells used when the table is full.
    Print3a:
    A2, and filled right to column 3 and down to the end of the table:
    =IF(0+ROW()-1+(COLUMN()-1)*Counts :: $B$3<=Counts :: $B$2,OFFSET(Data3 :: $A$1,0+ROW()-1+(COLUMN()-1)*Counts :: $B$3,0),"")
    0+ROW()-1+(COLUMN()-1)*Counts :: $B$3<=Counts :: $B$2
    Compares the number of cells used to this point with the number of names to be filled in. If the number 'used' is less than or equal to the number of names, then:
    OFFSET(Data3 :: $A$1,0+ROW()-1+(COLUMN()-1)*Counts :: $B$3,0)
    Fills the current cell with the next name from the Data table.
    If the number 'used' is greater than the number of names, then:
    places a null string in the cell.
    Print3b:
    =IF((Counts::$B$5+ROW()-1+(COLUMN()-1)*Counts :: $B$3)<=Counts :: $B$2,OFFSET(Data3 :: $A$1,Counts :: $B$5+ROW()-1+(COLUMN()-1)*Counts :: $B$3,0),"")
    This is the same formula as used on Print3a, with the two bold parts replaced as shown to make each new table start at the right place on the Data list.
    For the third Print# table, Counts::$B$5 would be replaced with (2*Counts::$B$5), etc.
    Some difficulty to set up, but fully automatic once in place. To Print, go to Sheet 2, then Print. Limit the pages to print to pages 1 to the count of tables containing names.
    Regards,
    Barry
    PS: I like Jerry's method—simple and easy, requiring only a copy and paste, then setting the Pages document to three columns. The second step could possibly be eliminated by setting up a three column template, and using that for the document to paste into. (NOT tested due to lack of time at the moment)
    B

Maybe you are looking for

  • How to install Windows 7 64 bit driver for Canon i9100 Printer?

    When I try to install my Canon i9100 printer on my HP laptop running Windows 7 Professional 64 bit, Windows cannot locate a driver.  Visiting the Canon website, I find an update module for the Windows driver.  Canon says the printer MUST be installed

  • Schedule lines of Schedule Agreement

    Hi Friends Can any one please provide me detailed defination of Schedule Lines of the Schedule Agreement. Helpful Answers will be rewarded. Thanks in advance.

  • Problem with logical database ADA

    I am trying to create query with asset values and master data fields but when trying to use logical database ADA I am getting error  No component exists with the name "VALUE0". .InfoSet Cannot be Used for InfoSet Query. Does anyone have an idea about

  • Developing Custom Adapter - Keep getting error: Unrecognized tag found in properties

    Hey All,<br /><br />I'm trying to configure some custom properties to pass through to my custom BlazeDS adapter, inside my remoting-config.xml.<br /><br />If you look here:<br />http://xml.pastebin.com/f17464dac<br /><br />This has been working perfe

  • Prtdiag: not implemented on SUNW,T5240

    Has anyone seen the above error? I have seen and rectified the prtdiag error on the Solaris 10 ldoms but I can not run prtdiag on a Solaris 9 container. Is there a work around or way to fix this? Thanks