Reorder Columns dialog width

In Windows 7 / Internet Explorer 8, the Reorder Columns dialog (accessible in a PanelCollection from View > Reorder Columns...) is stretching the full length of the screen. View > Columns > Show More Columns... appears to be having the same issue.
In Windows XP or Windows 7 / Firefox 10, the popup is only about 250px in width.
Using JDeveloper 11.1.2.3.0.
This should be built-in functionality. Any idea why this might be happening?
Edited by: Brianna on Nov 14, 2012 11:24 AM

Hi,
I tried JDeveloper 11.1.2.3, Windows 7 and IE8. I don't see the defect
Frank

Similar Messages

  • How to reorder columns in JTable between sessions without serialization?

    I have a situation where the column widths and names of a JTable are saved to DB(there is no serialization). Upon starting a new session, the JTable needs to be displayed with reordered column.
    For example, let us say the default JTable has columns as A, B, C, D ...
    The user rearranges the columns to B, A, D, C....
    How do I tell JTable model to not use the default but the new values? Is serialization the only way?
    Here is some sample code I use to set the widths. But what I really want to do is reorder columns by reading their names.
    Thanks for your help
    for(int i=0;i<count;i++) {
                        int width=(int)(ttsDefaults.getColumnWidth(i)*
                             DesktopEnvironment.getInstance().getDesktopRootFrame().getWidth());
                        sumWidth+=width;
                        treeTable.getColumnModel().getColumn(i).setPreferredWidth(width);
                        //treeTable.getColumnModel().getColumn(i).setWidth(width);
                   }

    Hi Jules,
    You need a user with XDBADMIN rights to access the WebDav. Once you have access, you can open the URL as webfolder (in IE).
    Regards,
    Christian

  • Configure Columns dialog box

    hello,
    in dashboard design 2011, you can open this box from the general view on the list view component, by clicking the configure columns button. i'm not sure that i understand the purpose of this dialog box. it looks like you can rearrnge the columns by clicking on the arrows in the second column, but they are not enabled. i looked in the pdf documentation, but i did not see anything for this dialog box. any help would be greatly appreciated.
    thank you
    tracy
    9

    hi roy,
    i didn't necessarily want to change the column width. when i wrote that, i was thinking out loud" as they say.
    i'm just trying to figure out the purpose of the Configure Columns dialog box, which wasn't in the version of xcelsius 2008 that i used maybe a year ago.
    i didn't see any documentation indicating that this is a new feature to dashboard design 2011.
    when you open this dialog box, what functionality is available to you?
    when i tried to use the dialog box, i didn't see any feature that worked.
    thank you
    tracy
    Roy Zhang wrote:
    IMHO, single column width cannot be changed by dragging the column edge, such operation for column is not supported, but it support to change the whole width of listView. The width of each column can be specified in Configure Columns Dialog.

  • Af:popup dialog width and height

    hi all,
    i want to know how to define popup dialog width and height.
    here is my code.
    <af:popup id="popup1" contentDelivery="lazyUncached"
    launcherVar="source" eventContext="launcher" >
    <af:dialog title="General Details - Standard Statement" type="none" id="AddInstDialog"
    inlineStyle="width:600px;height:400px">
    I do something like in above code.
    but it is not working.
    With Regards,
    WP

    add panelWindow
                          <af:popup id="popup5" contentDelivery="lazyUncached">
                            <af:panelWindow id="panelWindow5" title="Stop" modal="true" inlineStyle="width:369px;height:350px;">

  • How to fix the column header width in BEx or WAD

    hi there!
    how to fix the column header width in BEx or WAD. because, depends on the column data, the column size varies. i want to fix the size so that i can maintain the consistency through out the report.
    thanks!
    Vam.

    Dear Vam,
    you can easily do that with css, search the source code of the executed web template for the td tag which is around your coloumn header, remember the style sheet class name it is ´displayed as class= in the td tag.
    Now you can add this code the beginning of your web template:
    </style>
    This will only work in Web.
    Regards
    Marcus

  • Reorder columns in JTable

    Hi.
    I want to reorder the columns in a JTable. I want the user to be free to resize and reorder the columns just as he wants, save it, and reuse these settings the next time. I have no problems getting the current configuration. But I cannot handle resetting these. What I tried is
    mytable.getColumnModel().getColumn(i).setModelIndex(newIndex);
    mytable.getColumnModel().getColumn(i).setWidth(newWidth);The data is reordered correctly. But the header is still the old one. And the width is also the old. What do I do wrong here?
    (I also thought about TableColumnModel.moveColumn(int,int), but I don't want to remember all movements, just the result...)
    Thx.
    Kay Dohmann

    ADF Swing's table binding doesn't support dynamically adjusting the column model automatically based on the hidden control hint.
    The ADF Swing design time does hide the hidden attributes to they don't show up in the generated panel/form.
    I'd recommend looking at the techniques illustrated in the ADF JClient Component Demo on this page full of demo code:
    http://www.oracle.com/technology/sample_code/products/jdev/index.html
    The readme file for that demo is here:
    http://www.oracle.com/technology/sample_code/products/jdev/1012/jclient_guide/adf_jclientcomponentdemo_readme.html
    The table demo has a checkbox that illustrates hiding a column as well as another that illustrates changing a column heading dynamically.

  • Setting XMLUI dialog width

    I've created a JSFL command extension and was thinking of
    using an XMLUI dialog to give the user basic instructions about the
    command he is about to execute.
    The XMLUI dialog would have instruction text and the two
    buttons "accept" and "cancel".
    Surprisingly, the XMLUI dialog does not expand to show the
    whole width of the <label> but stays at the width needed to
    display the two buttons only! So the text just gets chopped off!
    Does anybody know how to set the width of an XMLUI dialog?
    I was thinking of using a control to force it to resize but
    all of the controls are too intrusive...
    Any tips on how to expand the XMLUI dialog so that it will
    show all the text?
    dan

    Hi,
    You need to change Table setting Layout. Please check this code:
    * create an instance of ALV component
    DATA: LR_IF_CONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE,
    LR_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE,
    LR_CMDL TYPE REF TO CL_SALV_WD_CONFIG_TABLE,
    LR_TABLE_SETTING TYPE REF TO IF_SALV_WD_TABLE_SETTINGS.
    LR_CMP_USAGE = WD_THIS->WD_CPUSE_ALV( ).
    IF LR_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
      LR_CMP_USAGE->CREATE_COMPONENT( ).
    ENDIF.
    ** get reference to the ALV model
    LR_IF_CONTROLLER = WD_THIS->WD_CPIFC_ALV( ).
    LR_CMDL = LR_IF_CONTROLLER->GET_MODEL( ).
    LR_TABLE_SETTING ?= LR_CMDL.
    ** Set column width
    DATA LR_COL TYPE REF TO CL_SALV_WD_COLUMN.
    LR_COL = LR_CMDL->IF_SALV_WD_COLUMN_SETTINGS~GET_COLUMN( 'PERNR' ).
    LR_COL->SET_WIDTH( '70' ) .
    LR_COL = LR_CMDL->IF_SALV_WD_COLUMN_SETTINGS~GET_COLUMN( 'ENAME' ).
    LR_COL->SET_WIDTH( '100' ) .
    LR_TABLE_SETTING->SET_FIXED_TABLE_LAYOUT( ABAP_TRUE ).
    LR_TABLE_SETTING->SET_FIXED_TABLE_LAYOUT( ABAP_TRUE ).
    Regards,

  • HELP!   SQL Query:  Other ways to reorder column display?

    I have a SQL query report with a large number of columns (users can hide/show columns as desired). It would be great if the column display order could be changed by changing the order of the columns in the SELECT list in the Report Definition, but that doesn't work -- it puts changed or added columns at the end regardless of the order in the SELECT list of the query.
    Is there some other way to reorder the columns displayed without using the Report Attributes page? It's extremely tedious to move columns around using the up/down arrows which redisplays the page each time. Am I missing a way to change display order, or does anyone have a "trick" to do this? It's so painful....
    When defining forms you can reoder columns by specifying a sequence number for each column. Just curious as to why reports were not done the same way, and are there any plans to address this in a future release?
    Karen

    Yes, reordering columns is extremely painful.
    It is supposed to be much improved in the next version.
    See
    Re: Re-ordering columns on reports
    Moving columns up/down in Report  Attributes
    See my example at
    http://htmldb.oracle.com/pls/otn/f?p=24317:141
    Basically, let the users move columns around until they are blue in the face, provide a Save button to save the column order in a user preference and reorder the columns when the page reloads.
    Or you can use Carl's PL/SQL shuttle as the widget to specify the columns shown and their order. The shuttle is at http://htmldb.oracle.com/pls/otn/f?p=11933:27
    Hope this helps.
    Message was edited by:
    Vikas

  • Changing the column position & width using Screen Variant..

    Hi Experts,
        Iam trying to change the column position and width for the standard transaction (eg. FB60 or VA02) using the transaction code SHD0 (Transaction and Screen Variant).
        Iam able to create and save the transaction and screen variant and i could see the check box options for table control like
        a. Auto Column Position
        b. Auto Column Width
         I tried checking and unchecking both the check boxes but iam unable to modify / maintain the column position and width.
         Please guide me in changing the column position and width.
       Thanks in Advance.

    Hi Mudit,
    Kindly go through this link below:
    http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/content.htm
    Hope it helps you
    Regrds
    Mansi

  • Reorder columns in Flat File Destination

    Hi Friend's
    Although, I did some google in order to find the solution for reording the columns before exporting to a text file using FLAT FILE DESTINATION, one of the work around which i found is editing the final package xml file and moving the DTS:FlatFileColumn
    fields as required.
    Is there any other solution in order to avoid this approach as I have some 40 fields to be displayed in text file and manually reordring these fields in xml would be cumbersome.
    I need to create  text file using FLAT FILE DESTINATION.

    SSIS Data flow doesn't support dynamic metadata, and any changes in metadata like re-arrange mappings should be done manually. if you want to have columns in a re-arrange design which could be re-mapped dynamically and simply it is better to looks for
    another way than data flow task, dynamic t-sql queries can be good alternative.
    http://www.rad.pasfu.com
    My Submitted sessions at sqlbits.com

  • Flex DataGrid last empty column dynamic width

    Goal: have a blank right-most column in a DataGrid that takes
    up the slack in case the other columns do not total 100% of the
    overall grid width.
    This is what I have, which seems to work:
    <mx:DataGridColumn editable="false" sortable="false"
    minWidth="0"/>
    I am wondering if there is a best-practice way of specifying
    such a last column that is better than the above tag.
    Flex SDK 3.2
    Thank you,
    Mike Chabot

    It worked!!!!!!! Thank you!! What you mentioned was indeed the problem!
    Here is the custom item renderer's set data function
    Before
    Now
    override public function set data(value : Object):void{
                      super.data = text;
                      this.txt.text = (value as Slide).text ; //txt is the Label control
    override public function set data(value : Object):void{
                      super.data = value;
                      this.txt.text = (value as Slide).text ; //txt is the Label control
    oh man, this is such a stupid mistake. I think I was confused with having three text properties - one inherited from MXDataGridItemRenderer, one in my txt Label control and one on my slide.
    I had no idea that sending the value up to the super class was so important. None of the docs I read seemed to give much importance to this statement.
    thanks so much and sorry for taking up so much of your time. I guess it is uncessary to post any more code.

  • Finder - column view width

    Since Lion, whenever I open a new finder window - the width of all the columns in the column view is too wide
    Due to this, it becomes very irritating to resize all columns every time I open finder window.
    Cant I make it default option to always resize all columns individually "
    I face this issue only on my Mac, other Mac's with Lion are fine.

    Deleted the file "com.apple.finder.plist" from you ~/Library/Preferences & relaunched finder.
    Its fine now

  • Column Header width

    Hi,
    I'm working on a tableview but if my table is displayed without any rows... all the column headings are partially displayed, e.g. the column header text is "Employee" but it is displayed as "Em...", The column with automatically expands when there is value in the particular column. I tried to used columnWidth attribute but its not working. here is the code extract of the tableview.
          <htmlb:tableView id              = "list"
                           emptyTableText  = "No result found!"
                           selectionMode   = "MULTISELECT"
                           sort            = "SERVER"             <%--or APPLICATION --%>
                           onHeaderClick   = "myHeaderClick"
                           onNavigate      = "onMyNavigate"
                           onRowSelection  = "onMyRowSelection"
                           <u>columnWidth     = "100%"</u>
                           visibleRowCount = "<%= lepp %>"
                           visibleFirstRow = "<%= iv_list_nav_index %>"
                           width           = "100%"                      
                           table           = "//model/mt_list"                      
                           headerVisible   = "<%= IV_HEADER_VISIBLE %>"
                           iterator        = "<%= io_iterator %>" />

    Hi Asim,
    you have something wrong with the variables you are passing. Try the following ideas.
    1. Replace all the variables with hardcoded values, for example
         visibleRowCount = "20"
         visibleFirstRow = "1"
    2. Remove the iterator attribute to see if your iterator has been incorrectly coded.
    This code should work fine.
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <%
      data itab type table of sflight.
      select * from sflight into table itab.
    %>
    <htmlb:content design="design2003" >
      <htmlb:page title="Test tableView" >
        <htmlb:form>
          <htmlb:tableView id              = "list"
                           emptyTableText  = "No result found!"
                           selectionMode   = "MULTISELECT"
                           sort            = "SERVER"
                           onHeaderClick   = "myHeaderClick"
                           onNavigate      = "onMyNavigate"
                           onRowSelection  = "onMyRowSelection"
                           columnWidth     = "100%"
                           visibleRowCount = "20"
                           visibleFirstRow = "1"
                           width           = "100%"
                           table           = "<%= itab %>"
                           headerVisible   = "TRUE" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    Use it as a starting point for your layout page and gradually add your specific stuff.
    Cheers
    Graham

  • How to reorder columns in IR detail?

    Apex 4.1.1. Theme 4
    I added a new column for an IR. This column is last in the details view. The detail view has the same order of columns as they appear in the developers view.
    I want this column to be the first. How can I reorder the IR columns (developer view!)? I do not talk about the columns how they are shown in the normal IR reports view. This can be easily changed.

    Sven W. wrote:
    Does nobody has an idea?
    "It is not possible" would also be an answer. I just have the impression that I overlook something simple.Sven,
    You can edit the interactive report > report attributes > Detail View
    here you will see some sort of html code that defines the template which you can order to display how you want
    for example I have the below code to display two columns Ename and Job..etc so you can easilay switch them around
    <tr>
    <td align="right">#ENAME_LABEL#:</td><td>#ENAME#</td>
    <td align="right">#DEPTNO_LABEL#:</td><td>#UPDATED#, #DEPTNO#</td>
    <td align="right">#SAL_LABEL#:</td><td>#SAL#</td>
    </tr>
    <tr>
    <td align="right">#TEST1_LABEL#:</td><td>#TEST1#</td>
    <td align="right">#JOB_LABEL#:</td><td>#JOB#</td>
    <td align="right">#DEPTNO_LABEL#:</td><td>#DEPTNO#</td>
    </tr>
    <tr>
    <td align="right">#EMPNO_LABEL#:</td><td>#ENAME#</td>
    <td align="right">#ENAME_LABEL#:</td><td colspan="2">#ENAME#</td><td align="right">#HIREDATE_LABEL#:</td><td>#HIREDATE#</td>
    <td><br /></td>
    </tr>
    <tr>
    <td align="right">#MGR_LABEL#:</td><td colspan="6">#MGR#</td>
    </tr>
    <tr><td colspan="8"><hr /></td></tr>See this example https://apex.oracle.com/pls/apex/f?p=46417:30
    Hope this helps
    Edited by: VC on Sep 21, 2012 4:36 PM

  • Reorder columns in View Responses window

    Can the columns in View Responses window be reordered?
    If so, can it be done prior to all the responses being received?
    How does the program determine the order for the columns? It is different from the tab order on the form.
    Thanks

    Yes, they can be reordered. Just select the column (where the column letters are) and drag it where you want it to go.
    You can reorder the columns anytime you want. The default order is based on the order of the fields in the Design tab.
    Randy

Maybe you are looking for

  • Need Help in User Mapping

    Hi, I have created some R/3 transactions and assigned to end user. When i click on some Transaction name, it prompts me for username and password. Can i personalise this by taking the username and password automatically. Regards, Raju

  • Archive Stock Cube with non-cumulative nature

    Hi All, I have been trying to archive the Inventory (Stock) Infocube as we have more than couple of hundread million records in the cube and it is taking long time to execute query. I know how to acrive the regular cubes and DSOs, but I couldn't find

  • Black screen/progress bar with Yosemite startup

    Since installing Yosemite on my relatively new imac, when I boot up i get a black screen with the Apple logo and a progress bar, which takes about 90 seconds to load. I've tried disc first aid, verify/repair permissions etc , done a new install from

  • I want to install Adobe Flash Player & Firefox won't allow it - how do I get around this?

    I need to allow Adobe Flash Player to be installed

  • Can not update to itunes 6

    Presently using iTunes 10.5.0.142 on Win 7 64bit and have tried MANY times to update to iTunes 6, to no avail!  Continue to to get error messages, 3 of them, during update process. I own an iPad2, iTouch, and 3 different iPods, so invested into Apple