Finder columns width are very wide within an app

I have searched for an answer but can't find it. Since using Mavericks when I open a finder window within an app to open a document, the finder window is way too large. The columns are very wide and fall on to my second display. If I adjust this (and I have tried with the ALT button as well) the next time the problem keeps coming back.
Any solutions?
Thanks

I have this issue too - though I've been able to work around it a little by entering the file name in the search box.

Similar Messages

  • Find columns which are null

    Hello all, I am currently developing a data warehouse that holds time-series values. In the 5-min interval fact table, there is a column for every 5-minute segment of a 12 hour period. So I have a few foreign keys which make up a composite primary key in the fact table, followed by generally-named columns m0,m5,m10...m1145,m1150,m1155 (m0 represents 00:00 [12:00] and m1155 represents 11:55). There is a flag in the row to denote AM or PM. This database collects various metrics from a Coherence environment for a live monitoring solution that also has a Historian to track trends, get a graphical historical overlay against the current values coming into the live environment, etc.
    So I have this table with aggregation at a 5 minute level and will need to roll this up to hourly and daily aggregation levels during an ETL process. I'd like to be able to pinpoint which data, if any, has holes in it IE the collectors hiccupped somewhere for whatever reason and did not report a 5 minute segment to me.
    Is there anyway to find rows which have null values and to report back which column names contain null values? A use case would be that I have a row in the 5 min fact table that contains a null value for column m455, which means that there is a gap in my time series at the 4:55 hour for that object. During ETL roll ups, I'd like to be able to record which time slot has "holes", or null values in them so that we can pinpoint why they occur to prevent them from occurring again during the development process of this solution.
    Thanks for anyone's help!!
    Regards,
    TimS

    TimS wrote:
    create table f_metric_5_min (
         metric_key number(10) not null,
         object_key number(19) not null,
         date_key number(5) not null,
         segment_id number(1) not null,
         m0 number(19,4),
         m5 number(19,4),
         m10 number(19,4),
         m15 number(19,4),
         m20 number(19,4),
         m25 number(19,4),
         m30 number(19,4),
         m35 number(19,4),
         m40 number(19,4),
         m45 number(19,4),
         m50 number(19,4),
         m55 number(19,4),
         m100 number(19,4),
         m105 number(19,4),
         m110 number(19,4),
         m115 number(19,4),
         m120 number(19,4),
         m125 number(19,4),
         m130 number(19,4),
         m135 number(19,4),
         m140 number(19,4),
         m145 number(19,4),
         m150 number(19,4),
         m155 number(19,4),
         m200 number(19,4),
         m205 number(19,4),
         m210 number(19,4),
         m215 number(19,4),
         m220 number(19,4),
         m225 number(19,4),
         m230 number(19,4),
         m235 number(19,4),
         m240 number(19,4),
         m245 number(19,4),
         m250 number(19,4),
         m255 number(19,4),
         m300 number(19,4),
         m305 number(19,4),
         m310 number(19,4),
         m315 number(19,4),
         m320 number(19,4),
         m325 number(19,4),
         m330 number(19,4),
         m335 number(19,4),
         m340 number(19,4),
         m345 number(19,4),
         m350 number(19,4),
         m355 number(19,4),
         m400 number(19,4),
         m405 number(19,4),
         m410 number(19,4),
         m415 number(19,4),
         m420 number(19,4),
         m425 number(19,4),
         m430 number(19,4),
         m435 number(19,4),
         m440 number(19,4),
         m445 number(19,4),
         m450 number(19,4),
         m455 number(19,4),
         m500 number(19,4),
         m505 number(19,4),
         m510 number(19,4),
         m515 number(19,4),
         m520 number(19,4),
         m525 number(19,4),
         m530 number(19,4),
         m535 number(19,4),
         m540 number(19,4),
         m545 number(19,4),
         m550 number(19,4),
         m555 number(19,4),
         m600 number(19,4),
         m605 number(19,4),
         m610 number(19,4),
         m615 number(19,4),
         m620 number(19,4),
         m625 number(19,4),
         m630 number(19,4),
         m635 number(19,4),
         m640 number(19,4),
         m645 number(19,4),
         m650 number(19,4),
         m655 number(19,4),
         m700 number(19,4),
         m705 number(19,4),
         m710 number(19,4),
         m715 number(19,4),
         m720 number(19,4),
         m725 number(19,4),
         m730 number(19,4),
         m735 number(19,4),
         m740 number(19,4),
         m745 number(19,4),
         m750 number(19,4),
         m755 number(19,4),
         m800 number(19,4),
         m805 number(19,4),
         m810 number(19,4),
         m815 number(19,4),
         m820 number(19,4),
         m825 number(19,4),
         m830 number(19,4),
         m835 number(19,4),
         m840 number(19,4),
         m845 number(19,4),
         m850 number(19,4),
         m855 number(19,4),
         m900 number(19,4),
         m905 number(19,4),
         m910 number(19,4),
         m915 number(19,4),
         m920 number(19,4),
         m925 number(19,4),
         m930 number(19,4),
         m935 number(19,4),
         m940 number(19,4),
         m945 number(19,4),
         m950 number(19,4),
         m955 number(19,4),
         m1000 number(19,4),
         m1005 number(19,4),
         m1010 number(19,4),
         m1015 number(19,4),
         m1020 number(19,4),
         m1025 number(19,4),
         m1030 number(19,4),
         m1035 number(19,4),
         m1040 number(19,4),
         m1045 number(19,4),
         m1050 number(19,4),
         m1055 number(19,4),
         m1100 number(19,4),
         m1105 number(19,4),
         m1110 number(19,4),
         m1115 number(19,4),
         m1120 number(19,4),
         m1125 number(19,4),
         m1130 number(19,4),
         m1135 number(19,4),
         m1140 number(19,4),
         m1145 number(19,4),
         m1150 number(19,4),
         m1155 number(19,4),
         constraint f_metric_5_min_pk primary key (metric_key, object_key, date_key, segment_id),
         constraint f_metric_5min_fk_metric_key foreign key (metric_key) references d_metric (metric_key),
         constraint f_metric_5min_fk_object_key foreign key (object_key) references d_object (object_key),
         constraint f_metric_5min_fk_date_key foreign key (date_key) references d_date (date_key)
    ) partition by range(date_key) (
         PARTITION def values less than (2558)
    ) tablespace FACT;The reason to define separate columns for time intervals is because need to see data coming from Coherence enviroment in 5 minute intervals, creating a row for each 5 min interval for each object (thousands) is too time-consuming. Using MERGE is much faster to update columns in the same row. And secondly, because my job tells me to go with this logical model :).
    I can understand the "job-tells-me" reason but not sure am convinced with the "time-consuming" issue,
    especially as it is a datawarehouse. But I assume you must have verified the same.:)
    The NULL-finding exercise will be done after the data is loaded into the 5 minute metric table and before the hourly roll-up ETL.
    Not sure what you mean in what format, I plan to build a list and place them into a form of auditing table within the database that will be queried in the future to determine where the gaps are and for what objects so that we can trace them back to a certain JVM and coherence collector and fix the issue from occuring again; hence the point of a monitoring tool.
    Storing time in a table can take up a lot of space and is harder to compute procedurally. In this model the database does not care about the time, only the data; the date and time is not a focal point for this database, the database is abstract, with the Java behind it controlling the purpose of its data. The reporting engine after-the-fact cares about dates and such which can be easily determined by referencing to dimension tables to determine which column represents which time in the 12 hour sequence.
    Going back to the "null-finder" do you think there is any way to do this? Thanks for your help!
    Regards,
    TimSDo you mean that you want to get only those columns where there is a NULL value, for a record-at-a-time ?
    In that case, the only option that I can think of is building a Dynamic SQL, based on checking whether each column has a NULL value or not. Although, I hope somebody can come up with a better way to achieve the same.
    (Else, your not considering "time-consuming" approach above becomes not much of advantage, isn't it ?) :)
    (Of course, only if "null-finding" is a MUST exercise...)

  • Change Default Finder Column Width

    Is it possible to change the default widths of the columns in Finder windows? I know that I can temporarily change it, and as long as I don't restart, all subsequent windows will open at this width. But is there a way to make the change the new system default?

    This may be it...
    http://www.macosxhints.com/article.php?story=20030329162110811
    I didn't have theNlisv, and can't reboot to test right now.
    If you do not have a Nlsv item, quit Property List Editor, go to the Finder and open a directory window, change View to "as List," select "Select View Options," click on "All windows," change one of the items shown, and close the View Options window. This will write to the Finder's com.apple.finder.plist file within a few seconds.

  • Column width collapsing on content within it

    Hi I have a 3 column page, and I don't know why the right column called "rightcolumn" collapses on the size of its contents which is table called "news", no matter the size i make the rightcolumn width it always previews to news width.
      it appears correct in dreamweaever but when i preview it in any browser its not correct.
    posted page at: http://www.connectedelements.com/gmcfl/index3.html
    made rightcolumn background organge color and news table has a green border to help distinguish.
    any comments appreciated.
    thanks mike

    I'm not an expert on tables,but this looks wrong
    <td id="rightcolumn"><table border="0" cellpadding="0" cellspacing="0" id="news">
    Gary

  • Can I lock in a finder list mode column width?

    Can I lock in a finder column width in list mode?
    When I open a finder window in List Mode, the Date Modified column is always 6-8 inches to the right of the Name column.
    This is very irritating because I often have to drag the window larger just to find the next column and then drag them closer to the Name column.
    Even if all file names are short, the nearest colums are far away.
    This is very un Apple.
    Thanks.
    Jeff

    Thanks CtDave.  I don't have anything besides the free reader, so I did some further research on the web and found a solution that is pretty "brute force", but is an option for others that only have the free reader.  Here is a link to the full description:
    http://superuser.com/questions/306803/zooming-size-of-pdf-files-and-bookmarks
    Here is the basics:  You can use a text editor and edit the PDF file.  Once in the text editor you can search for /FitH or /Fit (there surely are other codes, but those are the only ones I know of).  These are codes that tell Acrobat what kind of zoom level to apply to the destination of a jump.  So the bookmarks should all have these.  Simply do a search and replace with /XYZ.  The /XYZ code tells Acrobat to leave the zoom level as it already is.
    It might sound a bit weird, but I tried it on multiple files I was having trouble with and it worked great.  Of course, my suggestion would be to make backup copy of the file before doing this in case something goes wrong.
    Thanks.

  • Interactive report column width

    Hi,
    I have some numeric fields in an IR, where columns widths are much more wider than data (there are a lot of empty space). Is it possible to decrease column width?
    András

    Please tell me where is the css style sheet? I have no idea where to find it.

  • 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);

  • How to control column width in manual posting ?

    Hi gurus,
    I have some manual posting tasks with associated document types. In some of them when you get into the screen to record the manual data, the columns titles  are so wide that the rigthmost columns get out of the screen and one needs to scroll horizontally.
    Is there some way in wich I can fix columns width? I think if I narrow manually the columns and then fix this layout?
    Thank you.

    Hi,
    I beleive you work in the language other than English. I encounter this very annoying system's behaviour while working in Russian.
    I know that some notes are dedicated to solving of this or that problem in particular language.
    The easiest way to make some "stubborn" settings is to do it in English and the return to your locale.
    Edited by: Eugene Khusainov on Jun 26, 2008 10:36 PM

  • Spool file, column width question

    I'm a new user, and just converted to Oracle 9 from Informix.
    I am trying to create a (comma delimited) spool file, but the
    column width for some of the numbers that I'm pulling in my
    queries are very wide. For example, if my query is pulling
    first, last, account#, and cust#, the spool output is as such:
    JOHN , SMITH ,
    10203 , 4987
    I realize I can use 'COL name FOR an' to adjust the width of the
    text columns, but how can I make the width of the number columns
    only 5 or 6 digits wide?
    Help!

    Peter,
    If you just want a comma separated value file without formatted columns and you want to eliminate all spaces, then just trim all your values and concatenate them together. See the example below.
    Barbara
    SQL> -- test table:
    SQL> CREATE TABLE mrs_record_load_errors
      2    (DF_ID                 NUMBER   (10)   NOT NULL,
      3     RECORD_NUMBER         NUMBER   (10)   NOT NULL,
      4     DF_ID_REJECT          NUMBER   (10),
      5     METER_POINT_REFERENCE NUMBER   (10),
      6     ERROR_CODE            VARCHAR2 (8),
      7     ERROR_TEXT            VARCHAR2 (200),
      8     RECORD_IMAGE          VARCHAR2 (2000),
      9     PROBLEM               CHAR     (1),
    10     DF_ID_OUT             NUMBER   (10),
    11     FIELD_NUMBER          NUMBER   (10),
    12     RECORD_STATUS         VARCHAR2 (1),
    13     CLIENT_REFERENCE      VARCHAR2 (30),
    14     TRANS_TYPE            VARCHAR2 (3))
    15  /
    Table created.
    SQL> -- test data:
    SQL> INSERT INTO mrs_record_load_errors
      2  VALUES
      3    (245399, 2, 3, 4, 'A', 'B', 'C', 'D', 5, 6, 'E', 'F', 'G')
      4  /
    1 row created.
    SQL> -- test:
    SQL> SET HEADING OFF
    SQL> SELECT '"'
      2         || TO_CHAR (df_id)
      3         || ','
      4         || record_number
      5         || ','
      6         || df_id_reject
      7         || ','
      8         || meter_point_reference
      9         || ','
    10         || LTRIM (RTRIM (error_code))
    11         || ','
    12         || LTRIM (RTRIM (error_text))
    13         || ','
    14         || LTRIM (RTRIM (record_image))
    15         || ','
    16         || problem
    17         || ','
    18         || df_id_out
    19         || ','
    20         || field_number
    21         || ','
    22         || record_status
    23         || ','
    24         || LTRIM (RTRIM (client_reference))
    25         || ','
    26         || LTRIM (RTRIM (trans_type))
    27         || '"'
    28  FROM   mrs_record_load_errors
    29  /
    "245399,2,3,4,A,B,C,D,5,6,E,F,G"

  • 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

  • Changing File-Open Default Column Widths

    In Word and other applications I find I want the column widths to be wider (and stay wider) than the default.
    Someone on Mactopia said he was able to do the following:
    1) Open Word
    2) Use File>Open
    3) Adjust the window to your taste
    4) Select and Open a document
    5) Quite Word immediately on command Q
    Word is displaying a Finder window for that dialog. You need to hit an
    action button to make Word store the settings (in other words, you need to
    actually open a file).
    You then need to Quit Word to force it to SAVE the new settings.
    However, I found this did not work. He replied:
    Hmmm... Munged preferences is the problem: but which ones, I wonder? The
    change you make is not being saved. It is on my system. I just opened and
    quit Word three times to make sure the change held.
    OK, quite word and try re-naming your Normal template, and any file with
    "word" in its name in your ~/Library/Preferences/Microsoft folder.
    When you re-launch Word, the files will be rebuilt. If this fixes the
    problem, great, If it doesn't, the size is being held in a Finder
    preference (the Word File>Open dialog is actually an Apple Finder window)
    but I have no idea which one.
    Any ideas about this?
    Thanks.
    iMac 20 Mac OS X (10.4.1)

    Thanks for the quick answer Jay! I tried the latter approach and it didn't work.
    Given my limited understanding of CSS I first researched what the # signifies and found that it precedes a value from an ID attribute of an element. Which makes sense because this override would need to know specifically what to adjust.
    Next I scanned the source and couldn't find an ID of portletColumnFormatter_0 the closest thing I found was a summary field (summary="Portlet column formatter table.").
    Edit: Hmmm...
    A quick scan of portal.bea.com shows that ID does in fact exist there but it appears that site is on version 6.5.0
    Was this ID value missing in an earlier install version perhaps?
    Edit: Aha!
    Yet a few moments later I realized my err...our dev environment is still on 6.1.0 which, if memory serves, was missing this key attribute!
    It appears my first priority should be to syncrhonize our two environments and THEN worry about customizations.
    Thanks again for the help, I'll refer back to this as soon as I'm upgraded:)
    Edited by geoffgarcia at 04/30/2008 10:04 AM

  • How to set displayed column width for a search help

    I have created an elementary search help for a custom field with a value table behind it.
    The search help functions correctly, but when displayed the column widths are all 10 characters. The user has to adjust the column to view the descriptive text.
    Can anyone tell me how to set default column widths for the help?

    Please  open you Elementary search  help  and see the Column  width   behind the Fields of your ...there  increase the width of the fields
    "Activate it  and refresh
    reward  points if it is usefull .....
    Girish

  • Spark DataGrid with Dynamic Column Width

    Lets suppose I have a Spark Datagrid with no explicit typicalItem. When the Datagrid is initialized, the column widths are calcualted correctly based on the contents of the dataprovider. However if I add/remove an item from the dataprovider, or modify the one of the objects in the dataprovider, the column widths never update to reflect the change. Is the the correct behavior for a DataGrid? If so, is there any method I can call to force the DataGrid to recalculate and redraw the column widths?

    When Spark DataGrid doesn't have a typicalItem, it uses the first dataProvider item as the typicalItem.  If you change that, the DataGrid won't pick it up immediately. You can invalidate the current typicalItem using dataGrid.invalidateTypicalItem().

  • ReportViewer 11.0 component in remote mode - drilldown leads to significant increase of drilldown column width

    Description
    Hello guys,
    I have a problem with drilldown function in my reports with ReportViewer 11 component from version 10.0 to 11.0 in my simple ASP.NET 4.0 application, using ReportViewer in remote rendering mode.
    The report design is based on multiple row groups, which should be opened one level after another (like hierarchy tree). It's a simple table without group headers, calculating summary of related orders value.
    If I open some row group (drill down) via clicking onto a "+" sign in any data row other than first from the top, the column width becomes too big(like twice the original row width) causing the whole row width to increase significantly. If I do the same drilldown in the first data row in the tablix, the row(and all columns) preserves it's original width (is OK).
    The report works fine when launched directly from the SSRS Report Server interface but the column widths are HUGE when run with Report Viewer 11.
    I'm using latest reportviewer DLL files (all are version 11.0.3452.0)
    Microsoft.ReportViewer.WebForms.dll
    Microsoft.ReportViewer.ProcessingObjectModel.dll
    Microsoft.ReportViewer.DataVisualization.dll
    Microsoft.ReportViewer.Common.dll
    Could you please fix the problem or suggest to me what can I do to overcome this problem?
    These reports are for a large corporate client and need to be delivered quickly and look good.Thank you in advance,Joe
    Joe Colorado

    Hi Joe,
    As you have mentioned that the drilldown report works fine in the report server but have the size issue in the reportviewer 11.0.
    Please test to see if the other drilldown report  will have the issue about the column width increase too much, please also test on the reportviewer10.0 (VS2010) to see if you will got the same issue.
    If the reportviewer 10.0 is ok, please try to use it as an workaround and it seems like a bug and you can ask Product group here directly.
    http://connect.microsoft.com/
    Or you can log a service ticket to microsoft to work on it. If finally the ticket is indeed a bug, the ticket will not be charged.
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

Maybe you are looking for

  • Customer Balances Report problem?

    Hi, I am facing some problem it may have been discussed before but it is urgent so I am posting it. 1) User wants to see the S_ALR_87012172 - Customer Balances in Local Currency on daily basis or any report which is similar to that. As far as I know

  • Maintain substitution but once save, it not show in the screen

    Dear experts, Normally when we create Substitute, we should see that person under our name, right? But some users* said that they CANNOT SEE their substitution name under their name...therefore they CANNOT DELETE / DEACTIVATE the substitute. (*only s

  • Need help shrinking iPhone video file sizes.

    Thanks in advance, folks! I just recently bought an iPhone 4 and I love it. The only is, despite the phone recording in HD, the file sizes are huge. Even using the SD vga camera in the front, 2 and a half minutes equals 45MB. Is there anything I can

  • My ipod nano plays a few seconds of a song, then pauses, why is this happening?

    my ipod nano will play the beginning of a song then pause, why?

  • File Vault: Moving iTunes library to external HD

    I am using File Vault (ouch!) but I would like - for space reasons - to move my iTunes library to two external HDs (preferably copy first, then test, then delete original from internal HD). Firstly, I tried while logged in as Administrator (with File