Alternate row shading in tables

Hi all
I've been trying again and again to get alternate rows of my long table in Frame 11 to be shaded.
I succeeded, then did something to remove them, and now I CANNOT get them to reapply.
I am using the Table Designer, Shading tab.
The Heading and Footing Shading works fine, it changes as I change colour or fill.
But the Body Shading refuses to.
Have set Body shading to Shade by Body Rows
First : 1
Fill 3%
Color: Secondary Blue
Next 1
Fill: None   
Colour White
When I apply, nothing seems to change. I have the whole table highlighted.
The Custom Ruling and Shading dialog works fine but this is a long table and I don't want to go down that route. Though given the amount of time I've spent on this I probably could have done it twice over...
Can anyone help please? It feels like a FM bug but it could just be something I'm doing wrong.
Thanks
Laura

To understand what your table tag is doing, create a blank table using that table tag.
Once you've got the settings of that table squared away, apply to your existing table.
If you still have problems, then you have custom ruling and shading applied (which I strongly recommend against, along with other format overrides). Use Error's method for removing the overrides, but examine your choices carefully; the custom ruling and shading box is particularly confusing.
-Matt 
Matt Sullivan
roundpeg, Inc. contractor
@mattrsullivan
P: 714 798-7596 | F: 360.230.7269 | [email protected]

Similar Messages

  • Alternate Row Shading in Summary Reports

    I know how to get alternate row shading in the Detail section of a report.  What I need to know, is in a summary report, where the detail section is suppressed and the Group Footer section is acting as your detail section, how does one apply alternate row shading to that?  My usual method isn't working.
    Thanks!

    What are you trying?  Something like
    If GroupNumber mod 2 = 1 then
        crSilver
    Else
        crWhite
    The Panda

  • Alternate Row Shading or Formatting

    Hello,
    I have a report in which I want to shade the backgroud color for alternate rows.  More specifically, I'm trying to do this for a group footer (the details are suppressed and the group footer is the most detailed level displayed).  When I do this, not every other line is shaded.  Sometimes it is three in a row, sometimes once, etc.  I'm assuming this is because groups with a $0 value are suppressed.  This is the formula I'm using:  
    if (recordnumber mod 2) > 0 then Color (238,238,238) else crwhite
    Any suggestions would be greatly appreciated.
    Thanks,
    Dan

    Try this
    //Place this formula in the  group header/footer section that you with to be shaded and only in that group
    Whileprintingrecords;
    global numbervar shading;
    shading := shading + 1
    ///place the following formula in the section expert for group footer/header you wish to shade
    Whileprintingrecords;
    global numbervar shading;
    if remainder(shading,2)=1 then Color (238,238,238) else crwhite

  • Alternate Row Shading

    Periodically my row shading goes away. If I go to Inspector and check alternating row color, I get shading, but its not every other line straight across. Some columns are shaded some not and not necessarily alternating lines. My desire is to have every other line shaded straight across to make it easier to read, similarly to if some laid a straight edge on a printed copy so they didn't slip down a line. Input?
    Thanks

    I agree with the fact that it make sense.
    In fact I build the table to check that my understanding of the feature was correct.
    At this time, we have a possible explanation of what the OP describe but maybe an other feature is at work.
    Moet Hennessy (my customized version of Wait And See)
    Yvan KOENIG (VALLAURIS, France) jeudi 23 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • SQL - alternate rows from 2 tables

    Hi, not sure how to best put this, but I have 2 tables for a Sales database. One is for our Sales Agents Actual sales (Agent_Sales, Product, Jul, Aug, Sep, Oct....) showing the actual sales by agent. PK is composite Agent_Sales and Product. The other table is similar but for the Targets (Agent_Target , Product, Jul, Aug, Sep, Oct....) with the PK again being composite Agent_Target and Product.
    What I would like to do is get a listing for each agent in a table listing the actuals on the first line, then Targets on the second. Furthermore the 3rd line will be the variance between actuals and target and 4th line a percentage to target.
    I would like the output to look like this:
    Jul Aug Sep Oct
    Agent_Sales 8 9 10 8
    Agent_Target 9 8 8 9
    Variance -1 1 2 -1
    Percent 0.89 1.12 1.25 0.89
    Thanks in advance.

    Hi,
    Another way:
    WITH  cntr  AS
         SELECT  LEVEL  AS n
         FROM     dual
         CONNECT BY  LEVEL <=4
    SELECT     a.agent_sales
    ,     a.product
    ,     DECODE (c.n, 1, a.jul, 2, t.jul, 3, t.jul-a.jul, 4, a.jul/t.jul)     AS jul
    ,     DECODE (c.n, 1, a.aug, 2, t.aug, 3, t.aug-a.aug, 4, a.aug/t.aug)     AS aug
    ,     DECODE (c.n, 1, a.sep, 2, t.sep, 3, t.sep-a.sep, 4, a.sep/t.sep)     AS sep
    ,     DECODE (c.n, 1, a.oct, 2, t.oct, 3, t.oct-a.oct, 4, a.oct/t.oct)     AS oct
    FROM          actual_sales     a
    JOIN          target_sales     t     ON     a.agent_sales     = t.agent_sales
                             AND     a.product     = t.product
    CROSS JOIN     cntr          c
    ORDER BY  a.agent_sales
    ,         a.product
    ,         c.n
    ;It sounds like each row in each table has a matching row in the other table. If that's not the case, then you might want to make the join between actural_sales and target_sales an outer join. All the computations might be messier, if they need NVL or NULLIF to deal with missing items.
    I wonder if this is the best table design. Perhaps something with a separate row for each month would be better.
    Edited by: Frank Kulash on Aug 2, 2009 4:09 PM

  • Alternate row color for table question

    I'm alternating the row color on a table, and if I have a
    <a href> in
    the table, the background behind the <a href> isn't the
    same as the row
    color based on:
    <tr bgcolor="###iif(currentrow mod
    2,de('ffffff'),de('efefef'))#">
    Is there a way to have the CSS that formats the <a
    href> change at the
    same time as the background color for the row??

    How about a way to do it without having to learn something
    else (like a
    framework??)
    Anyone done something like what I'm looking to do? Just
    change the <a href>
    formatting to go along with the inline iif shown below?
    <tr bgcolor="###iif(currentrow mod
    2,de('ffffff'),de('efefef'))#">
    Steve
    "Daverms" <[email protected]> wrote in
    message
    news:fgn5vi$83b$[email protected]..
    > Hi,
    >
    > Try implementing the "JQuery" framework in your
    application. It really
    > minimizes the coding time and enables you to concentrate
    on development
    > alone.
    >
    > (Try Googling, You can find more JQuery solutions for
    this TR alternative
    > bgcolor issues, ).
    >
    >
    >
    >

  • Scripting Row Shading

    I am using a table where I have Apply Alternate Row Shading checked. When a row is deleted by clicking on a delete row button the shading doesn't adjust and the user may end up with two rows with the same shade colour adjacent to each other. Is there a way to get the shading to update with a script when the delete row button is clicked?

    [email protected] wrote:
    > I am using a table where I have Apply Alternate Row Shading checked. When a row is deleted by clicking on a delete row button the shading doesn't adjust and the user may end up with two rows with the same shade colour adjacent to each other. Is there a way to get the shading to update with a script when the delete row button is clicked?
    The javascript code for the row shading is on the initialize method for each row. This code is
    auto-generated by the table wizard. Because it's defined on the initialize method, the row color is
    only updated when the row is first created. Move the code from the initialize event to the
    layout:ready event and it will update each time your form layout changes.
    In my opinion, Adobe's choice to use the initialize event was a poor one.
    Justin Klei
    Cardinal Solutions Group
    www.cardinalsolutions.com

  • How to get all rows in table to red using alternate rows properties option

    How to get all rows in table to red using alternate rows properties option

    Hi Khrisna,
    You can get all rows red by selecting the color red in the "Color" and "frequency" to 1 under the "Alternate Row/Column colors".
    I tried doing it and the colors freaked me out (all red) :-D
    Kindly tell me if im missing something.
    Regards,
    John Vincent

  • Scroll bar and alternate row color in Trinidad table

    I am using Jdeveloper 11g
    I have two question on tinidad table see below sample code
    *1)How to set scroll bar on table*
    *2)how to set different colors for alternate rows*
    <tr:form>
    <tr:panelGroupLayout>
    <tr:panelFormLayout inlineStyle="width:965px; height:512px; margin:50px;">
    <f:facet name="footer">
    <tr:table value="#{bindings.UserFavoriteVO.collectionModel}"
    var="row" rows="#{bindings.UserFavoriteVO.rangeSize}"
    binding="#{UserActionBean.table1}"
    emptyText="#{bindings.UserFavoriteVO.viewable ? 'No rows yet.' : 'Access Denied.'}"
    rowSelection="multiple" id="table"
    inlineStyle="border-width:none; outline-color:ActiveCaption; outline-style:groove; border-color:Navy; color:MenuText; font-size:medium;"
    horizontalGridVisible="true" verticalGridVisible="false">
    Thanks for all help
    Jaydeep

    Hi Sireesha,
    Thanks for reply.
    I forgot to mentioned that i already tried that option *(rowBandingInterval)*
    <tr:table value="#{bindings.UserFavoriteVO.collectionModel}"
    var="row" rows="#{bindings.UserFavoriteVO.rangeSize}"
    binding="#{UserActionBean.table1}"
    emptyText="#{bindings.UserFavoriteVO.viewable ? 'No rows yet.' : 'Access Denied.'}"
    rowSelection="multiple" id="table"
    inlineStyle="border-width:none; outline-color:ActiveCaption; outline-style:groove; border-color:Navy; color:MenuText; font-size:medium;"
    horizontalGridVisible="true" verticalGridVisible="false"
    rowBandingInterval="1">
    but no any success.
    *@ scroll* I found in Frank post it is related to ADF table .So i just want to ask will it be applicable to Trinidad table too.

  • Alternate row colours in dynamic tables?

    Hi all,
    I know that alternate row colors are easily accomplished on static tables using class styles. Does any one know if this can be implemented on pages that dynamically display multiple records?

    Yes, it's very easy to do. The actual coding depends on your server-side language. The basic principle is to use the modulo operator (%) with a counter that's incremented with each iteration of the loop.
    Modulo division produces the remainder of a division sum. So, if you use modulo division on the counter, and divide the counter by 2, the result will alternate between 1 and 0, which can be used to determine which class to apply to the current row.
    In PHP:
    <?php $i = 0;
    <?php do {
    <tr <?php if($i++ % 2) {echo 'class="hilite"';} ?>>
    <!-- rest of code -->
    </tr>
    <?php } while ($row_recordsetName = mysql_fetch_array($recordsetName)); ?>
    Create a style rule for all table rows, and a different one for the hilite class. Stripes.

  • How do I turn off the shading on the first row of my Table?

    I have to type a lot of information in, and managed to get a "Table" going in my Pages Document.
    Unfortunately, and for a reason that seems to be inexplicable to me, the top row of the table is shaded. Sort of like a Half-tone or Zippatone sort of graphic effect. Or whatever you call it. Maybe a lot of people like that sort of thing, but not me.
    How do I turn off the shading on the top row of my table?

    The top row of the table is a header row, the 1st column is too. They are both light grey to differentiate them from normal rows and columns.
    If you don't need the special headers you can remove them. Select & right click Delete works as does turning them off using the table icons on the right of the format bar.
    If you need the headers but don't like the colour just remove it via the fill option on the format bar and in the inspector.
    The pdf guide will help to get you up to speed too.

  • I want to customise my table so alternate rows are in bold font

    i want to cutomise my table so alternate rows are in bold font - how do i do this ?  If this is by way of script please provide the script and how i write and apply the script.
    first row gotham narrow medium, second row gotham narrow book ...and so on alternately.

    Someone might have a script for this but you can achieve this without scripting using a combination of table styles, cell styles and paragraph styles.
    See Michael Murphy's awesome videos on tables, especially episodes 18,19 and 20.
    http://www.theindesigner.com/blog/category/tables
    John

  • Using alternate rows with Spry Data Set

    Can anyone provide more information on how to implement alternate row colors with a Spry Data Set?  What I have done is:
    Create spry data set using HTML page as the data set
    The html page that displays the data set is:  <div spry:region="equipment">
    In the default.css page that is linked, I added the info in note #1 below
    When the page displays, no colors appear. Tried changing the colors and still no luck.  Is there another step to do?
    Note #1:
    within the default.css, the following are declared:
    #equipment odd {
    background-color: #CCC;
    #equipment even {
    background-color: “#F2F2F2;
    Note #2:
    Here is a link to see the actual pages referenced above.
    Any ideas? Getting frustrated!!  Thanks in advance for any advice.

    You are going to kick yourself, but, you haven't assigned any page element the ID #equipment. The region is called that but the table or the DIV does not have an idea and your selector matches nothing...

  • How To Color Alternate Lines in ADF Table

    Hi everyone, I want to color alternate the lines of a ADF Table. I have tried the “banding” property of the <af:table> tag but it alternates rows colours with white background. I would like to alternate with two custom colours like blue and light blue.
    Is this possible?
    Thanks in advance.
    PS: I have checked the styles funcionatily of ADF faces but I could not find any solution there.

    Hi,
    I am new to the Jdeveloper and also for the adf components.Actually i am working with the project which has already designed.Now i have to change the look n feel.
    I want to change the color of the table colums.So could u tell me in which file i have to change and how.
    I put in the jdeveloper.css like this ......
    column.cell-number-band{
    color :Teal
    And in the adf-faces-config.xml i had only "oracle" type of skin.
    I have to finish the work tomarrow itself......
    So anybody helps me it will be greatfull me.

  • Alternate rows with different number of columns in JTable or similar

    Hi Guys,
    I have tried searching google and these forums, but have not been able to find what I am looking for.
    Looking for ideas, on how to do the following
    I have a swing application, that I would like to have alternate rows
    eg.
    1st row has 10 columns
    2nd row has 1 column, that expands all 10 columns of the 1st row
    and keeps alternating like this for the rest of the records in the table.
    Is there a special JTable that can do this for me, or has anyone had to do this before.
    Thanks,
    Mac

    an example of merging cells is here
    [http://www.crionics.com/products/opensource/faq/swing_ex/JTableExamples4.html]
    scroll down to 'Multi-Span Cell'
    run the program, highlight some cells, click combine.
    if that's the type of thing you're after, modify your code per what's in 'combine'
    note: the original code (now) produces a stack overflow error (don't know if it's been fixed in the above link),
    but if you get that error, in AttributiveCellTableModel's setDataVector( Vector newData, Vector columnNames )
    change
    setColumnIdentifiers(columnNames);
    to
    columnIdentifiers = columnNames;

Maybe you are looking for

  • Is there a way i can take the songs from my ipod touch and put it on a new computer and a new itunes?

    so i just got a brand new laptop(windows) and i have an ipod touch. most of the music on my ipod i bought straight from itunes ON my ipod. is there a way i can transfer the music i have on my ipod to my new computer?! Please help!! <3 thank you!

  • Nothing happens when I use Photomerge Panorama in Photoshop Elements 6

    Hi, When I select files to merge in Photomerge and click on OK, Photoshop seems to work for some seconds, and that's all! Do You know this problem? Thanks for all hint Alooha

  • My iphone is not starting up

    hello there, my iphone has a problem... When i ture it on it has the apple logo in it, but when the loading comes below the iphone the iphone turns itself off and it restarts again. I can not turn it off too, it just keeps on doing it again and agian

  • The library must contain at least one event

    Hello everyone. Noob question here. How do you delete event in "All Events"? when i try to do so, it says "the operation cannot be completed. the library must contain at least one event".. Please, pretty please answer.. Thank you so much.

  • Weird battery levels...

    Hello, Does anybody know why my battery jumps from 8.30 hours left to 5 hours and back to 6.45 etc.? I bought it just one week ago at the online apple store & it's my first MB so I don't know a lot about it... Thank you !