TreeTable with grid

I am using the tree table and
when i try to add a grid to the table the grid is not shown on the tree column.
If i try to paint a border for each node at the tree it gets too wide (since for close cells there are two borders.)
Is there any other solution?

Thanks for the links.
I checked them up, but first, I noticed they apply to adf 11g, and second none of them use inputText in columns. I really couldn't find a any idea to solve my issue.
Any other suggestions?
My problem is that when I expand/collapse a node, the values in the inputTexts are lost. I don't know if I need something else on my page Definition...
thank you.

Similar Messages

  • How do I get and set column attributes in a table or a treetable with Java?

    Using 11.1.1.4.0
    Hi,
    How do I get and set column attributes in a table or a treetable with Java? For a simple example, say I have a table and want certain roles to see all columns (including address), and other roles can see only certain columns (no address). In a Java method, I want to test if a table's column visible attribute is true and if so, set it to false before rendering it.
    Thanks in advance,
    Troy

    Hi,
    this use case would be a perfect example for using seeded MDS customization. Instead of checking what users are allowed to see or not upon rendering time, you have a customization class and thus the framework doing this for you.
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/31-mds-sample-169173.pdf
    In this paper and sample, specific users see different layouts. It also contains a customization class that shows how this can leverage ADF Security
    Frank

  • Af:treetable with af:tableSelectMany

    HI
    I'm currently using a af:treetable with af:tableSelectMany for select many rows from a tree.
    I need any checkbox checked before load the af:treetable with af:tableSelectMany ,
    What method is neccesary?
    Thanks / Ali

    Hi,
    if this is a critical issue with a customer of yours, wouldn't it be best to run this against customer support than here on the forum ? This would make sure the issue is properly analyst and filed as a bug if it turns out to be a product problem. Unless the adf-config.xml file is configured to also persist the display row key in MDS, the behavior points to an issue that needs customer support to be involved
    Frank

  • PeopleSoft 8.52 Plug-in Implementation Guide for use with Grid Control

    Per the Readme accompanying the download of PeopleSoft 8.52 Plug-in for use with Grid Control (11.1.0.1)-- "For the implementation reference guide, refer to "PeopleSoft Enterprise Environment Management Plug-in 8.52 for Oracle Enterprise Manager Implementation Guide" which you can download from Oracle Technology Network."
    I don't seem able to find it.
    Can anyone point me in the right direction?
    TIA
    Jeri

    Duh, I was looking on the wrong site.

  • What are the prerequisites to monitor SAP ENVIROMENT with grid control

    anybody know what are the prerequisites to monitor SAP ENVIROMENT with grid control
    its necessary another software
    thanks

    There's currently no way to monitor a whole SAP system through gridcontrol. Of course you can monitor the underlying database.
    Werner

  • Tool bar dock problem with grid layout

    I have a tool bar with grid layout. When i dock it to vertical location(west or east) the buttons inside tool bar keep one row. I want to know how do i do to make the buttons arraged vertically like the tool bar with default layout when dock it at west or east position.

    I had started a custom layout manager for toolbars a few months ago that I found a little easier to use than the default BoxLayout. I just modified it to allow optionally matching the button sizes (width, height, or both), so you can get the same effect as GridLayout. Note that this one doesn't collapse the toolbar like the one in the other thread. Here's the source code as well as a simple test app to demonstrate how to use it. Hope it helps.
    //     TestApp.java
    //     Test application for ToolBarLayout
    // package ***;
    import java.awt.*;
    import javax.swing.*;
    public class TestApp extends JFrame
         /////////////////////// Main Method ///////////////////////
         public static void main(String[] args)
              try { UIManager.setLookAndFeel(
                   UIManager.getSystemLookAndFeelClassName()); }
              catch(Exception ex) { }     
              new TestApp();
         public TestApp()
              setTitle("ToolBarLayout Test");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setSize(400, 300);
              setLocationRelativeTo(null);
              JToolBar tbar = new JToolBar();
              ToolBarLayout layout = new ToolBarLayout(tbar);
              // Comment these two lines out one at a time to see
              // how they affect the toolbar's layout...
              layout.setMatchesComponentDepths(true);
              layout.setMatchesComponentLengths(true);
              tbar.setLayout(layout);
              tbar.add(new JButton("One"));
              tbar.add(new JButton("Two"));
              tbar.add(new JButton("Three"));
              tbar.addSeparator();
              tbar.add(new JButton("Musketeers"));
              Container c = getContentPane();
              c.setLayout(new BorderLayout());
              c.add(tbar, BorderLayout.NORTH);
              setVisible(true);
    //     ToolBarLayout.java
    //     A simple layout manager for JToolBars.  Optionally resizes buttons to
    //     equal width or height based on the maximum preferred width or height
    //     of all components.
    // package ***;
    import java.awt.*;
    import javax.swing.*;
    public class ToolBarLayout implements LayoutManager, SwingConstants
         private JToolBar     oToolBar = null;
         private boolean     oMatchDepth = false;
         private boolean     oMatchLength = false;
         private int          oGap = 0;
         public ToolBarLayout(JToolBar toolBar)
              oToolBar = toolBar;
         public ToolBarLayout(JToolBar toolBar, boolean matchDepths)
              oToolBar = toolBar;
              oMatchDepth = matchDepths;
         public ToolBarLayout(JToolBar toolBar,
                        boolean matchDepths,
                             boolean matchLengths)
              oToolBar = toolBar;
              oMatchDepth = matchDepths;
              oMatchLength = matchLengths;
         // If true, all buttons in the row will be sized to
         // the same height (assuming horizontal orientation)
         public void setMatchesComponentDepths(boolean match)
              oMatchDepth = match;
         // If true, all buttons in the row will be sized to
         // the same width (assuming horizontal orientation)
         public void setMatchesComponentLengths(boolean match)
              oMatchLength = match;
         public void setSpacing(int spacing)
              oGap = Math.max(0, spacing);
         public int getSpacing()
              return oGap;
         ////// LayoutManager implementation //////
         public void addLayoutComponent(String name, Component comp) { }
         public void removeLayoutComponent(Component comp) { }
         public Dimension minimumLayoutSize(Container parent)
              return preferredLayoutSize(parent);
         public Dimension preferredLayoutSize(Container parent)
              synchronized (parent.getTreeLock())
                   int orientation = getOrientation();
                   Component[] components = parent.getComponents();
                   int w = 0, h = 0;
                   int totalWidth = 0, totalHeight = 0;
                   int maxW = getMaxPrefWidth(components);
                   int maxH = getMaxPrefHeight(components);
                   Dimension ps = null;
                   if (orientation == HORIZONTAL)
                        for (int i=0; i < components.length; i++)
                             ps = components.getPreferredSize();
                             if (oMatchLength) w = maxW;
                             else w = ps.width;
                             if (oMatchDepth) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = ps.width;
                                  h = 0;
                             totalWidth += w;
                             if (i < components.length - 1)
                                       totalWidth += oGap;
                             totalHeight = Math.max(totalHeight, h);
                   else
                        for (int i=0; i < components.length; i++)
                             ps = components[i].getPreferredSize();
                             if (oMatchDepth) w = maxW;
                             else w = ps.width;
                             if (oMatchLength) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = 0;
                                  h = ps.height;
                             totalHeight += h;
                             if (i < components.length - 1)
                                       totalHeight += oGap;
                             totalWidth = Math.max(totalWidth, w);
                   Insets in = parent.getInsets();
                   totalWidth += in.left + in.right;
                   totalHeight += in.top + in.bottom;
                   return new Dimension(totalWidth, totalHeight);
         public void layoutContainer(Container parent)
              synchronized (parent.getTreeLock())
                   int orientation = getOrientation();
                   Component[] components = parent.getComponents();
                   Insets in = parent.getInsets();
                   int x = in.left, y = in.top;
                   int w = 0, h = 0, maxW = 0, maxH = 0;
                   Dimension ps = null;
                   if (orientation == HORIZONTAL)
                        maxW = getMaxPrefWidth(components);
                        maxH = Math.max( getMaxPrefHeight(components),
                             parent.getHeight() - in.top - in.bottom );
                        for (int i=0; i < components.length; i++)
                             ps = components[i].getPreferredSize();
                             if (oMatchLength) w = maxW;
                             else w = ps.width;
                             if (oMatchDepth) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = ps.width;
                                  h = maxH;
                             components[i].setBounds(
                                  x, y + (maxH-h)/2, w, h);
                             x += w + oGap;
                   else
                        maxH = getMaxPrefHeight(components);
                        maxW = Math.max( getMaxPrefWidth(components),
                             parent.getWidth() - in.left - in.right );
                        for (int i=0; i < components.length; i++)
                             ps = components[i].getPreferredSize();
                             if (oMatchDepth) w = maxW;
                             else w = ps.width;
                             if (oMatchLength) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = maxW;
                                  h = ps.height;
                             components[i].setBounds(
                                  x + (maxW-w)/2, y, w, h);
                             y += h + oGap;
         //// private methods ////
         private int getOrientation()
              if (oToolBar != null) return oToolBar.getOrientation();
              else return HORIZONTAL;
         private int getMaxPrefWidth(Component[] components)
              int maxWidth = 0;
              int componentWidth = 0;
              Dimension d = null;
              for (int i=0; i < components.length; i++)
                   d = components[i].getPreferredSize();
                   componentWidth = d.width;
                   if (components[i] instanceof JSeparator)
                        componentWidth = Math.min(d.width, d.height);
                   maxWidth = Math.max(maxWidth, componentWidth);
              return maxWidth;
         private int getMaxPrefHeight(Component[] components)
              int maxHeight = 0;
              int componentHeight = 0;
              Dimension d = null;
              for (int i=0; i < components.length; i++)
                   d = components[i].getPreferredSize();
                   componentHeight = d.height;
                   if (components[i] instanceof JSeparator)
                        componentHeight = Math.min(d.width, d.height);
                   else maxHeight = Math.max(maxHeight, componentHeight);
              return maxHeight;

  • Why does 10g EM with GRID install a 9.0.1.5 database (windows 2003)

    Having a hectic day with EM/DG. I reinstalled my enterprise manager with grid control 10g and opted to let it create a new database. I then looked at the version and found out it created a 9.0.1.5.1 database. Whats up with this??

    If that's EM Grid 10.1, Probably because the version of AS that EM builds on, builds on that version (of DB) :-) EM's repository is, of course, still 10.1.0.x
    In the correct circumstances, EM 10.1 supports having its repository in Database 10.1.0.x where x=3 or higher.

  • What does a gray icon with grid lines mean? It looks like a bullseye.

    What does a gray icon with grid lines mean? It looks like a bullseye.

    It's an app icon that didn't load properly .... If it looks like this.

  • Icons become white with grid

    OOn my WiFi only iPad, about half of the icons are white with grid lines. I am able, though, to access the sites they represent. How do I get the app logos to return

    How is the available space on your iPad? Aside from that, you might try powering down and restarting.

  • Dataguard creation with Grid Control

    hi all
    i'm trying to create a physical standby database with grid control. (asm to asm)
    after setting various properties in the wizard, grid goes on creating a broker config and when it gets to the step "preparing standby database creation" it fails with "ERROR: invalid username and/or password."
    no more info on where it fails.
    preciate if anyone has any tips on what to check.

    Hi jstem,
    thank you for your help
    The initial status of the DATAGUARD is SUCCESS, and all is working fine with the BROKER.
    The"Availability"=>"Dataguard Administration" page is correct, all the indications are right, except :
    - Estimate Failover Time : Not available
    Here is the output of 'Verify Data Guard Setup'
    Initializing
    Connected to instance srv-bdd02:PHOENIX
    Starting alert log monitor...
    Updating Data Guard link on database homepage...
    Skipping verification of fast-start failover static services check.
    Data Protection Settings:
    Protection mode : Maximum Availability
    Redo Transport Mode settings:
    PHNXFIN: SYNC
    PHNXENT: SYNC
    Checking standby redo log files.....OK
    Checking Data Guard status
    PHNXFIN : Normal
    PHNXENT : Normal
    Checking inconsistent properties
    Checking agent status
    WARNING: No credentials available for target. srv-bdd01
    Attempting agent ping ... OK
    WARNING: No credentials available for target. srv-bdd02
    Attempting agent ping ... OK
    Checking applied log on PHNXENT...OK
    Processing completed.
    Yes, i've already investigated about credentials ...
    ALL the credentials are OK for hosts, instance, agent, .... don't know where to add more credentials ....

  • TreeTable with different Root

    Hi all,
    i search in the forum but i can't found.
    I need to have a treeTable with different root.
    All the exaples that i found didn't explain how to make this!
    Someone can help me?
    i.e.
    RootA
    |___rrrrrrrr
    | |___ xxx
    | |___yyy
    |____dddddd
    RootB
    |___dddd
    |___ www
    |___kkk
    It's look like to see the folders without a ROOT master.
    Thank's a lot!
    Riccardo

    Hi,
    >>they are not being authorized because the user groups cannot be assigned. This is because the user cannot be found in LDAP/AD for forestA.
    How did we configure the DNS resolution between the two forests? Here, we can check event logs in Event Viewer to see if some related events were logged.
    Regarding how to accessing resources across forest, the following articles can be referred to as reference.
    Accessing Resources across forest and achieve Single Sign ON (Part1)
    http://blogs.technet.com/b/mir/archive/2011/06/12/accessing-resources-across-forest-and-achieve-single-sign-on-part1.aspx
    Accessing resources across forests
    https://technet.microsoft.com/en-us/library/cc772808(v=ws.10).aspx
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • TreeTable with columnGroup

    Hi,
    Is it possible to have one unique table with this 2 components? (TreeTable with columnGroup).
    Something like http://www.teamdev.com/quipukit/demo/treetable/TreeTable1.jsf BUT must allows me to have a columnGrouped Header, to group Months inside Quarters, inside Year, in the table header.
    I have to do that with seam framework, and a .xhtml page. I found many JSF implementations that allow me to do a columnGrouped header but not a TreeTable and others allow me to do a TreeTable but not a columnGrouped.
    I also checked http://www.irian.at/myfacesexamples/home.jsf but i think this doesn't allow me to do that.
    Thanks for any help

    Any idea ?

  • How to monitor Oracle Glassfish with Grid Control 11g

    Hi,
    Could someone tell me how can i monitor Oracle Glassfish with Grid Control 11g ?? i think i need a plug-in but i don't know where could i download it
    I guess the information i can monitor depends on the plug-in :)
    Regards
    Carlos

    Hi Carlos,
    We do have partners that routinely write plug-ins to extend OEM. If you take a look at the EM Extensibility Exchange below, you will find various extensions that partners such as Blue Medora have written:
    http://apex.oracle.com/pls/apex/f?p=34841:1:26399399216901:::::
    Please keep in mind though that between SLM and JVM diagnostics, you would have a significant amount of visibility even without the Glassfish target.
    Cheers,
    Glen

  • Can Oracle Application Diagnostics for Java used with Grid Control 10.2.0.3

    I have installed Grid Control 10.2.0.3 in Solaris 10.
    I was asked to install AD4J . Is it necessary to upgrade Grid Control to 10.2.0.4 for installing AD4J or can I use the present 10.2.0.3 version withour upgrading it ?

    Hello.
    We already have Grid Control 10.2.0.4 and just installed AD4J 10.2.0.4. This version of AD4J is not integrated with Grid Control, and can be setup on any server by unzipping the downloaded file (no installer). I did find the installation/configuration documentation lacking, but worked through it with a little help from Oracle Support.
    The AD4J console has the look and feel of Grid Control, but is totally separate app with its own Apache server, etc.
    Daren

  • How to disply internal table with grid format .

    HI ,
    how to disply internal table with grid format .
    Regards
    venkat

    Grid format can be disaplyed using two ways,
    1. Using reuse_alv_grid_display
    2. using object oriented ABAP with the methos set_table_for_first_display.
    For example program search in where used list for standard SAP programs.
    If this is not the answer then please explain your issue in detail
    Thanks,
    Rama Krishna

Maybe you are looking for

  • ITunes 7.02 fails to use VBR when importing CD to MP3 (used to work)

    Just checking the size of some files imported into iTunes from CDs in MP3 format . . . Although the settings haven't changed, it seems that somewhere between version 7.0 and 7.02, the VBR setting has become disabled. The settings are - custom: 160kbp

  • Jmap throws exception on java 1.4.2_12

    I've been trying out the backported jmap and heap dump functionality on java 1.4.2_12 but I've run into a problem. Whenever I run jmap I get output similar to this: alpine: /> /usr/j2se/bin/jmap -histo 1369 Attaching to process ID 1369, please wait..

  • Network Adapter could not establish the connection in sql developer

    hi, i had installed oracle 11g , and then i try to connect the sys/system user using sql developer and sqlplus , but i got following error are display , plz give some idea regards venki

  • Transfer of Z field of Confirmation of Goods to ECC

    Hello Experts, We are implementing Classic scenario of Self Service Procurement. In confirmation of goods we have created a Zfield at Item level. Which is a standard field in R/3 MIGO. We want to transfer this field in R/3 MIGO. How can we do it? Ple

  • Populating a temp table with multiple records.

    I want to populate a temp table with a a set of recs. This table will be used for crossing/joining with my other tables to pull out data. ie: Main table (loc)contains these fields -> county,permit,utme,utmn Temp table ( tmpid) contains these fields -