Adjusting column width

Where can I modify the column width for a page? I want to present several regions across columns 1,2, and 3.

Hi,
You can enter style in your query like that :
select row1,
'<span style="margin-right:100px;">'||row2||'</span>' row2
from dual;
With this style, the row2 will be more wide than the row1.
Sylvain Michaud
Homepage : http://www.insum.ca
InSum Solutions' blog : http://insum-apex.blogspot.com

Similar Messages

  • Why can't you adjust column width in pages for ipad?

    Why can't you adjust column width in pages for ipad?

    It's just one of the many, many features that have been removed. It all appears to be deliberate, not an oversight. Leave feedback for the Pages team using the link in the Pages menu.

  • Adjusting Column Widths Via the CSS in 6.5+

    It is pretty easy to adjust column widths in the CSS on 6.5+
    One issue that we encountered that was slightly trickier (for non-css folks like me) was ensuring that the columns were set at 100% for the 2 column layouts.
    The below code will set the narrow columns on 2/3 column layouts to be 200px wide, and ensure that the wide column maintains 100%
    .columnOne               { text-align: left;}
    .columnTwo               { text-align: center; }
    .columnThree               { text-align: left;width:200; }
    .layoutOneColumn               { table-layout: auto; }
    .layoutOneColumn .columnOne     { width: 100%; }
    .layoutTwoColumnNarrowWide     { table-layout: auto; }
    .layoutTwoColumnNarrowWide .columnOne          { }
    .layoutTwoColumnNarrowWide .columnOne .portletBody     {  }
    .layoutTwoColumnNarrowWide .columnTwo .portletBody     { background-color: #FFFFFF; }
    .layoutTwoColumnWideNarrow               { table-layout: auto; }
    .layoutTwoColumnWideNarrow .columnOne .portletBody     { background-color: #FFFFFF; }
    .layoutTwoColumnWideNarrow .columnTwo          {width: 200; }
    .layoutTwoColumnWideNarrow .columnTwo .portletBody     { width: 200; }
    .layoutThreeColumn                    { table-layout: auto; }
    .layoutThreeColumn .columnOne               { }
    .layoutThreeColumn .columnOne .portletBody          {  }
    .layoutThreeColumn .columnTwo .portletBody          { background-color: #FFFFFF; }
    .layoutThreeColumn .columnThree               { }
    .layoutThreeColumn .columnThree .portletBody          {  }
    /* Set the invisible image */
    #portletColumnFormatter_0 img {width:200px;}
    #portletColumnFormatter_1 img{width:100%;}
    #portletColumnFormatter_2 img{width:200px;}

    I don't understand?  I launch PSE 9 from the task bar.  This is the screen I get.
    I've tried right clicking everything I can think of w/o success.
    Once I click "organize", it's too late.  The organizer is coming up.
    Maybe I don't know for sure what the "Organizer icon" is or where it is?  Or, maybe I shouldn't start it from the task bar?

  • Visual Composer 7.2 SP3 - Adjust column widths of ALV tables by end user

    Hello,
    we're using ALV tables with values coming out of function modules and queries.
    Unfortunately I can't see an opportunity to adjust column widths at runtime by the end user. This is in contrast to VC 7.0 using flex.
    Is there a way to archieve this?
    Kind regards
    Stefan

    Hello Stefan,
    This is a feature of Webdynpro Flex runtime. You can adjust column widths at Flex runtime in 720 SP3 also.
    This is not supported by Webdynpro HTML runtime.
    Regards,
    Talia

  • 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

  • Auto adjust column width in multicolumn listbox

    Hi
    May I know, does multicolumn listbox has a function / control to auto adjust the column width?  If not, how can I solve this problem, as user could not view the full data if the width that I set is too small. It would be annoying if the user need to adjust it manually each time they get the data from database....
    Any advise??? TQQQQQ......

    Hello 222,
    I've already seen a few threads about "auto adjust multi-column listbox column width", as far as I can remember, there is not such option in LV 7.1 (I don't know about LV 8).
    Meanwhile I think there are option that can allow the user the modify column width at runtime. This plus an horizontal scrollbar should be the alternative... I know it is not "perfect" for the user.
    You also have the possibility to do a function that will compare the string length to the column width, and to programatically increase the width if needed.
    Personnaly I wouldn't go for this but this is your choice
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • How to adjust Column width using SHD0 for FB60

    Hi,
    How can adjust ( i have to reduce the length) Assignment filed in the FB60 transaction using SHD0.
    Please help in this regard.
    Regards,
    Kishore

    HI,
    I think you can adjust the column width and save it as Screen Variant in the SHD0.
    When you create a screen variant for the MIRO, adjust your column width and position than save it the variant. Once you save and activate the variant, it will appear in the Layout dropdown box on MIRO.
    OR
    Please check in spro with ur functional consultant to explore if the field can be made not mandatory..
    menu path:
    AR and AP -> Customer Accounts -> Line Items -> Display line items -> display line items without ALV

  • How to adjust column width Sheet to Go?

    Does anybody know how you can increase the column width in Sheet to Go?
    Eugene
    My PlayBook App: Checklists

    With the new Playbook 2.0 update and the docs to go app, I found that when in Excel, tap on the column header, (where it has the column identified as A, B, C, etc.), the whole column will be highlighted in blue and you will notice that on one side of the column header is a double line. Simply place finger on the header and slide to desired width. Tap outside of the column to return to the document.

  • Adjusting column width or disable word wrapping

    Dear,
    I am new at Sharepoint and need your help.
    I have a column in a list that is displaying the content like this:
    123125D-3423
    34343-998373
    -378373
    Since we correlate the information present in a same row in a sharepoint list, this wrapping is causing some confusion.
    Is it possible to disable the word wrapping?

    Hi Ricardoaor, easy method: make your column title like this "________________Column Title_____________"
    Harder method: use SharePoint Designer to increase the width of the column.
    cameron rautmann

  • Possible bugs when adjusting column width in Query Builder

    Good morning,
    we use Oracle SQL Developer 3.2.20.09 with included JDK on Windows 7 32 bit.
    When we open a sql file, in the Query Builder the criteria columns don't auto-adjust accordingly with the length of text present in the columns.
    Also, if we modify or type a new criteria in a column, and immediately after drag the column header to widen the cell, the cell content is erased (if we click first in another cell the problem doesn't occur).
    Thanks for reading and best regards.
    Marco - Italy

    Hi Marco,
    Please note that SQL Developer has included a Query Builder from a third-party since the 3.0 release. I will ping the developer that acts as liaison; perhaps you will get a more definitive response. I can only assume any UI bugs would have to be fixed by the third-party company at his request.
    Regards,
    Gary
    SQL Developer Team

  • Pages and Numbers on iPad 2 crashes when I adjust column width

    This is a problem that just started this morning: whenever I select a column or row in either Pages or Numbers the application closes. Any recommendations? I have tried forcing a shut down of Pages and Numbers, and restarting my iPad.

    I called Apple support. I forced all apps to quit, uninstalled the app, restarted my iPad and had same problem. I also took my iPad into the store where I got it. They came to the same conclusion: 1) do a back-up to the cloud, 2) delete all settings and data, 3) restore from iCloud--this took several hours to do. Good luck.
    I had just updated about 14 apps when the problem started.

  • I want to adjust the column width of "From", "Subject" and "Date". in the AT&T email within Firefox browser

    My computer runs under Windows Vista Home Premium, and Firefox browser 3.6.13. Within the Firefox browser, it shows an AT&T email window (www.sbc.yahoo.com). There are several columns such as subject, date, etc. I was able to adjust such column width before. Now I cannot do it. (Also I can adjust column width if I run in the Internet Explorer. I have another computer running Window 7 professional, same set up with Fire Fox and AT&T email, I am able to adjust the column width so I can show the full subject line.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    You can also try to set the pref layout.frames.force_resizability to true on the about:config page.
    See also http://kb.mozillazine.org/about%3Aconfig

  • How to fix BW Query column width globally before query execution?

    Dear Experts,
    Regarding the BW Query run in Business Explorer, the width of the first column A of the result displayed in Excel is usually based on the width of the query title.
    I know that we can adjust the column width in Excel: right click on the column and change the properties as "Do not adjust column width" on refresh. But how can I change and fix this width globally (regardless of the actual length of the cells) inside the analyzer during query design, and before the result coming out in Excel? I want the change is on the "Change query (global definition)", and not inside the Excel.
    Thanks & regards,
    James
    Edited by: OSS support CCS on Feb 9, 2011 10:15 AM

    Hi,
    The column width is determined by the Analyser at the runtime  and is taken by the settings done at Infoobject level in "Business Explorer tab". Like short text will have X width column.
    If you need to have fixed column with different from what is proposed by the system u need to save ur query as Woorkbook.
    or if u are displaying them in WEB ANALYSER then u can have report designer to control the formatting.
    Regards
    Ravish

  • How to set and fix column widths in Mavericks?

    Until recently I was using a Mid 2011 MBA with OS X 10.8.X.
    I don't know what I did but the column widths in the Finder started to self-adjust to the longest filename.
    Now I have migrated my user account from this MBA to a new MBP running OS X 10.9.1.
    But the Finder in this account still has the same affliction, I can adjust column widths to where I want them but as soon as I click on a file or folder, the column widths readjust to the length of the longest file/folder name.
    How can I stop the Finder from doing that automatically?
    Thanks for your help and Happy Holidays!

    Dear William Lloyd:
    I actually learnt how to do this from another post in this community just a few hours ago.
    You adjust column wisth in Finder by placing your curser at the column edge and while holding Option key down, move column edge to the width you desire.
    This will make a "sticky" change i.e., column widths will stay where you set until you chanage them.
    I would like to to attribute this to the poster I learnt from but I am not able to find that post again.
    Cheers.
    rdfNaresh

  • SmartView VBA - Cannot set "Update Column Width" setting

    Hi Folks,
    I'm in the process of updating a series of v9 Essbase VBA API-driven workbooks to SmartView 11.1.2.1 and have hit a problem - I'm new to the SV VBA commands, and I'm hoping this is something obvious that I'm missing.
    One of the functions that is key to ensuring data retrieval does not change the layout of the spreadsheets is the "Adjust Column Widths" setting, which in the Essbase VBA API could be managed using the EssVSetSheetOption function, but neither HypSetGlobalOption nor HypSetSheetOption appear to have any such capability. The only option I'm left with is to run retrieves followed by some reformatting of column widths, which seems rather ineligant to me.
    Any ideas?
    Many thanks,
    Dave

    looking in the .bas file (and what should be included in your project I find HSV_ADJUSTCOLUMNWIDTH in the definitions for Enumeration of options index to be used for HypGetOption/HypSetOption
    Note, I'm looking at the 11.1.2.2 version, your mileage may vary depending on your version

Maybe you are looking for