Planning Layout Column Width and Text Wrapping

Hello,
Is there a way in a BPS layout to set the column width to a certain length and have the column heading texts wrap?  I noticed an answer for adjusting a table API for BW Web columns, but not BPS.
Thanks,
Cherie

A coworker figured out by selecting the line break in the change subcomponent it wraps the column text.

Similar Messages

  • Prob with fixed column widths and word wrapping in viewer

    i have a report where each record has a very long paragraph of text in it.
    In desktop and plus, the text column is at a fixed width and the text just wraps nicely according to the column width.
    But in Viewer, the column widths do not stay fixed, the text does not wrap, and the long text is displayed in a single line that completely stretches the column width off the page and requires a horizontal scroll bar.
    is there anyway to fix the column width in viewer, have the text naturally wrap, and prevent the column stretching. All word wrapping settings are on, but seem to have no effect. I can't seem to find any solution to this.
    Thanks...

    Hi Pritam,
    Per my understanding that you can't see the vertical scrollbar of the ReportViewer controls 2012 to scroll for the grid rows, but can see the vertical scrollbar of the web application, you also can't fix the headers while scrolling, right?
    I have tested on my local environment and can't reproduce your issue, but you have an alternative way to add some css  to the web form's source code to display the vertical scrollbar.
    Details information below for your reference:
    Please check below properties setting of the reportviewer which control the visibility of the scrollbar:
    AsyncRendering="true"
    SizeToReportContent="false"
    Please check if this problem also occur on other version of IE and other type of browser.
    Please check if you have done correct setting of the Fix data to freeze the table header as the step of below:
    http://technet.microsoft.com/en-us/library/bb934257(v=sql.100).aspx
    If step1 doesn't work, please click the source of webform.aspx and add below CSS to add the vertical scrollbar manually:
    #ReportViewer1 {
              overflow-y: scroll;
    Run the application you will see it display as below:
    Similar thread for your reference:
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/f96b3b56-e920-411b-82ea-40467c922e66/reportviewer-control-vertical-scroll-bars
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu

  • Layout/column width displaying differently in IE...

    I'm having a problem getting my Spry menu all in one horizontal line. On the rest of my site, and in Chrome and Firefox, the navigation at the top looks as it should. But on this page only, and only in Internet Explorer, the 2 menu items on the right are getting bumped to the next line:
    http://atenndesign.com/about.html
    I compared it to the code in my other site files, and the column widths and image/menu widths match, so I'm not sure what's causing the menu to display this way in IE. Any ideas?

    You are not using the latest Spry files
    The latest version of the Adobe Spry Framework is 1.6.1, this is the same version that ships with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry 1.4), its wise to upgrade your files to the latest version. This can easily be done using the Spry Updater that can be found here.
    Gramps

  • Column widths and gutters

    I would like to have variable column widths and gutters. At present (Acrobat 6 running under XP Prof. SP3) although I can choose the number of columns, and hence the number of gutters, all columns must be the same width and all gutters the same width.

    What does your question have to do with Acrobat? Acrobat is not an editor.

  • Is there any way to make column width and height 0 by using formula?

    Eg:
    =If (column = value) then Column width = 0px and height = 0px

    Hi Riaz,
    Instead of kepping column width and height as 0, you can just hide the particular column by using the same function that you mentioned above, (if column = value) in hide..
    You can just right click on the column->hide->hide if->dimension=value.

  • Uneven Column Width and Spanning

    So, I would like to create a grid with two columns of different widths. From what I can tell, the only way to do this is to manually adjust column guides on a master page and then flow in my text.
    The only problem is that InDesign creates separate frames for each column instead of a 2-column frame. I can't have any ¶ styles span the columns.
    Does anyone have a creative solution for this? I would really prefer not to use separate text frames any time I want to span columns.
    Thanks,
    Chris

    Chris Z. wrote:
    So, I would like to create a grid with two columns of different widths. From what I can tell, the only way to do this is to manually adjust column guides on a master page and then flow in my text.
    The only problem is that InDesign creates separate frames for each column instead of a 2-column frame. I can't have any ¶ styles span the columns.
    Does anyone have a creative solution for this? I would really prefer not to use separate text frames any time I want to span columns.
    Thanks,
    Chris
    Depending on the specific needs of the text flow, you might be able to use some combination of a multiple-column layout, span-column properties, left and right indents, text frame insets, and master-page frames with text wrap properties, so achieve your goal. By "multiple-column layout" I'm thinking of the technique of designing page grids with many columns, and placing page content across one, two, or more columns; in this fantasy, I'm thinking of different span-column properties. For example, with a six-column grid, paragraphs could span one, two, three, four, five or all six, to give the effect of different column widths in the text frame. I've done only the barest minimal experiment; it seems promising. It would take some effort to create, but setting the necessary properties by using styles, the effect could maintain itself without manual intervention, so the development effort would be returned every time you use it.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Applescript/Pages and adjusting column width (and paragraph style)

    I was hoping that some someone might know how to adjust the width of individual columns in Pages using Applescript. It seems like it should be a simple task, and I can adjust the overall width/height of the table, but I haven't found a way to adjust the column width. Alternatively, I could have the program create the table in Numbers and copy/paste it into Pages, but I'd imagine that would get a bit messy and wouldn't allow me to use a hanging indent in the cells (to the best of my knowledge).
    Also, is there a way to adjust the paragraph style used by the text in the table? Otherwise, I could just use a templet and define the the default table style appropriately. (Though not the most elegant solution).
    Thanks in advance for your help!
    (In case it helps, the script I'm working on parses an unformatted inventory and parses it into paragraphs/tables.)

    Try this:
    set tableCount to 0
    --open file to be pased here, excluded for example
    tell application "Pages"
        activate
        set theDoc to (make new document)
        tell theDoc
            --makes paragraph styles used
            make new paragraph style with properties {name:"Folio", font name:"Times New Roman", font size:12, bold:true, alignment:left, space after:5, keep with next paragraph:true, space before:15}
            make new paragraph style with properties {name:"Place", font name:"Times New Roman", font size:12, bold:false, alignment:left, line spacing type:relative, line spacing:100}
            make new paragraph style with properties {name:"Description", font name:"Times New Roman", font size:12, bold:false, italic:true, alignment:left, line spacing type:relative, line spacing:100}
            make new paragraph style with properties {name:"Table", font name:"Times New Roman", font size:12, alignment:left, left indent:0.5, first line indent:0.0}
            --begin repeat, gathers MS info from one doc (unformatted) and writes it into another with formatting, setting variables directly for example
            set MSName to "new Manuscript"
            set MSPlace to "place where MS is stored"
            set MSDesc to "description of MS"
            set tableData to {{"folio", "title", "composer"}, {"", "subtitle", ""}, {"etc", "next", "next"}}
            --write paragraph information from earlier
            set currentPar to (make new paragraph at end of paragraphs with data MSName)
            set paragraph style of currentPar to "Folio"
            set currentPar to (make new paragraph at end of paragraphs with data MSPlace)
            set paragraph style of currentPar to "Place"
            set currentPar to (make new paragraph at end of paragraphs with data MSDesc)
            set paragraph style of currentPar to "Description"
            --create table, add data, and format
            tell application "System Events" to tell process "Pages"
                key code 125 using {command down} -- move the insertion point to the end
                tell menu bar 1
                    -- Insert a new table:
                    click menu item "Table" of menu 1 of menu bar item "Insert"
                    -- Delete the header row:
                    tell menu 1 of menu bar item "Format"
                        click menu item "Delete Row" of menu 1 of menu item "Table"
                    end tell
                    -- Show the Inspector:
                    tell menu 1 of menu bar item "View"
                        if menu item "Show Inspector" exists then
                            click menu item "Show Inspector"
                        end if
                    end tell
                end tell
                tell window 1 -- the Inspector window
                    click radio button 7 of radio group 1 -- select the Table Inspector
                    perform action "AXRaise" -- activate the Table Inspector
                    tell tab group 1 of group 1
                        click radio button "Table" -- select “Table”
                        -- Reduce width of all three columns:
                        repeat 3 times
                            set value of text field 2 to "0.5 in"
                            set focused of text field 2 to true
                            keystroke return
                            keystroke tab -- next column
                        end repeat
                        key code 126 -- the Up Arrow
                        -- Set width of each column:
                        repeat with theValue in {"0.75 in", "4.25 in", "1.5 in"}
                            set value of text field 2 to theValue
                            set focused of text field 2 to true
                            keystroke return
                            keystroke tab -- next column
                        end repeat
                        key code 126 -- the Up Arrow
                    end tell
                end tell
                keystroke "i" using {option down, command down} -- hide the Inspector
                -- Add the data:
                repeat with i from 1 to 3
                    set thisRow to item i of tableData
                    repeat with j from 1 to 3
                        keystroke (item j of thisRow)
                        if (i * j = 9) then exit repeat
                        keystroke tab
                    end repeat
                end repeat
            end tell
            set tableCount to tableCount + 1
            tell table tableCount
                select
                set stroke width to 0.0
                set wrap to center
                set name to MSName
            end tell
            --after which it would continue with the next MS and repeat the process until all are done
        end tell
    end tell

  • JTextArea as ListCellRenderer in JPanel with JSplitPane and text wrapping

    Hi.
    I have problem with JTextArea text wrapping. The JTextArea is used as ListCellRenderer in JList and it has set:
    textArea.setLineWrap(true);
    textArea.setWrapStyleWord(true);I can dynamically add new Notes, modify and remove notes on JList. The capacity of the Text is various so the size of cells is various.
    The JList is in JScrollPane configured like this:
    JList notesList = new JList();
    JScrollPane scrollPane = new JScrollPane(
                        JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                        JScrollPane.HORIZONTAL_SCROLLBAR_NEVER
    scrollPane.setViewportView(notesList);This scrollPane is put on the left component in the JSplitPane.
    When I put one note with any capacity I want, word wrapping works great even if I move the splitter. The size of cells in JList changes as I want. When JList has more width the cells have less height, when JList has less width the cells height grows because of text wrapping.
    Problem
    Sometimes and I don't know when and why the cells size is fixed.
    I put new note to the list, JList lays the cell, calculate the size and disply it. It is good but when I move splitter the size of the cell is the same. It seems that during moving the splitter the JTextArea doesn't calculate their size.
    I would like in every cell in JList to see whole text wrapped. When I make more width by slider I would like to see whole text with less number of rows. When I make less width with the slider I want to see whole text wrapped and more higher cells.
    Can someone help me where to looking for ideas.

    Hi.
    I have problem with JTextArea text wrapping. The JTextArea is used as ListCellRenderer in JList and it has set:
    textArea.setLineWrap(true);
    textArea.setWrapStyleWord(true);I can dynamically add new Notes, modify and remove notes on JList. The capacity of the Text is various so the size of cells is various.
    The JList is in JScrollPane configured like this:
    JList notesList = new JList();
    JScrollPane scrollPane = new JScrollPane(
                        JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                        JScrollPane.HORIZONTAL_SCROLLBAR_NEVER
    scrollPane.setViewportView(notesList);This scrollPane is put on the left component in the JSplitPane.
    When I put one note with any capacity I want, word wrapping works great even if I move the splitter. The size of cells in JList changes as I want. When JList has more width the cells have less height, when JList has less width the cells height grows because of text wrapping.
    Problem
    Sometimes and I don't know when and why the cells size is fixed.
    I put new note to the list, JList lays the cell, calculate the size and disply it. It is good but when I move splitter the size of the cell is the same. It seems that during moving the splitter the JTextArea doesn't calculate their size.
    I would like in every cell in JList to see whole text wrapped. When I make more width by slider I would like to see whole text with less number of rows. When I make less width with the slider I want to see whole text wrapped and more higher cells.
    Can someone help me where to looking for ideas.

  • Planning Layout- Assigning Curr and Unit

    Hi All
    We created a layout for statistical items everything is fine we selected amount and quantity as key figures.
    Please let me know the possibilities of actions we are looking. I dont know whether we can do it or not just for confirmation from this forum.
    1)
    Basically Planning Layout is coming like this:
    Short term loans - 3000 -  INR  - 0.000  -
    Creditors Days   -   0.00 - INR  - 30.000  -  DAY
    Is there any chance to assign unit or currency to items in a column like i mentioned below.
    Short term loans - 3000    - INR
    Creditors Days   -  30.000 - DAY
    2)
    Is there any possibility that: If we enter the data in Amount field,  the quantity field must become disable automatically, in the same manner if we enter the data in Quantity field the amount field must become disable.
    Not in a columnwise, by rows wise.
    Please clarify my doubts. I appreciate your valuable response.
    Regards,

    Hi,
    1) For currency include the Currency characteristic in the layout and appropriate Planning objects should get it. For Day could create a custom characteristic with the master data value restricted to "Day" in the Planning level.
    2) From what I understand your objective here is to ensure that the amount and quantity are in sync and change in one should not show incorrect figures in the other. Would suggest making the Amount as a Calculated Key figure in the enhanced layout(transaction upx_mntn) so that change in one causes the other to be changed appropriately.
    hope it helps

  • Planning layout for material and cost element

    Dear all,
    i need to upload data from r/3 and start planning from data i have uploaded.
    data is as follows:
    year month material amount
    what i need to do is to put data in planning layout and put cost element next to that and manually enter cost element.
    so desired column is like that:
    year month costelement( enter manually) material amount(enter manually)
    is it possible and how?
    thanks

    Hi,
    You can do it.Take a  look at the best practice  below.It is telling step by step how to do cost center accoıunting planning.
    http://help.sap.com/bp_biv235/bi_en/html/BW/CostCtrPlan.htm
    Regards.

  • GridControl: Column width and Font Color

    I'm having two problems with the GridControl in JBCL:
    1) I can't set the font color of the text in the gridcontrol. Is
    this possible? I tried setting the foreground color, but that
    didn't work. I'd also like to be able to set the background
    color for the headers.
    2) I have a gridcontrol connected to a queryDataSet. I set the
    column width of the columns in the query data set, and the
    columns in the gridcontrol expand up to about 100pixels. After
    that however, the don't get any larger (even when set to 300). I
    have 2 columns I want to span the entire width of the screen,
    but
    I can't get it working.
    Thanks for your help,
    Kevin
    null

    Can any one help us ?
    Thanks,
    Ramesh S.
    null

  • Is it possible to have a fixed column width and a URL link?

    I am trying to achieve having a popup link on a column within a SQL report but also have the report column a certain width. I can have either or however not at the same time.
    What I did was created a SQL report, edited a column and gave it a URL redirect (page in application) as normal.
    For the fixed column width, I used:
    <div style="width:250px; height:54px; overflow:hidden" title="#Comments#">#Comments#</div>On Column Formatting / HTML Expression
    And for the popup URL, I used:
    onclick="window.open(this.href,'_blank','resizable=0,scrollbars=0,width=650,height=300,menubar=0,location=0');return false;" title="Comments"On the Column Link / Link Attributes

    Andy thank you for your reply, however I either am not completly understanding or there is a problem elsewhere.
    I have changed to the code to fit the needs of the application as so:
    !http://i41.tinypic.com/2m6mrh4.jpg!
    App ID: 523
    Page: 23
    Item: P23_STATUS_COMMENT
    Column to select: Comments
    Whenever clicking on the link, the following error is given:
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
         Error      ERR-7620 Could not determine workspace for application ().{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Is there a way to zoom and text wrap on ipad safari

    Dear all
    Now I am in iOS 6 and still the text doesn't wrap on safari *after pinch and zoom*
    So one is forced to keep scrolling to read *every* line !! And that is annoying
    The grey reader ikon does NOT appear on all web pages ...I know I know there are limitations
    So what is the solution to wrap text on a web page after pinch and zoom ?
    Does one have to still run around to other browsers ( like atomic or whatever ) or is there some hope in safari ?
    Or should one go to the android world ?
    Or what ?
    I tried installing the readeability book marklet but that too does NOT work on all pages ( again checked on safari )
    SO IT BOILS DOWN TO word wrap on safari OR whatever browser after pinch and zoom
    Is there a way to wrap text AFTER pinch answer zoom on safari ?
    Any help , tips, workaround (free ) would be appreciated whole heatedly
    TIA
    regards
    Subu

    Thanks for the reply James
    I am NOT sure if we are on the same page / same understanding ...so let me try again
    All below on an ipad 2, iOS 6+ OS , all legal NO jailbreak
    1. Take a sample public page ...example http://www.sec.gov/Archives/edgar/data/50104/000005010413000019/tso10k2012-ex322 .htm
    2. Pl open this on an iOS ...mobile safari browser
    3. When I open it on my ipad 2 , iOS 6+ OS browser I do NOT see the reader facility and for my old eyes the font is small
    4. However BEFORE zoom the text IS properly text wrapped to fit inside an iPads screen
    5, I need to read this page , as I said the font is too small for me , so I pinch and zoom on my safari page as displayed on ipad 2
    6. Now the lines are longer than the ipad screen and I need to keep scrolling left and right to read any line fully !!!
    7. I want the text to be aligned AFTER zoom
    8. Am I making myself clear ?
    Thanks in advance for your tips , ideas
    Regards
    Subu

  • Table component - column width and background color?

    Is there any way to set the column width on the table component?  And is there any way to set the background color.  I am using Xcelsius 2008.
    Thanks,
    Karen

    Column width and background can be set in the Excel range and then bind table component to display the range.
    If you change the Column width of background in the Excel range, you need to rebind the display range to update the format.
    Hope this can help!

  • Three column fixed layout and text-wrap

    I have a page using the three col fixed header and footer
    layout.
    I know that if your #maincontent div has a left margin the
    width+ of the left sidebar, the sidebar appears to continue down
    the page no matter how much content is has in it. In the 3 column
    fixed layout comments it says to delete that margin if you want the
    text to flow into that space after the sidebar content ends. This
    is what I want but it does not work in IE 7.
    Is there a workaround?
    www.sandracase.com
    www.sandracase.com

    Instead of that ,  define three windows for three clolumns and then define three text modules  that would be very easy. I have done the similar requirement for 2 columns.
    Reward points if useful.
    Regards,
    Nageswar

Maybe you are looking for