Adding columns to existing template layout?

In the "Contemporary" Template, I would like to modify the Section Text layout in Portrait Mode. I would like to make the text box have 2 columns instead of 1. These options are greyed out, however. How do I go about doing this?
Many thanks in advance

You are working a portrait template therefore the column options are  not available.
Yes, contact will  flow, but its not endless, your text will flow only into the pages it needs.
You can use a landscape template if it suits your project - and its possible to set it up to use portrait and landscape.
I am told that  most "words only" books are written in MS Word or similar applications and pasted into inDesign, iBooks etc,. and then re-formatted to suit and the page producing flowing text works really well!

Similar Messages

  • Adding column  to existed index syntax or example

    Hi,
    can any one please tell me the syntax or example for adding one more column to existed index.
    Thanks in Advance
    Krishna

    Hello Mr Murali,
    I do not believe you can alter index by adding more columns to it with ALTER command.
    But you can always CREATE a new index with the columns that you need (ONLINE, if necessary) and then DROP existing index.

  • OmniPortlet Tip: Adding columns to the tabular layout

    Hello,
    I had some questions about the limitation to 5 columns of the OmniPortlet tabular layout. Here is a tip to add more columns to this layout:
    1. backup the current OmniPortlet provider.xml
         /OC4J_HOME/applications/portalTools/omniPortlet/WEB-INF/providers/omniPortlet
    2. You can not open the file:
         and look for the tag <dataField
    3. You can add new fields, by copying the existing <dataField> tag and change the value of the <name> and <displayName>
              <!-- Here is a complete example -->
    <dataField class="oracle.webdb.reformlet.definition.DataFieldDefinition">
    <name>Field6</name>
    <displayName>Column6</displayName>
    <description>Field6</description>
    <text>##column##</text>
    <alignment>left</alignment>
    <displayAs>hidden</displayAs>
    <type>linebreak</type>
    <font>Arial.3.Plain.None</font>
    <color>#000000</color>
    <style>none</style>
    <styleType>custom</styleType>
    </dataField>
              <!-- end of the example -->
    The same logic could be used to add parameters or events to the OmniPortlet.
    Regards
    Tugdual Grall

    Hi, I have some problem to find this file "Omniportlet provider.xml".
    Where I can find it?
    I try to find in this path:
    /OC4J_HOME/applications/portalTools/omniPortlet/WEB-INF/providers/omniPortlet
    but I don't view OC4J directory.
    I'm using AS 10g
    Please answer me as soon as possible.
    Thanks.

  • Adding column to existing form

    Hi:
    Need some guidance on how to accomplish it.
    I created a form using blank page -> form -> form using a base table. I picked all the required columns from the list and created a nice form.
    How do I go about adding new columns and removing other columns etc. Should I create a item and pick that as a database column?. Any thoughts on column adds and removal?
    Thanks
    Rajesh

    Rajesh,
    Adding or removing an item (column) should not be a problem. If you are removing, you
    don't need to do anything special (if your form is a standard, wizard form). Adding an item
    (column), make sure your source is database column.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Adding a field in already existing query layout

    Hi All,
    I have a requirement where I have to add couple of fields in an already existing query layout.
    Through SQ01 and layout painter I have added the fields to the layout. When I test from query painter it displays the newly added fields. But when I execute the transaction that is designated to run the query its not displaying those fields.
    What am I missing here?
    Thanks in advance.
    Thanks,
    Arun

    Arun,
    As you have done some changes to the query,the internal report generator will generate a new program correspponding to the Query which should be attached to the T-code.
    Currently the t-code might be having the earlier program name ie the program generated by the query before changes were made hence it is not displaying.
    Just check the program name of the Query and the  program name attached to the tcode.
    K.Kiran.

  • Adding a new Big INT column to existing table in production, which holds 700 million records will impact anything in production?

    Hi Guys,
    I have to add a new Big INT column to existing table in production, which holds 700 million records and would like to know the impact?
    I have been tolled by one of my colleagues that last time they tried adding a column to same table during working hour and it locked out the table and impacted the users.
    Please suggest/share If any one had similar experience.
    Thanks Shiven:) If Answer is Helpful, Please Vote

    If you add a new column to a table using an ALTER TABLE ADD command and specify that the new column allows NULLs and you do not define a default value, then it will take a table lock.  However, once it gets the table lock, it will essentially run instantly
    and then free the table lock.  That will add this new column as the last column in the table, for example
    ALTER MyTable ADD MyNewColumn bigint NULL;
    But if you your change adds a new column with a default value, or you do something like using table designer to add the new column in the middle of the current list of columns, then SQL will have to rewrite the table.  So it will get a table lock, rewrite
    the whole table and then free the table lock.  That will take a considerable amount of time and the table lock will be held for that whole period of time.
    But, no matter how you make the change, if at all possible, I would not alter a table schema on a production database during working hours.  Do it when nothing else is going on.
    Tom

  • Adding columns in Layout set of CJI5

    Hi,
    I am executing the transaction CJI5.  In Change Layout option of the report ouput it is showing 41 columns but in the program the field catalogue has 190 fields and even the output final table has 190 fields.  I  am not able to view the remaining columns in the layout set.
    My requirement is to display the order column in the layout set which is not visible in the column set.  Can we get the column order in the layout set?

    Hi,
    I am executing the transaction CJI5.  In Change Layout option of the report ouput it is showing 41 columns but in the program the field catalogue has 190 fields and even the output final table has 190 fields.  I  am not able to view the remaining columns in the layout set.
    My requirement is to display the order column in the layout set which is not visible in the column set.  Can we get the column order in the layout set?

  • Adding a column into existing index

    Can I add a column into existing index?
    or do I need to drop the index and recreate one?
    Thanks.

    but there is no way to add a column to an existing table10:43:24 TEST.SQL>create table test10:43:28 2 (
    10:43:29 3 a number
    10:43:32 4 )
    10:43:34 5 tablespace tools
    10:43:36 6 ;
    Table created.
    Elapsed: 00:00:00.06
    10:43:38 TEST.SQL>alter table test add
    10:43:44 2 b date;
    Table altered.
    Elapsed: 00:00:00.68
    10:43:48 TEST.SQL>desc test
    Name Null? Type
    A NUMBER
    B DATE
    10:43:51 TEST.SQL>drop table test;
    Table dropped.Indeed there is.Yoann.

  • Loading a pre existing template and editing.

    I bought an existing template from a website a year ago and was able to find out how to load it into dreamweaver so that it was editable because if you just opened the index page and starting typing it would tell you your editing a non editable region and would not update the other pages.  Now I cant figure out how to do that again!   I know it had something to do with the .DWT files and if you edit that then it would update the child pages also.   Ive been searching for about 2 hours and cant find anything even though the answer is probably right under my nose. 

    That is when editing the template.dwt here is the code.
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <!-- metatags -->
    <!-- TemplateBeginEditable name="meta" -->
    <title>Welcome</title>
    <meta name="Keywords" content="place your keywords here" />
    <meta name="Description" content="place a description for your webpage here" />
    <!-- TemplateEndEditable -->
    <!-- /metatags -->
    <!-- language -->
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    <!-- /language -->
    <!-- styles -->
    <link title="default" href="../Site/styles/misc/styles.css" rel="stylesheet" type="text/css" />
    <link title="default" href="../Site/styles/fonts.css" rel="stylesheet" type="text/css" />
    <link title="default" href="../Library/logo/css/logo.css" rel="stylesheet" type="text/css" />
    <!-- /styles -->
    <!-- editable styles -->
    <!-- TemplateBeginEditable name="styles" -->
    <link title="default" href="../Site/styles/primary.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" href="../Library/component-mega-menu/css/mega-menu.css" type="text/css" title="default" />
    <!-- TemplateEndEditable -->
    <!-- /editable styles -->
    <!-- responsive styles -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <link title="default" href="../Site/styles/misc/responsive.css" rel="stylesheet" type="text/css" id="mobileSheet" />
    <!-- /responsive styles -->
    <!-- hidden -->
    <!-- TemplateBeginEditable name="hide_components" -->
    <style>
    /* copy the component style here, then add {visibility:hidden; display:none;} */
    </style>
    <!-- TemplateEndEditable -->
    <!-- /hidden -->
    <!-- variables -->
    <!-- TemplateBeginEditable name="rootLocation" -->
    <script type='text/javascript'>
    // if this page is in:
    //   the root folder, then set this variable to ./
    //   a sub folder one level deep, then set this variable to ../
    //   a sub folder two levels deep, then set this variable to ../../
    var rootLocation = "./";
    </script>
    <!-- TemplateEndEditable -->
    <!-- /variables -->
    <!-- scripts -->
    <script type='text/javascript' src="../Site/javascript/jquery-1.5.1.min.js"></script>
    <script type='text/javascript' src="../Site/javascript/jquery.cookie.js"></script>
    <script type='text/javascript' src="../Site/javascript/pxgradient-1.0.1.jquery.js"></script>
    <script type='text/javascript' src="../Site/javascript/jquery-ui-1.8.11.custom.min.js"></script>
    <script type="text/javascript" src="../Site/javascript/special_functions.js"></script>
    <script type="text/javascript" src="../Site/javascript/hoverIntent.js"></script>
    <script type="text/javascript" src="../Site/javascript/superfish.js"></script>
    <!-- TemplateBeginEditable name="misc scripting" -->
    <!-- TemplateEndEditable -->
    <!-- /scripts -->
    <!-- ie -->
    <!-- TemplateBeginEditable name="ie6-9 scripting" -->
    <!-- IE Styles and Scripts-->
    <!--[if lt IE 9]>
    <link title="default" rel="stylesheet" type="text/css" href="../Site/styles/ie/ie.css" />
    <link title="mobile" rel="alternate stylesheet" type="text/css" href="../Site/styles/ie/mobile.css" />
    <link title="narrow" rel="alternate stylesheet" type="text/css" href="../Site/styles/ie/narrow.css" />
    <link title="standard" rel="alternate stylesheet" type="text/css" href="../Site/styles/ie/standard.css" />
    <link title="wide" rel="alternate stylesheet" type="text/css" href="../Site/styles/ie/wide.css" />
    <script type='text/javascript' src="../Site/javascript/html5.js"></script>
    <script type='text/javascript' src="../Site/javascript/dynamiclayout.js" ></script>
    <![endif]-->
    <!-- IE6 transparent PNG -->
    <!--[if lte IE 6]>
    <script type='text/javascript' src="../Site/javascript/supersleight-min.js"></script>
    <![endif]-->
    <!-- TemplateEndEditable -->
    </head>
    <body>
    <!-- TemplateBeginEditable name="advertising_top" -->
    <!-- TemplateEndEditable -->
    <!-- bdy wrapper -->
    <div id="bdy_wrapper">
    <!-- main -->
    <div id="main">
    <!-- header -->
    <header id="headerTop">
      <div id="headerInner">
      <hgroup>
      <!-- seo1 -->
      <h1 id="seo_1">
      <!-- TemplateBeginEditable name="seo_1" -->Optional page title<!-- TemplateEndEditable -->
      </h1>
      <!-- /seo1 -->
      <!-- seo2 -->
      <h2 id="seo_2">
      <!-- TemplateBeginEditable name="seo_2" -->Optional page description text area...<!-- TemplateEndEditable -->
      </h2>
      <!-- /seo2 -->
      </hgroup>
      <!-- optional_content -->
      <div id="optional_content">
      <!-- TemplateBeginEditable name="optional_content" -->
      <hgroup>
      <h3>Header Content Region</h3>
      <h4>Insert text, image or banner ads here, or just delete this text and leave this area blank!</h4>
      </hgroup>
      <!-- TemplateEndEditable -->
      </div >
      <!-- /optional content -->
      <!-- TemplateBeginEditable name="header_wrapper" -->
      <!-- nivo_slider -->
      <div id="nivo_slider">
      <!-- #BeginLibraryItem "/Library/component-nivo-slider/nivo-slider.lbi" -->
    <div id="slider-wrapper">
    <div id="slider" class="nivoSlider">
    <!-- image 1: --> <a href="#"><img src="../Site/themed_images/portfolio-very-large-1.jpg" alt="portfolio1" title="#image1" /></a>
    <!-- image 2: --> <a href="#"><img src="../Site/themed_images/portfolio-very-large-2.jpg" alt="portfolio2" title="#image2" /></a>
    <!-- image 3: --> <a href="#"><img src="../Site/themed_images/portfolio-very-large-3.jpg" alt="portfolio3" title="#image3" /></a>
    <!-- image 4: --> <a href="#"><img src="../Site/themed_images/portfolio-very-large-4.jpg" alt="portfolio4" title="#image4" /></a>
    </div>
    <div id="slidercover"></div>
      <!-- image 1: title and captions -->               
                <div id="image1" class="nivo-html-caption">
                <h3>Heading 1</h3>
                <p>This is an example of the content for a specific image in the Nivo slider...</p>
            <div class="slider_readmore"><a href="../about.htm">View Page<br>
      <br></a></div>
                </div>
      <!-- /image 1: title and captions -->  
      <!-- image 2: title and captions -->               
                <div id="image2" class="nivo-html-caption">
                <h3>Heading 2</h3>
                <p>This is an example of the content for a specific image in the Nivo slider...</p>
            <div class="slider_readmore"><a href="../about.htm">View Page<br>
      <br></a></div>
                </div>
      <!-- /image 2: title and captions -->    
      <!-- image 3: title and captions -->               
                <div id="image3" class="nivo-html-caption">
                <h3>Heading 3</h3>
                <p>This is an example of the content for a specific image in the Nivo slider...</p>
            <div class="slider_readmore"><a href="../about.htm">View Page<br>
      <br></a></div>
                </div>
      <!-- /image 3: title and captions -->        
      <!-- image 4: title and captions -->               
                <div id="image4" class="nivo-html-caption">
                <h3>Heading 4</h3>
                <p>This is an example of the content for a specific image in the Nivo slider...</p>
            <div class="slider_readmore"><a href="../about.htm">View Page<br>
      <br></a></div>
                </div>
      <!-- image 4: title and captions -->               
            </div>
        <script type="text/javascript" src="../Site/javascript/jquery.nivo.slider.js"></script>
    <script type="text/javascript">
    jQuery(window).load(function() {
      // init the nivo slider on the #slider div
      jQuery('#slider').nivoSlider();
      // override the hover effects for the bullets
      jQuery('.nivo-control').hover(
        function() {jQuery(this).customAnimate({ opacity: 1.00 }, 300, 'linear')},
        function() {jQuery(this).customAnimate({ opacity: 0.50 }, 100, 'linear')});
    </script>
    <!-- #EndLibraryItem --></div>
      <!-- /nivo_slider -->
      <!-- nivo_slider_small -->
      <div id="nivo_slider_small">
      <!-- #BeginLibraryItem "/Library/component-nivo-slider-small/nivo-slider-small.lbi" -->
    <div id="slider-wrapper2">
    <div id="slider2" class="nivoSlider2">
    <!-- image 1: --> <a href="#"><img src="../Site/themed_images/portfolio-small-1.jpg" alt="small portfolio1" title="#image1" /></a>
    <!-- image 2: --> <a href="#"><img src="../Site/themed_images/portfolio-small-2.jpg" alt="small portfolio2" title="#image2" /></a>
    <!-- image 3: --> <a href="#"><img src="../Site/themed_images/portfolio-small-3.jpg" alt="small portfolio3" title="#image3" /></a>
    <!-- image 4: --> <a href="#"><img src="../Site/themed_images/portfolio-small-4.jpg" alt="small portfolio4" title="#image4" /></a>
    </div>
    <div id="slidercover2"></div>
            </div>
        <script type="text/javascript" src="../Site/javascript/jquery.nivo.slider.small.js"></script>
    <script type="text/javascript">
    jQuery(window).load(function() {
      // init the nivo slider on the #slider div
      jQuery('#slider2').nivoSlider();
      // override the hover effects for the bullets
      jQuery('.nivo-control').hover(
        function() {jQuery(this).customAnimate({ opacity: 1.00 }, 300, 'linear')},
        function() {jQuery(this).customAnimate({ opacity: 0.50 }, 100, 'linear')});
    </script>
    <!-- #EndLibraryItem --></div>
      <!-- /nivo_slider_small -->
      <!-- themed_object -->
      <div id="themed_object">
      <!-- #BeginLibraryItem "/Library/themed-object/themed-object.lbi" -->
    <img src="../Site/themed_images/themed_object.png" alt="themed object">
    <!-- #EndLibraryItem --></div>
      <!-- /themed_object -->
      <!-- text_logo -->
      <div id="text_logo">
      <!-- #BeginLibraryItem "/Library/logo/wrappers/logo-wrapper.lbi" -->
    <script type="text/javascript" src="../Library/logo/js/logo.js"></script>
          <div class="websitename">
      <!-- #BeginLibraryItem "/Library/logo/logo.lbi" -->
    <a href="../index.htm">Website Name</a>
    <!-- #EndLibraryItem --></div>
    <!-- #EndLibraryItem --></div>
      <!-- /text_logo -->
      <!-- graphic_logo -->
      <div id="graphic_logo">
      <!-- #BeginLibraryItem "/Library/logo/graphic-logo.lbi" -->
    <!-- add logo graphic here -->
    <!-- add logo graphic here -->
    <p> </p>
    <!-- #EndLibraryItem --></div>
      <!-- /graphic_logo -->
      <!-- logo_tagline -->
      <div id="logo_tagline">
      <!-- #BeginLibraryItem "/Library/logo/logo-tagline.lbi" -->
    Primary Tagline
    <!-- #EndLibraryItem --></div>
      <!-- /logo_tagline -->
         <!-- #BeginLibraryItem "/Library/menu-top/wrappers/menu-top-wrapper.lbi" -->
    <nav id="menu_top">
    <div id="menu">
    <div class="menu_bg">
    <div class="sf-menu-wrapper-top">
    <!-- DO NOT EDIT ABOVE THIS LINE -->
    <!-- DO NOT EDIT ABOVE THIS LINE -->
    <!-- DO NOT EDIT ABOVE THIS LINE -->
    <!-- #BeginLibraryItem "/Library/menu-top/menu-top.lbi" -->
    <ul id="MenuBarTop">
        <li><a href="../index.htm">Home</a></li>
        <li><a href="../contact.htm">Contact</a></li>
      <li><a href="javascript:return false;">Catalog</a><ul>
      <li><a href="../catalog.htm">Category 1</a></li>
      <li><a href="../catalog.htm">Category 2</a><ul>
      <li><a href="../catalog.htm">product 2a</a></li>
      <li><a href="../catalog.htm">product 2b</a></li>
      <li><a href="../catalog.htm">product 2c</a></li>
      </ul>
      </li>
      <li><a href="../catalog.htm">Category 3</a><ul>
      <li><a href="../catalog.htm">product 3a</a></li>
      <li><a href="../catalog.htm">product 3b</a></li>
      <li><a href="../catalog.htm">product 3c</a></li>
      </ul>
      </li>
      </ul>
      </li>
      <li><a href="../photo-gallery.htm">Photos</a></li>
      <li><a href="javascript:return false;">Components</a><ul>
      <li><a href="../Layouts/component-image-menu.htm">Image Menu (in Primary Page)</a></li>
      <li><a href="../Layouts/component-news-viewer.htm">News Viewer (in Primary Page)</a></li>
      <li><a href="../Layouts/component-parallax-slider.htm">Paralax Slider (in Primary Page)</a></li>
      <li><a href="../Layouts/component-accordian-menu.htm">Accordian Menu (in Primary Page)</a></li>
      <li>
      <a href="../Layouts/component-mega-menu.htm">Mega Menu</a><li>
      <a href="../Layouts/primary.htm">Nivo Slider (in Primary Page)</a></li>
      <li><a href="../Layouts/secondary.htm">Mini Nivo Slider (in Secondary Page)</a></li>
      </ul>
      </li>
      <li><a href="javascript:return false;">Layouts</a><ul>
      <li><a href="../Layouts/primary.htm">Primary Layout</a></li>
      <li><a href="../Layouts/secondary.htm">Secondary Layout</a></li>
      <li><a href="../Layouts/minimized.htm">Minimized Layout</a></li>
      <li><a href="../Layouts/magazine.htm">Magazine Layout</a></li>
      </ul>
      </li>
    </ul>
    <script type="text/javascript">
    //var MenuBarTop = new Spry.Widget.MenuBar("MenuBarTop");
    </script>
    <!-- #EndLibraryItem -->
    <!-- DO NOT EDIT BELOW THIS LINE -->
    <!-- DO NOT EDIT BELOW THIS LINE -->
    <!-- DO NOT EDIT BELOW THIS LINE -->
    </div>
    <script type="text/javascript">
        jQuery("div.sf-menu-wrapper-top > ul").addClass("sf-menu");
    </script>
    </div><div class="menu_bg_right"></div>
    </div>
    </nav>
    <!-- #EndLibraryItem -->
      <!-- news_ticker -->
      <div id="news_ticker">
      <!-- #BeginLibraryItem "/Library/news-ticker/wrappers/news-ticker-wrapper.lbi" -->
    <script type="text/javascript" src="../Site/javascript/webwidget_slideshow_common.js"></script>
    <script type="text/javascript">
                jQuery(function() {
                    jQuery("#webwidget_slideshow_common1").webwidget_slideshow_common({
                        slideshow_transition_effect: "slide_down",//slide_left slide_down fade_in
                        slideshow_time_interval: "15000",
                        slideshow_window_width: "500",
                        slideshow_window_height: "23",
                        slideshow_border_style: "none",//dashed dotted double groove hidden inset none outset ridge solid
                        slideshow_border_size: "0",
                        slideshow_border_color: "#AEDFE6",
                        slideshow_border_radius: "5",
                        slideshow_padding_size: "3",
                        slideshow_background_color: "transparent"
            </script>
    <div id="webwidget_slideshow_common1" class="webwidget_slideshow_common">
    <!-- #BeginLibraryItem "/Library/news-ticker/news-ticker.lbi" -->
    <h4></h4>
                <ul>
                    <li><a title="Link1" href="../index.htm">This is your news scroller, add your text and link to a web page!</a></li>
                    <li><a title="Link2" href="../index.htm">Create as many news links as you need. News links are simple bullet lists.</a></li>
                </ul>
    <!-- #EndLibraryItem -->
    <div style="clear: both"></div>
    </div>
    <!-- #EndLibraryItem --></div>
      <!-- /news_ticker -->
      <!-- twitter_facebook -->
      <div id="twitter_facebook">
      <!-- #BeginLibraryItem "/Library/social-networking/twitter-facebook-linkedIN.lbi" -->
    <div class="facebook_wrapper"><a href="http://www.facebook.com/i3dthemes/"> <img alt="follow me on facebook" title="Facebook" src="../Site/themed_images/facebook_badge.png" style="border:0px;" class="tfl" /></a></div>
    <div class="twitter_wrapper"><a href="http://www.twitter.com/i3dthemes/"> <img alt="tweet me" title="Twitter" src="../Site/themed_images/t_logo-a.png" style="border:0px;" class="tfl" /></a></div>
    <div class="linkedin_wrapper"><a href="http://www.linkedin.com"> <img alt="link to me" title="LinkedIN" src="../Site/themed_images/linkedin.png" style="border:0px;" class="tfl" /></a></div>
    <!-- #EndLibraryItem --></div>
      <!-- /twitter_facebook -->
      <!-- get_in_touch -->
      <div id="get_in_touch">
      <!-- #BeginLibraryItem "/Library/extras/get-in-touch.lbi" -->
    <a href="../contact.htm"><img src="../Site/graphics/get_in_touch.png" class="getintouch" alt="get in touch" style="border-style: solid; border-width: 0px" /></a>
    <!-- #EndLibraryItem --></div>
      <!-- /get_in_touch -->
      <!-- google-search -->
      <!--webbot bot="Include" U-Include="Library/component-google-site-search/google-site-search.htm" TAG="BODY" startspan --><strong>[Templates/Library/component-google-site-search/google-site-search.htm]</stron g><!-- #EndLibraryItem -->
      <!-- /google-search-->
      <!-- zoom_menu_component -->
      <div id="zoom_menu_component">
      <!-- #BeginLibraryItem "/Library/menu-zoom/zoom-menu.lbi" -->
      <script type='text/javascript' src='../Site/javascript/jquery.jqDock.min.js'></script>
      <script type='text/javascript'>
      <!--
      jQuery(function($){
    ** JQDOCK SETUPS... **
        //apply jqDock to each of the demo menus, setting varying options for each one...
        $('div.demo').each(function(i){ //opts updated so as not to use null as 'don't override default' - jQuery v1.2.5 changed extend() to not ignore nulls!
            var opts = { align:        [ 'bottom', 'right', 'top' , 'middle', 'left', 'center' ][i] || 'bottom' //default
                       , size:         [  48     ,  48    ,  48   ,  48     ,  36   ,  60      ][i] || 36       //default
                       , distance:     [  60     ,  60    ,  60   ,  60     ,  48   ,  80      ][i] || 54       //default
                       , coefficient : [  1.5    ,  1.5   ,  1.5  ,  1      ,  1.5  ,  1.5     ][i] || 1.5      //default
                       , labels:       [  true   ,  'mc'  ,  true ,  'br'   ,  true ,  false   ][i] || false    //default
                       , duration:     500 //default
                         //for menu1 and menu7, set a function to use the 'alt' attribute if present, else construct a PNG path from the 'src'...
                       , source:       (i==0 || i==6) ? function(i){ return (this.alt) ? false : this.src.replace(/(jpg|gif)$/,'png'); } : false //default
            $(this).jqDock(opts);
        $('div.demo a>img').not($('#menu1 a>img')).bind('click', function(){
            var Href = $(this).parent().get(0).href;
            if(Href && !/^javascript:/i.test(Href)){ //change location...
              location.href = Href;
            }else{ //trigger a click handler?...
              $(this).parent().trigger('click');
            return false;
      // -->
      </script>
    <div id='menu1' class='demo'></div>
    <div id='menu2' class='demo'></div>
    <div id='menu3' class='demo'></div>
    <div id='zoom_menu' class='demo'>
    <a title="About Us" href="../about.htm"> <img src='../Site/themed_images/zoom_about.png' alt='Zoom About Us' /></a>
    <a title="Contact" href="../contact.htm"> <img src='../Site/themed_images/zoom_contact.png' alt='Zoom Contact' /></a>
    <a title="Services" href="../services.htm"> <img src='../Site/themed_images/zoom_services.png' alt='Zoom Services' /></a>
    <a title="Sitemap" href="../sitemap.htm"> <img src='../Site/themed_images/zoom_sitemap.png' alt='Zoom Sitemap' /></a>
    </div>
    <!-- #EndLibraryItem --></div>
      <!-- /zoom_menu_component -->
      <!-- custom_component1 -->
      <div id="custom_component1">
      <!-- #BeginLibraryItem "/Library/custom-components/custom-component1.lbi" -->
    <!-- #EndLibraryItem --></div>
      <!-- /custom_component -->
      <!-- custom_component2 -->
      <div id="custom_component2">
      <!-- #BeginLibraryItem "/Library/custom-components/custom-component2.lbi" -->
    <!-- #EndLibraryItem --></div>
      <!-- /custom_component -->
      <!-- custom_component3 -->
      <div id="custom_component3">
      <!-- #BeginLibraryItem "/Library/custom-components/custom-component3.lbi" -->
    <!-- #EndLibraryItem --></div>
      <!-- /custom_component -->
      <!-- back_to_top -->
      <div class="back_to_top"><a id="top"></a></div>
      <!-- /back_to_top -->
      <!-- TemplateEndEditable -->
      </div>
    </header>
    <!-- /header -->
      <div class="clear"></div>
    <!-- main content -->
    <div id="main_content">
    <!-- TemplateBeginEditable name="advertising_1" -->
    <!-- TemplateEndEditable -->
      <div class="clear"></div>
    <!-- info boxes -->
    <aside id="leftinfo">
      <div class="boxi">
      <div class="boxi_inner">
      <!-- TemplateBeginEditable name="left_info" -->
      <!-- #BeginLibraryItem "/Library/news-boxes/info-left.lbi" -->
    <h3>Info Left</h3>
    <div class="centerpic">
    <a href="#" title="Your image caption here">
    <img src="../Site/themed_images/info_left.jpg" alt="Describe the photo or the page it links to" />
    </a>
    </div>
    <p>This is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s.</p>
    <!-- #EndLibraryItem -->
      <!-- TemplateEndEditable -->
      </div>
      </div>
    </aside>
    <!-- centerinfo -->
    <aside id="centerinfo">
      <div class="boxi">
      <div class="boxi_inner">
      <!-- TemplateBeginEditable name="center_info" -->
      <!-- #BeginLibraryItem "/Library/news-boxes/info-center.lbi" -->
    <h3>Info Center</h3>
    <div class="centerpic">
    <a href="#" title="Your image caption here">
    <img src="../Site/themed_images/info_center.jpg" alt="Describe the photo or the page it links to" />
    </a>
    </div>
    <p>This is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s.</p>
    <!-- #EndLibraryItem -->
      <!-- TemplateEndEditable -->
      </div>
      </div>
    </aside>
    <!-- rightinfo -->
    <aside id="rightinfo">
      <div class="boxi">
      <div class="boxi_inner">
      <!-- TemplateBeginEditable name="right_info" -->
      <!-- #BeginLibraryItem "/Library/news-boxes/info-right.lbi" -->
    <h3>Info Right</h3>
    <div class="centerpic">
    <a href="#" title="Your image caption here">
    <img src="../Site/themed_images/info_right.jpg" alt="Describe the photo or the page it links to" />
    </a>
    </div>
    <p>This is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s.</p>
    <!-- #EndLibraryItem -->
      <!-- TemplateEndEditable -->
      </div>
      </div>
    </aside>
    <!-- /info boxes -->
      <div class="clear"></div>
    <!-- TemplateBeginEditable name="advertising_2" -->
    <!-- TemplateEndEditable -->
    <!-- column bgs -->
    <div id="columns_top"></div>
    <div id="columns_bg">
    <!-- column1 -->
    <section id="column1">
    <!-- TemplateBeginEditable name="column1" -->
      <!-- sidemenu -->
      <nav class="sidemenu">
      <div class="box1">
      <div class="box1_inner">
      <!-- #BeginLibraryItem "/Library/menu-side/wrappers/menu-side-wrapper.lbi" -->
    <div class="sf-menu-wrapper-side">
    <!-- DO NOT EDIT ABOVE THIS LINE -->
    <!-- DO NOT EDIT ABOVE THIS LINE -->
    <!-- DO NOT EDIT ABOVE THIS LINE -->
    <!-- #BeginLibraryItem "/Library/menu-side/menu-side.lbi" -->
    <h3>Main Menu:</h3>
    <div class="sf-menu-wrapper-side">
    <ul id="MenuBarSide">
        <li><a href="../index.htm">Home</a></li>
      <li><a href="../about.htm">About</a></li>
      <li><a href="../faqs.htm">FAQs</a></li>
      <li><a href="javascript:return false;">Contact</a>
       <ul>
      <li><a href="../contact.htm#1">Email</a></li>
       <li><a href="../contact.htm#3">Telephone</a></li>
      <li><a href="../contact.htm#4">Fax</a></li>
        <li><a href="../contact-form.htm">Web Form</a></li>
        <li><a href="../contact.htm#5">Address</a><ul>
      <li><a href="../contact.htm#6">Directions</a></li>
      </ul>
       </li>
       </ul>
      </li>
      <li><a href="javascript:return false;">Catalog</a><ul>
      <li><a href="../catalog.htm">Category 1</a></li>
      <li><a href="../catalog.htm">Category 2</a></li>
      <li><a href="../catalog.htm">Category 3</a></li>
      </ul>
      </li>
      <li><a href="javascript:return false;">Services</a><ul>
      <li><a href="../services.htm#silver">Service 1</a></li>
      <li><a href="../services.htm#gold">Service 2</a><ul>
      <li><a href="../catalog.htm">service 2a</a></li>
      <li><a href="../catalog.htm">service 2b</a></li>
      <li><a href="../catalog.htm">service 2c</a></li>
      </ul>
      </li>
      <li><a href="../services.htm#platinum">Service 3</a></li>
      </ul>
      </li>
      <li><a href="../photo-gallery.htm">Photos</a></li>
      <li><a href="javascript:return false;">Components</a><ul>
      <li><a href="../Layouts/component-image-menu.htm">Image Menu (in Primary Page)</a></li>
      <li><a href="../Layouts/component-news-viewer.htm">News Viewer (in Primary Page)</a></li>
      <li><a href="../Layouts/component-parallax-slider.htm">Paralax Slider (in Primary Page)</a></li>
      <li><a href="../Layouts/component-accordian-menu.htm">Accordian Menu (in Primary Page)</a></li>
      <li>
      <a href="../Layouts/component-mega-menu.htm">Mega Menu</a><li>
      <a href="../Layouts/primary.htm">Nivo Slider (in Primary Page)</a></li>
      <li><a href="../Layouts/secondary.htm">Mini Nivo Slider (in Secondary Page)</a></li>
      </ul>
      </li>
      <li><a href="javascript:return false;">Layouts</a><ul>
      <li><a href="../Layouts/primary.htm">Primary Layout</a></li>
      <li><a href="../Layouts/secondary.htm">Secondary Layout</a></li>
      <li><a href="../Layouts/minimized.htm">Minimized Layout</a></li>
      <li><a href="../Layouts/magazine.htm">Magazine Layout</a></li>
      </ul>
      </li>
      <!-- numo vertical links -->
    </ul>
    <script type="text/javascript">
    //var MenuBarSide = new Spry.Widget.MenuBar("MenuBarSide");
    </script>
    <div class="clear" style=" clear:both"></div>
    </div>
    <!-- #EndLibraryItem -->
    <!-- DO NOT EDIT BELOW THIS LINE -->
    <!-- DO NOT EDIT BELOW THIS LINE -->
    <!-- DO NOT EDIT BELOW THIS LINE -->
    </div>
    <script type="text/javascript">
         jQuery("div.sf-menu-wrapper-side > ul").addClass("sf-menu sf-vertical");
    </script>
    <!-- #EndLibraryItem -->
      </div>
      </div>
      </nav>
      <!-- /sidemenu -->
      <!-- numo box left -->
      <!-- whatsnew -->
      <aside class="whatsnew">
      <div class="box1">
      <div class="box1_inner">
      <!-- #BeginLibraryItem "/Library/news-boxes/whats-new.lbi" -->
    <h3>WhatsNew</h3>
    <a href="#" class="sidepic">
    <img src="../Site/themed_images/portfolio-small-4.jpg" alt="Describe the photo or the page it links to" />
    </a>
    <p>Your "What's New" content includes an image that 'AUTO' scales. No need to
    resize the image, the CSS style sheet will resize the images for you, once
    rendered in your web page.</p>
    <!-- #EndLibraryItem -->
      </div>
      </div>
      </aside>
      <!-- /whatsnew -->
      <!-- currentnews -->
      <aside class="currentnews">
      <div class="box1">
      <div class="box1_inner">
      <!-- #BeginLibraryItem "/Library/news-boxes/current-news.lbi" -->
    <h3>CurrentNews</h3>
    <a href="#" class="sidepic">
    <img src="../Site/themed_images/portfolio-small-6.jpg" alt="Describe the photo or the page it links to" />
    </a>
    <p>The Current News content includes an image that 'AUTO' scales. No need to
    resize the image, the CSS style sheet will resize the images for you, once
    rendered in your web page.</p>
    <!-- #EndLibraryItem -->
      </div>
      </div>
      </aside>
      <!-- /currentnews -->
      <!-- recentevents -->
      <aside class="recentevents">
      <div class="box1">
      <div class="box1_inner">
      <!-- #BeginLibraryItem "/Library/news-boxes/recent-events.lbi" -->
    <h3>RecentEvents</h3>
    <a href="#" class="sidepic">
    <img src="../Site/themed_images/portfolio-small-5.jpg" alt="Describe the photo or the page it links to" />
    </a>
    <p>The Recent Events content includes an image that 'AUTO' scales. No need to
    resize the image, the CSS style sheet will resize the images for you, once
    rendered in your web page.</p>
    <!-- #EndLibraryItem -->
      </div>
      </div>
      </aside>
      <!-- /recentevents -->
    <!-- TemplateEndEditable -->
    </section>
    <!-- /column1 -->
    <!-- column2 -->
    <section id="column2">
      <!-- box4 -->
      <article class="box4">
      <div class="box4_inner">
      <!-- TemplateBeginEditable name="body1" -->
    <!-- numo box right -->
    <h3>What is Lorem Ipsum</h3>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
      <!-- TemplateEndEditable -->
      </div>
      </article>
      <!-- box4 -->
    </section>
    <!-- /column2 -->
    <!-- column3 -->
    <section id="column3">
    <!-- TemplateBeginEditable name="column3" -->
      <!-- optional box ... to enable ... delete this line
      <div class="box1">
      <h3>Heading</h3>
      <p>This is where you would add your text, images, or advertising banner</p>
      </div>
      /optional box  ... to enable ... delete this line  -->
    <!-- TemplateEndEditable -->
    </section>
    <!-- /column3  -->
    <!-- column4 -->
    <section id="column4">
    <!-- TemplateBeginEditable name="column4" -->
      <!-- optional box ... to enable ... delete this line
      <div class="box1">
      <h3>Heading</h3>
      <p>This is where you would add your text, images, or advertising banner</p>
      </div>
      /optional box  ... to enable ... delete this line  -->
    <!-- TemplateEndEditable -->
    </section>
    <!-- /column4  -->
      <div class="clear"></div>
    </div>
    <div id="columns_bottom"></div>
    <!-- /column bgs -->
    <!-- TemplateBeginEditable name="advertising_3" -->
    <!-- TemplateEndEditable -->
      <div class="clear"></div>
    </div>
    <!--/content -->
    </div>
    <!--/main -->
    <!-- advertising -->
    <section id="advertising_wrapper">
      <div id="advertising">
      <!-- TemplateBeginEditable name="advertising_4" -->
      <!-- #BeginLibraryItem "/Library/advertising/advertising.lbi" -->
    <p>This is advertising space for google ads, affiliate links or anything else you can think of</p>
    <p>... this space will grow as you add more information ...</p>
    <!-- #EndLibraryItem --><!-- TemplateEndEditable --></div>
    </section >
    <!-- /advertising -->

  • Print Module templates layouts do not update on the fly

    Print layouts do not update on the fly when attempting to choose between various Print Module>Template Browser> Lightroom or User templates. This occurs in all three Layout Styles. The very first layout chosen in Single Image/Contact Sheet, Picture Package, or Custom Package is the permanent 'default' and cannot be changed. The Preview will show as expected however any image stays stuck in the very first layout I chose after installing LR4 beta.
    For example, I first chose Template Browser>Lightroom Templates>Maximum Size, and Layout Style>Single Image/Contact Sheet. Clicking through any other Templates (Lightroom or User defined) will alter the preview but not the layout display in the Print window. Same problem in either of the other Layout styles. I have been trying for days to rectify this, but it seems somehow more difficult than LR3. and not what I expect.
    As a comparison, using the same steps in LR3 works perfectly as all print template/layouts can be changed on the fly as expected. I have no problems generating different layouts in LR3 and have been using LR print module since version 1 without this issue.
    Is this a bug or are there any extra steps or workarounds I have not discovered? Any other testers seen this?

    Update with more info. What am I doing wrong, if anything?
    Print layouts do not update on the fly when attempting to choose between various Print Module>Template Browser> Lightroom or User templates. This is not a hang since the layouts do not change after the initial choice no matter how much time elapsed.
    iMac OS 10.6.8. 8GB RAM.Processor Intel Core 2 Duo. NVIDIA GeForce 8800 GS.
    The steps as follows:
    1) Lightroom 3.6 & LR4Beta exist side by side.
    2) LR4 Beta> Print Module;
    3) From filmstrip choose image;
    4) Template Browser> Lightroom4Beta Templates>Maximum Size;
    5) Preview displays as expected;
    6) Layout Styles>Single Image/Contact Sheets
    7) Template Browser> Lightroom4Beta Templates>click through any other templates (Lightroom or User defined);
    8) Image layout in main window does not update;
    9) Previews update;
    10) Layout Style>Picture Package;
    11) Template Browser>Maximum size is then automatically shown, however the template in the main window is actually (1) 7x5, (2) 2.5x3.5;
    12) Any further attempts to change the layouts regardless of Style Layout choices are not successful.
    13) Close LR4Beta>re-open LR4Beta;
    14) Repeat test;
    15) Print Module layouts do not update on the fly as expected;
    16) Close LR4Beta and all applications;
    17) Reboot iMac.
    18) Open LR4Beta only;
    19) LR4Beta>Print Module>Template Browser >Lightroom Templates>Maximum Size;
    20) Image displays in main layout window with Template and Preview display as expected;
    21) Choose different image>Template Browser>Lightroom Templates>Maximum Size;
    22) Click through templates, layouts DO NOT update in main window although previews do automatically update.
    23) CONCLUSION - In Lightroom 4 Beta>Print Module>Template Browser, image layouts do not change after initial choice as expected.
    I posted this on Photoshop.com as a problem.

  • How to get added columns in the after DDL trigger?

    As title, I want to get information, like name/type/.., about the added columns by sql statement "alter table *** add (***)" in the after ddl trigger. But looks like dba_tab_columns view doesn't include the added columns.
    Thanks

    Hi
    Hi try other versions of the trigger like
    create or replace trigger addl_trigger
    after alter on schema
    declare
    TYPE attrs_cur IS REF CURSOR;
    m_cur attrs_cur;
    m_event varchar2(50);
    m_user varchar2(50);
    m_owner varchar2(50);
    m_user1 varchar2(50);
    m_type varchar2(50);
    m_name varchar2(50);
    m_column varchar2(50);
    m_cnt NUMBER;
    m_stmt varchar2(512);
    number_of_modified_objects BINARY_INTEGER;
    t ora_name_list_t;
    begin
    m_event:=ora_sysevent;
    m_user:=SYS_CONTEXT('USERENV','SESSION_USER');
    m_user1:=ora_login_user;
    m_owner:=ora_dict_obj_owner;
    m_type:=ora_dict_obj_type;
    m_name:=ora_dict_obj_name;
    if (m_type='TABLE' and m_event='ALTER')
    then
              execute immediate 'select count(*) from dba_tab_columns where owner=:1 and table_name=:2' into m_cnt
              using m_owner,m_name;
              insert into log values (m_cnt);
              dbms_output.put_line('->'||m_cnt);
              OPEN m_cur FOR 'select c.name from sys.col$ c, sys.obj$ o, sys.user$ u where o.obj# = c.obj# and o.owner# = u.user# and u.name=:1 and o.name=:2' using m_owner,m_name;
              LOOP
                        FETCH m_cur INTO m_stmt;
                        EXIT WHEN m_cur%NOTFOUND;
                        insert into log values (m_stmt);
                        --dbms_output.put_line(m_stmt||'**************');
                        END LOOP;
    end if;
    but all versions continue to insert only the already existing columns. I think that Oracle actualize the dictionary first after this system event.
    Bye, Aron

  • SSAS Tabular - Adding Column to a table gives error "Object reference not set to instance of object"

    If I make changes to a table in SSAS Tabular Visual Studio, the newly added column gives error as "Object
    reference not set to instance of object"

    Hi VikasJain13,
    According to your description, you get the "Object reference not set to instance of object" error when adding columns in Tabular. Right?
    Generally, it throws this error when the internal code is accessing the property of an empty object. As you mentioned it happens when you make changes on a table, mostly it means that table is already a empty object. Please re-process your tabular to see
    if this table is still existing. 
    If you have any question, please feel free to ask.
    Simon Hou
    TechNet Community Support

  • Add a new table to an existing Print Layout Designer report

    Is it possible to add a new table to an existing Print Layout Designer report? For example, in the Production Order there is a Sales Order field (which is displayed on the report), I would like to display some information from UDFs found on the Sales Order, but when I add a Database Field to the report the Sales Order tables does not appear in the list (OWOR).

    Hi
    It is possible provided there is a relationship which exists between two tables.
    You can add a Database field. Goto the Properties and selct Content Tab.
    Now in the Table dropdown, hold the Alt Key and click. This displays all the tables in B1. After selecting the Table, you can select the related Column.
    Remember there should be a relationship which exists between this column and existing columns.
    Because PLD works completely on Joins to my understanding

  • Create frameset based on an existing template

    I'm using DW CS4.  I'm using a template with header, sidebar and main content divs for most of my pages.  But I want one page to be a frameset with the same header and sidebar but the main content is a frame that changes based on selections from the sidebar.  I want it based on my existing template so when I update the header in the template, my frameset page gets updated.  I can't just save the header in the library because it contains a spry menu.  Any suggestions?

    I suggest to create a css based layout on your existing template. Here is a tutorial on the pros and cons of using frames.
    Make a common page with a header, sidebar and content and copy that to use in the rest. You can define background images for each so if you want to update your banner, you can do that in your css
    Here is a tutorial on css based layout

  • Creating new column in existing pdf doc

    I am trying to add a new column with some CFif content into a pdf doc that is already created. the original pdf doc contains a table PropertyDetails_T with columns such as 1st column : 'customer name' 2nd col : 'no. of. vehicles' 3rd column : 'area of farmland'. I have to insert a new column between 1st and 2nd.
    i am using dreamweaver. in design mode i inserted columns to right of 1st column and added the column name "area of property".
    Next i include CFif lines in code mode as given below :
    <cfif getPropertyDetails_T.areaofProperty NOT EQUAL "">
    <td> #NumberFormat (getPropertyDetails_T.areaofProperty,"_______.__")#</td>
    <cfelse>
    <td>0.00</td>
    </cfif>
    but after writing these lines and saving, the table in design mode has been messed up. i see that CFif content of 'no.of vehicles' has been moved to the next column 'area of farmland'. i have the new Cfif content - <cfif getPropertyDetails_T.areaofProperty NOT EQUAL "">
    <td> #NumberFormat (getPropertyDetails_T.areaofProperty,"_______.__")#</td>
    where it should be that is 'area of property' column.
    But i see that value '0.00' has been diplayed below the column 'no.of vehicles' instead of the CFif content that was previously added to it and is now pushed to next column.
    does anyone have pointers as to how i could correctly apply indentation or code it right to align the right column to the right CFif contents.
    thnx,
    sachinpol

    dear john.
    SDK Version 6.5
    I wish add on new column in existing matrix to Batch Transaction Report.
    what i doing?
    I'm sorry.
    Give me a source please.
    email : [email protected] <== source please.
    Message was edited by: kim sung bum

Maybe you are looking for

  • Automatic open item clearing for vendor/customers

    Dear All, For My client they want Automatic clearing process for vendor & customer Open item. What are the configuration settings i have to do for this how it will be process. please guide me to do this process. girija

  • Bug In Payment Wizard Report

    We have found an obscure bug in the BP Summary Report from the payment Wizard. We created historical transactions for the suppliers using one journal for each month with line level remarks & dates. Where the journal has several lines for the same sup

  • Mailto does not work in one particular profile. XP FF 3.6.8

    mailto will work in other profiles, but not the primary one. what file in the relavant profiles subfolder can I substitue from another working profile?

  • Endnotes Wrap Problem

    I'm formatting a book for someone in Pages 2.0.2. I'm using endnotes at the end of each chapter. Most of the endnotes are pretty typical short citations. However, a few of them are quite lengthy - a page or longer. My problem is that when I create th

  • How to Get Messege Server Port  & Instance Number

    Hi Experts, How To Find out the Message server Port ??? Hoe to Find Out the Instance Number ???? Please let me Know these things Regards Khanna