Column widths keep changing

I understand that Mail controls column widths globally - a nuisance but a major issue - but why do the column widths keep changing after I set them. I appears that they are trying to accommodate a wide entry in a field or some such. Is there a way I can set the column widths and have them stay there!

oops - meant to say the columns are resizing after searches, and when I turn threading off, my column widths remain at what I set them.
I assume when your columns resize, you've just performed a search and returned to your inbox/folder?

Similar Messages

  • Mail's column widths keep changing

    I know similar topics have been posted, but most of them quickly digress to other issues. My issue is that column widths in mailboxes keep changing. This happens if I go from an Inbox folder to a Sent folder and back to the Inbox folder. It also happens after I do a search.
    My Inbox mailbox columns are: flag, unread (which you have to have), attachments, from, subject, date received, date sent, size. The mailbox is sorted by date received.
    If I change to a sent mailbox then go back to my Inbox, the date received column is much wider than I set it. If I do a search then go back to my Inbox, the attachments column is much wider and the date received and date sent columns have changed widths as well.
    I seems as if this should be a fairly simple task for mail to save column widths for each mailbox. Other email programs do it? Why can't Mail?
    G5 1.8 gHz SP   Mac OS X (10.4.6)   Mail 2.0.7

    Which mailboxes are we actually talking about here? Are individual account mailboxes that lose their viewing settings or are the Inbox, Sent, etc. aggregates that lose them? If the latter, that could mean there is something wrong with the preferences file, and I don't know of a way to try to fix the problem other than re-creating that file:
    1. Quit Mail.
    2. Make a backup copy of the HOME/Library/Mail folder, just in case something goes wrong. You can do this in the Finder by dragging the folder to the Desktop while holding the Option (Alt) key down, for example. This is where all your mail is stored.
    3. In the Finder, go to HOME/Library/Preferences/. Locate the file com.apple.mail.plist and move it to the Desktop (to be deleted if this fixes the problem).
    You'll have to set up your non-Mac accounts from scratch all over again. If given the option to import existing mailboxes or something like that, don't. Just enter the account information and Mail will automagically rediscover the data in HOME/Library/Mail/ when done.
    You'll also have to re-configure most of your settings in Mail > Preferences. For spam-related security reasons, the first thing you should do is go to Preferences > Viewing and disable Display remote images in HTML messages if it's enabled.

  • Column Headers Keep Changing

    Many times now I've had to change the column headers that appear over emails only to have them change back to something else.
    I click VIEW > COLUMNS and then put a check next to the ones I want to display like FROM, SIZE, ATTACHMENTS etc. Then I rearrange the order they will appear in by dragging the headers to the left or right in the viewer window.
    When I come back to the mailbox later, the view has reverted to what it was before.
    Any ideas? I don't think it's a sync issue with my other computer (which is doing this too) because I only use sync for Keychain and iCal, not Mail. I use IMAP and get my mail through Google Apps. Does the problem trace back to Google's control panel?
    I want to LOCK the way column headers appear and be done with it!
    Thanks.

    Yes it worked, thanks a lot. here is my code
    Dim mydate As DateTime, str1 As String
    Dim datevalue As Date
    Dim columns As DataGridViewColumn() = New DataGridViewColumn(6) {}
    For i = 0 To columns.Length - 1
    Dim col As DataGridViewColumn = New DataGridViewTextBoxColumn()
    Dim DateSunday As Date = Now.AddDays(-1.0 * CDbl(Now.DayOfWeek))
    mydate = DateSunday.AddDays(+i)
    datevalue = mydate
    str1 = mydate.DayOfWeek.ToString
    col.HeaderText = str1 & " " & mydate.ToString("d")
    columns(i) = col
    Next
    Me.DataGridView1.Columns.AddRange(columns)

  • Business Graphics UI element Column Width

    Hi Experts,
    I am using business graphics UI element in my Web Dynpro application to display the chart in columns .
    I am able to display the chart properly based on the node data.
    But the issue that I am facing is that when the node data is less, the column in the chart is getting expanded(column width is increased) as I am not able to set the width of the column dynamically based on the node size.
    The column width keeps on changing based on the node size.
    Is there any possible way to set the column width dynamically or fix the column width irrespective of the node size?
    Best Regards,
    Anurag

    Hi Guys,
    Is there any update on this?
    Best Regards,
    Anurag

  • Web Application Designer: Column width on analysis_item with BW 7.0

    Hi,
    I'm new to SAP world and I have found a problem I'm not able to solve. I'm working with the Web Application Designer and I want to modify the cell properties (such as cell width) for aligning different queries. In fact, my question are:
    <b>
    1. Is it possible to hard-code/specify column widths of the analysis_item?
    2. The property width of the analysis_item doesn't work, does it?
    </b>
    Thanks for your time and efforts.
    Message was edited by:
            Daniel Rubio

    Hi,
    I have just discovered the capability of modifying columns widths with css properties.
    So if I add to the head section of the html:
    div.prueba2 .urSTTDBdr1
    div.prueba2 .urSTTDBdr
    div.prueba2 .urSTTDBdr2
    And later I put the AnalysisItem between a div class="prueba2" and /div, the columns widths are changed.
    Do you know where can I find all the style properties (such as urSTTDBdr1) and its functions?
    Thanks

  • Flex 3: DataGrid Column width on resize

    Hello experts,
    I am facing an issue with width of DataGrid columns. We are using Flex 3.2.
    I am setting the widths for columns in creationComplete handler of DataGrid. When the browser window is resized, say restore down and then maximize,
    the column widths are changing. Please find the code below:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" height="100%" width="100%">
    <mx:Script>
        <![CDATA[
            import mx.core.ScrollPolicy;
            [Bindable]
            private var isVisible:Boolean = true;
            private function creationCompleteHandler():void{
                dataGrid.horizontalScrollPolicy = ScrollPolicy.ON;
                artist.width = dataGrid.width * 0.40;
                album.width = dataGrid.width * 0.50;
                Price.width = dataGrid.width * 0.10;
                dataGrid.horizontalScrollPolicy = ScrollPolicy.OFF;
        ]]>
    </mx:Script>
    <mx:DataGrid id="dataGrid" width="80%" height="100%" creationComplete="creationCompleteHandler()">
          <mx:ArrayCollection>
             <mx:Object Artist="Pavement" Price="11.99"
                Album="Slanted and Enchanted" />
             <mx:Object Artist="Pavement"
                Album="Brighten the Corners" Price="11.99" />
          </mx:ArrayCollection>
          <mx:columns>
              <mx:DataGridColumn id="artist" dataField="Artist"/>
             <mx:DataGridColumn id="album" dataField="Album" visible="{isVisible}"/>
             <mx:DataGridColumn id="Price" dataField="Price" />
          </mx:columns>
       </mx:DataGrid>
    </mx:Application>
    Is there anything wrong i am doing here? Please help me in resolving this.
    Thanks,
    Srilatha

    Hi Srilatha,
    DataGrid width is 100% and the main application width also 100%, So the
    DataGrid will try to occupy the whole window, when you do "restore down" &
    "maximize" Application width will change.. and it will effect DataGrid and
    its columns also. Try to give some fixed width for dataGrid and you can
    expect the result.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    height="100%" width="100%">
        <mx:Script>
            <![CDATA[
                import mx.core.ScrollPolicy;
                private var isVisible:Boolean = true;
                private function creationCompleteHandler():void
                    dataGrid.horizontalScrollPolicy = ScrollPolicy.ON;
                    artist.width = dataGrid.width * 0.40;
                    album.width = dataGrid.width * 0.50;
                    Price.width = dataGrid.width * 0.10;
                    dataGrid.horizontalScrollPolicy = ScrollPolicy.OFF;
            ]]>
        </mx:Script>
        <mx:DataGrid id="dataGrid" width="500" height="100%"
    creationComplete="creationCompleteHandler()">
            <mx:ArrayCollection>
                <mx:Object Artist="Pavement" Price="11.99"
                           Album="Slanted and Enchanted" />
                <mx:Object Artist="Pavement"
                           Album="Brighten the Corners" Price="11.99" />
            </mx:ArrayCollection>
            <mx:columns>
                <mx:DataGridColumn id="artist" dataField="Artist"/>
                <mx:DataGridColumn id="album" dataField="Album"
    visible=""/>
                <mx:DataGridColumn id="Price" dataField="Price" />
            </mx:columns>
        </mx:DataGrid>
    </mx:Application>
    Thanks
    Pradeep Reddy

  • Spanning columns in a grid messes up column widths

    Hi. I've been struggling with some layout issues when using
    column width percentages with the Flex Grid control. It seems that
    if I add a column that spans 2 or more columns, the column widths
    of the entire grid are altered. The strange thing is that the
    column widths are changed only if the text in the colspan column
    exceeds the width of the text in cells above or below it. Please
    see the code sample at the bottom of this message for a
    demonstration (I can't seem to find a way to "attach code").
    Does anyone have any ideas how to fix this?
    Thanks!
    Dustin
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" layout="vertical">
    <mx:Script>
    <![CDATA[
    import mx.containers.*;
    import mx.controls.*;
    import mx.core.*;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    private var dynamicText:Text;
    private var charCode:uint;
    private var button:Button;
    private function init():void
    var panel:Panel = createPanel();
    addChild(panel);
    addText(panel);
    addGrid(panel);
    addButton(panel);
    startTimer();
    private function timerComplete(event:TimerEvent):void
    button.enabled = true;
    private function createPanel():Panel
    var panel:Panel = new Panel();
    panel.title = "ColSpan Spacing Problem";
    panel.width = 500;
    panel.height = 200;
    panel.horizontalScrollPolicy = ScrollPolicy.OFF;
    panel.layout = "vertical";
    return panel;
    private function addText(panel:Panel):void
    var text:Text = new Text();
    text.text = "First row contains 5 columns with no col spans.
    Second row contains 4 columns with " +
    "column 2 spanning columns 2 and 3. Notice how the column
    widths are affected when the text " +
    "in the colspan cell grows larger than the text in the cell
    above it.";
    text.percentWidth = 100;
    panel.addChild(text);
    private function addGrid(panel:Panel):void
    var grid:Grid = new Grid();
    grid.setStyle("horizontalGap", "0");
    grid.setStyle("verticalGap", "0");
    grid.percentWidth = 100;
    panel.addChild(grid);
    // FIRST ROW
    var gridRow:GridRow = new GridRow();
    gridRow.percentWidth = 100;
    grid.addChild(gridRow);
    var gridItem:GridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 1;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 48;
    var text:Text = new Text();
    text.text = "No ColSpan Columns";
    gridItem.addChild(text);
    gridItem.colSpan = 1;
    gridItem.clipContent = false;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 1;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 13;
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.percentWidth = 37;
    gridRow.addChild(gridItem);
    // SECOND ROW
    gridRow = new GridRow();
    gridRow.percentWidth = 100;
    grid.addChild(gridRow);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.colSpan = 2;
    dynamicText = new Text();
    dynamicText.text = "A"; //IF THIS TEXT GROWS WIDER THAN TEXT
    IN THE ROW ABOVE, SPACING IS THROWN OFF
    gridItem.addChild(dynamicText);
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridRow.addChild(gridItem);
    private function addButton(panel:Panel):void
    button = new Button();
    button.label = "Start Over";
    button.addEventListener(MouseEvent.CLICK, startOver);
    panel.addChild(button);
    private function startOver(event:MouseEvent):void
    startTimer();
    private function startTimer():void
    dynamicText.text = "A";
    charCode = 66;
    button.enabled = false;
    var myTimer:Timer = new Timer(250, 25);
    myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE,
    timerComplete);
    myTimer.start();
    private function timerHandler(event:TimerEvent):void
    dynamicText.text += String.fromCharCode(charCode);
    charCode++;
    ]]>
    </mx:Script>
    </mx:Application>

    This seems to fix it.
    gridItem = new GridItem();
    gridItem.setStyle("borderStyle", "solid");
    gridItem.colSpan = 2;
    dynamicText = new Text();
    dynamicText.percentWidth = 100;
    dynamicText.text = "A";
    gridItem.addChild(dynamicText);
    gridRow.addChild(gridItem);

  • Table Format order and visibility in Form Settings keeps changing

    Dear Experts,
    We are facing a concurrent problem where there is constant change in the table format of the form settings in marketing documents.
    The columns order keeps changing and also the visibility box which will be ticked, becomes again unticked the next day for particular columns which are used.
    Event though it is set one time in manager login and locked the doc settings for other end users. The format keeps changing.
    It has to be set dially manually. Is  there a permanent solution for it .
    Please let me know . Please find the attached pic for it.Its SAP B1 8.82 PL6

    Hi,
    Please check this thread:
    http://scn.sap.com/message/7377186#7377186
    Check SAP note for changing form settings:
    1062635 - Can I block a user from having access to Form
    Settings?
    Thanks & Regards,
    Nagarajan

  • How do you keep Finder from changing column widths?

    I don't know if this bugs anyone else, but I absolutely HATE it that Finder automatically adjusts the column widths.  It jerks content around and makes it where it drives you nuts. You think you can see two columns, until you click on an entry and suddenly it jerks the width out of proportion to where you can see either column.
    This isn't a matter of it adjusting to the widest file name length either, because it seems to "remember" that there used to be a long file name there. If you change the length, it STILL makes it very wide.
    I've long said that Finder is perhaps the absolutely WORST daily app that Apple has.  Nobody addresses it and nobody seems to want to make it better.  Are there any alternatives to this piece of crap?  Or is there some hidden way that you can tell Finder to QUIT adjusting column size?
    Thanks!

    I've come across the same problem in Mavericks (v 10.9). Oddly enought, I didn't notice that problem with Mountain Lion (10.8.5). I'm wondering if this is caused by a corrupted Library file. I've contacted Apple Tech Support and spoke with two (2) support agents, one with an advanced title for almost an hour. Unfortunately, the advanced Tech Support agent could only acknowledge the problem, had no solutions and suggested I contact Applev via Support feedback.
    If you've upgraded to Mavericks, have you noticed the same problem?
    Any insight or assistance would be appreciated.

  • Why column width will not change

    What keeps the width of a column from being updated or
    altered?
    I have a table that I want to adjust the width. I click the
    column to have it's properties visible and enter a new width in the
    properties panel, but the table remains with it's original width.
    Also, I get Width shown as a percentage and not a pixel
    measurement. Tried changing width attribute property from
    percentage to pixels. Did not work. I right clisked the column to
    "clear width" values. that did not work either.
    Also, drag and drop in design mode and moving the column
    width also has no effect. Is this a version bug?
    Thanks
    Jerry H

    Hi, see if this helps...
    Products Affected
    Mac OS X 10.5, Product Security, Safari 5.1 (Mac OS X 10.6), Safari 5.1 (OS X Lion)
    Safari 5.1.7 for OS X Lion, Safari 5.1.7 for OS X Snow Leopard, and Leopard Security Update 2012-003 disable out-of-date versions of Adobe Flash Player.
    Out-of-date versions of Adobe Flash Player do not include the latest security updates and will be disabled to help keep your Mac secure. If Safari 5.1.7 or Leopard Security Update 2012-003 detects an out-of-date version of Flash Player on your system, you will see a dialog informing you that Flash Player has been disabled. The dialog provides the option to go directly to Adobe's website, where you can download and install an updated version of Flash Player.
    Additional Information
    If you need to re-enable an out-of-date version of Flash Player, you can do the following:
        1.    Navigate to the /Library/Internet Plug-Ins (Disabled) folder.
        2.    Drag "Flash Player.plugin" into /Library/Internet Plug-Ins.
        3.    If the browser is running, quit and restart it.
    http://support.apple.com/kb/HT5271
    On the freeze, never been to FaceBook, but...
    Open Console in Applications>Utilities & see if there are any clues or repeating messages when this happens.

  • Change the column width on the fly

    Dear all,
    I have a problem, i have a matrix report, the row is "the project name" and the column is "the items" using within each project, and the problem is the items are variable from time to time the report run for each project, so its exceeds the paper width.
    And the question is, is there any way to change the width of the column on the fly, i mean dynamiclly change the column width each time the report is called to make all items fit the paper width.
    Thank u

    i don't think that we can change the layout of the column in reports
    The simple solution for that problem is that u have to
    fix the horizontal and vertical layout of the text item
    better is to post this problem at reports forum
    Najeeb

  • How do you change the column widths in a master-detail input form?

    I have changed several columns to af:inputText so that the field contents can be modified, but this defaults the column width to a huge size, way past the size of the actual data field itself. Modifying the width attribute is ignored and dragging the column dividers is also ignored.
    How do I reduce the widths of these columns?
    Thanks

    Hi,
    maybe this blog entry "Referencing Maximum Length of an Attribute in an EL Expression" by Steve Muench helps
    http://radio.weblogs.com/0118231/2007/06/04.html#a839
    Frank

  • The finder window for an external USB hard disk suddenly started separating files by time (today, yesterday, etc.) and stopped allowing me to change column width, order, etc. Also the header bar shifted to flat white from gray.

    The finder window for an external USB hard disk suddenly started separating files by time (today, yesterday, etc.) and stopped allowing me to change column width, order, etc. Also the header bar shifted to flat white from gray.
    All was normal until the icon for the disk stopped showing up on the desktop when I would plug it in. I rebooted the computer, and the disk icon now shows up but this new look to the finder window started as a result. The hard disk does not have this problem when I use it on another Mac running Snow leopard. Also, two other external hard disks that I use on this computer running lion 7.4 still have the normal header bars with columns that can be reordered, etc.
    I have tried looking in preferences and other places but have not seen this discussed. 

    Well duh - I finally figured out that somehow in the View options for the hard drive, the "arrange by" option had been changed to "by date" from "none". Not sure how that happened, I had never used the "view options" menu tem before. Changing "arrange by" back to "none" gets the gray column headers and the collapsible folder icons back. 

  • How to change the column width in Smartforms..?

    Hi All..
    I need to change the column width in a smartform.
    The requirement has been mentioned as follows...
    Adjust the column width of the following columns:
    MATERIAL: 14 char
    DESCRIPTION: 20 char
    How to perform this..??
    Where can i find the column width of various columns of a smartform..???
    Please Help me...
    Regards
    Pavan

    In the SMART Forms, you would have created a Table object and specified the line width and divided that into no. of columns that you want, you have to mandatorily specify the width of each column so that total of column width will be equal to that of the line width.
    When you double click on the Table object, you can TABLE tab on the right side. If you can't see the line / columns details, click on the DETAILS button.
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • Can't change column width

    Hi
    I'm working on an existing site (and learning as I go). I was
    just trying to get some boxes to line up in the navigation bar and
    pulled it too wide to see if my adjustements were appearing in the
    browser. Now I can't change it back to the proper size. I've tried
    changing it in the HTML, the properties, the CSS, by manually
    pulling on the box handle (it lets me go wider, but not narrower)
    and it always reverts back to the wide size.
    You can see from the screen shot that the proper width is
    showing, but the actual column width is in parenthesis. This is the
    width that I can't seem to get rid of. OK, never mind about the
    screen shot - I can't post one here, crap.
    This is what the column width looks like 147 (196). I cannot
    get rid of the 196 and when I pull the image narrower, all my code
    bounces back to 196 even though I've changed it to 147.
    I've attached the code, but I don't see what anyone can do -
    code says 147 - column width remains 196. Please help me change it!
    Also, I just saw the posting that appeared right before me on
    the same topic. My site is not live yet so I'm sorry that you can't
    look directly at the source - the old site is www.breadandlife.org
    if that helps - at least it's showing the correct navbar width.
    And padding is not the problem, already looked at that.
    Just looked at the existing site in Dreamweaver and the
    navbar is also stretching out to 196! Did I do something to change
    defaults in the navbar that is applying to all files I open? I'm
    going to close it and make sure I don't save it...
    I hope this will be a quick and easy answer for someone...

    can you try edit view--> view properties --> Text and Align tab--> select field you want to change --> check width and give number of pixels.
    HTH,
    Suma

Maybe you are looking for

  • How do I delete my old support community discussions?

    Kind of a silly/dumb question, but how do I delete some of the old Apple Support Community questions/discussions I no longer want in my support community profile? Thanks!

  • One answer to ipod not being recognised in itunes

    My 20gb ipod recently stopped being recognised in itunes but was still recognised in "My Computer". Having tried alot of the suggested solutions (more than once)nothing seemed to correct this. I resigned myself to being one of the many having a "half

  • Can't un-install softw

    SoundBlaster Audigy2 Platinum EX. Dell Dimension 3000, 3.0hz, GB Ram. I was having various problems... Soundfont Bank Manager and other Creative programs wouldn't load; my computer wouldn't power down., etc. So I un-installed all Creative software an

  • Errors transferring tracks to Zen X

    Zen Xtra 60Gb Firmware .03.02 Mediasource 2.0.07 Windows XP sp2 IBM T30 Laptop using DeLock CardBus USB 2.0 PCMCIA Adapter Hi, Brand new replacement ZenX and I have been able to transfer 87 out of 9800 tracks to it using the Audiosynch Wizard. every

  • CC Bridge JPEG Preview Problems

    Hello - I'm trying to organize a massive number of image files. For some reason certain files that are labeled as ".jpg" or ".jpeg" will preview while others won't. I can rename them with the other jpeg extension and the previews re-appear, but then