AF:PanelDashboard geometry - redhat jdev 11.1.2.3 5.8

Hello:

Inside an AF:PanelTabbed, I placed an AF:PanelDashboard, columns = 2, rowheight = 300px.

Then I tried to drop the AF:PanelBox 8 in the dashboard, but the designer, it shows only 4 of the Panel boxes and the last two are cut.

What is needed to make the dashboard extend and display all 8 Panel boxes (2 columns, 4 rows) and have a vertical scroll bar to display the boxes in Panel at the bottom of the screen? And how to set the width of each panelBox?

Thank you.

Published by: 966952 on February 18, 2013 08:19

To get the scroll bar, you would put a layout panelGroupLayout = scroll as the child of your showDetailItem. You can also set dimensionFrom = children on the panelTabbed if you want to stretch to fit all panelBoxes a scroll bar, with or without the scroll out of the tabs bar. The attribute 'type' of panelBox can be useful for the width. If you are wanting only a static width, the inline style should be OK to use it on this component. I have not worked on stuff 11.1.2.x/Sherman in awhile, I don't think there are many differences in this component.

Tags: Java

Similar Questions

  • Failed to create the deployment as EAR - redhat jdev 11.1.2.3 profile 5.8

    Hello:

    Previously, whenever I have deployed an ADF to WebLogic application is was like an EAR.

    Now when I try to create a deployment profile, creating the EAR is grayed out.

    When I right click on the ViewController project and select deploy the two options that come up are - deploy to AppServer and deploy to WAR
    but no EAR.

    What I am doing wrong? I thought all ADF apps would be deployed as the ear. Is this correct?

    Setting controls this and how do I define Jdev to deploy the ear?

    Thank you very much.

    Hello.

    You can deploy an application of JDeveloper as an ear. This does not work for different projects. You can create a profile of EAR deployment although the properties of the Application.

    Best regards

    Frédéric.

  • How to get the time of the browser - redhat jdev 11.1.2.3 5.8

    Hello:

    In java, I need to calculate the number of hours difference bewteen the browser time and time on the weblogic server. Any ideas?

    Note: the browser may be located throughout the world. What expert methods do you use to deal with these problems of timezone?

    Thank you very much.

    You can try to use a javascript method on the page what Girard customers time and send it to a listener side server where you can compare both.

    
    
      
      
        
          
            function clientMethodCall(event) {
                var datetime = new Date();
                component = event.getSource();
                AdfCustomEvent.queue(component, "customEvent",
                {
                    payload : datetime
                },
    true);
                event.cancel();
            }
          
          
            
              
              
                
                  
                    
                    
                  
                
                
              
            
          
        
      
    
    

    and the listener side Server (JSServerBean.java)

    package de.hahn.blog.xxyyzz.view.beans;
    
    import oracle.adf.share.logging.ADFLogger;
    import oracle.adf.view.rich.render.ClientEvent;
    
    public class JsServerBean {
        private static ADFLogger logger = ADFLogger.createADFLogger(JsServerBean.class);
        public JsServerBean() {
        }
    
        public void customEvent(ClientEvent clientEvent) {
            // Add event code here...
        }
    
        public void handleRequest(ClientEvent event) {
            logger.info("Information:"+"---" + event.getParameters().get("payload"));
        }
    }
    

    Timo

  • DateTime display adjusted to the location - redhat jdev 11.1.2.3 5.8

    Hello:

    I have an AF:outputText component and I want to display the Date and time as current: MM/DD/YYYY HH: mi: SS PM

    But I also need to adjust the time based on the location of users.

    For example: user1 is in the Eastern time zone and User2 is in the Central time zone.

    Is this possible in the Expression Language?

    How is - a detects the local user of the browser?

    Thank you very much.

    Not sure, using EL but you try a date converter time.

    To get the locale of the browser that you can use

    FacesContext.getCurrentInstance().getExternalContext().getRequestLocale();
    

    Timo

  • Read-only complex queries in redhat Jdev 11.1.2.3 5.8

    Hello:

    I have a complex select statement for a particular use case. There is no requirement to update all the columns in the tables, it is display only. What are the advantages and disadvantages to simply create your who do not rely on the EOs? Or should normally base us these complex queries on EOs because the EO puts in cache the rows returned? Given the following Select statement, would you experts this based on the underlying tables in OT or simply use a VO that is not entity founded, given that there is no update necessary?
    Thank you...


    SELECT distinct AUD_KEY,
    AUD_STATUS,
    AUD_TYPE,
    GET_PROJECT_CODE('AUD',AUD_KEY) NUMERO_PROJET,
    P_FNS. CLIENT_NAME, CLIENT_NAME (AUD_CLI_KEY),
    (SELECT COUNT (*) IN RESULTS
    WHERE FND_AUD_KEY = AUD_KEY
    AND UPPER (FND_CATEGORY) = 'IMPORTANT'),
    (SELECT COUNT (*) IN RESULTS
    WHERE FND_AUD_KEY = AUD_KEY
    AND UPPER (FND_CATEGORY) = "SHIFT") major.
    (SELECT COUNT (*) IN RESULTS
    WHERE FND_AUD_KEY = AUD_KEY
    and upper (fnd_category) = 'MIN') minor,.
    (SELECT COUNT (*) IN RESULTS
    WHERE FND_AUD_KEY = AUD_KEY
    AND UPPER (FND_CATEGORY) = 'o') other
    FROM AUD, DNF
    WHERE AUD_KEY = FND_AUD_KEY (+)
    AND)
    (UPPER (FND_STATUS) = 'o' AND (FND_OWNER =: p_aa_emp_key)) OR
    (UPPER (FND_STATUS) = 'R' AND (FND_APPR =: p_aa_emp_key)) OR
    (UPPER (AUD_STATUS) = 'P' AND (AUD_CREATED_BY =: p_aa_emp_key)) OR
    (Room in UPPER (AUD_STATUS)', 'A', 'IP', 'RA', 'RR') AND (AUD_AUDITOR =: p_aa_emp_key)))

    I would use a VO based on a query (the).
    However, the widespread use of the UPPERCASE function need some attention. This needs to be optimized. Check out my blog on this (http://tompeez.wordpress.com/2012/04/05/jdeveloper-case-insensitive-search-and-performance/).

    Timo

  • Access column in the Table - redhat jdev 11.1.2.3 inputValue 5.8

    Hello:

    In the HR schema:

    I dropped a collection DEPARTMENTS of control data as a table read-only on a page. I see references to the columns in the Source, such as < af:outputText value = "#{rank." DepartmentName}"id ="ot2"/ >

    Outside the table I put an AF:outputText on the page and set its value to "#{rank." DepartmentName}', but it still shows a white... What I am doing wrong?

    How can I access a column value in the currently selected row in the table in EL and Java?

    Thank you very much.

    It is not necessary to write your own selctionListener. All you have to do is to add an attributeValue column in the section of the pageDef binding.
    One of the ways to do this is to drag the VO, you used for the table and drop it on the page as a form of ADF (you can use only one form to read if you do not plan to change values). This will create the bindings for all the values of columns in the row selected in the pageDef. Now, as you do not need the form, switch to source mode and remove all fields do ' t you need the page. This leaves the links in the pageDef, but remove the unnecessary page visual fields.
    Now when you select a row in the table, that the framework will load the values in the row in the attributeValues wherever you can easily access it.

    Timo

  • RedHat Jdev 11.1.2.3 5.8 - AF:Switcher Question

    Hello:

    AF:switcher component can be used in a page Fragment?

    Also, I use the method of creation of functional subsystems like adflibs and then combine these subsystems into a master project to generate ear.

    Subsystems would use page fragments because the master project use the page template and use fragments of page subsystem in the page template? What is the best way to organize: models, fragments and dynamic regions in the context of functional subsystems (adflibs) consumed in a main workspace of the page? Any adivce on this?

    Thank you much for the help.

    What makes you think that he (af:switcher) cannot be used in a fragment?

    Watch this video http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/AngelsInTheArchitecture/AngelsInTheArchitecture.html for an overview of the architecture in the ADF application. You use case is about possible architectures.

    Timo

  • ADFBC internal Tables - jdev 11.1.2.3 on redhat 5.8

    Hello:
    During the activation/passavatation of the App Module, I think that ADF has write status information in some internal oracle tables. I suppose that, by default, the same pattern is used for user data and internal oracle tables. Is this correct?

    Until there is activation/passavatation of the app module, I guess that internal oracle tables are not created. Activation/passavation actually causes the creation of tables or what?

    As a result, until there is stress on the system, the system can run ADF applications ok until passavation occurs and tries to create the internal oracle tables.
    If the connection does not grant to create tables, the system fails during activation. Is this true?

    Can someone indicate the location in the Docs that deal with this topic?

    Thank you very much.

    Yes that's right, only you get an error when passivation take place. Here is the doc http://docs.oracle.com/cd/E35521_01/web.111230/e16182/bcstatemgmt.htm#ADFFD1307
    Jdev ships sql scripts to create the tables with the installation. A DB admin can then create the tables and the connection used by the application must create the table rights. You can find the script at \oracle_common\common\sql\adfbc_create_statesnapshottables.sql

    Timo

    Published by: Timo Hahn on 16.01.2013 20:31

  • Increase the memory of WebLogic built-in Jdev 11.1.2.3 - RedHat 5.8

    Hello:

    I am running Red Hat with JDev 11.1.2.3 5.8. and I would like to increase the memory of the integrated WebLogic Server. Here's what I've done so far:

    -Installed Jdev 11.1.2.3 on a Red Hat 5.8 - works well.
    -Created and run a simple application in Jdev in order to force the Server WebLogic integrated to create a default domain. -worked OK

    -I expected to find the setDomainEnv.sh file in the .../middleware/user_projects/applications/defaultdomain/bin directory


    But there are no files and no directory under the folder /DefaultDomain.

    When you use the WebLogic Server integrated into Jdeveloper, where is the setDomainEnv.sh file?

    For the WebLogic Server integrated into Jdeveloper, how can I increase memory for the WebLogic Server integrated into Jdeveloper?

    Thanks for the help.

    You can apply your changes to... / Middleware/wlserver_10.3/common/commonEnv.sh, this will ensure that you do not lose the settings when you need to recreate your integrated weblogic domain. After you have applied the changes to this file, you must remove your default domain name and re-create (both through JDev). The reason for this is the common file settings are applied to the areas where they are created, so your existing domain to have been built with the old (default) settings.

  • A Bind Variable used in many your 11.1.2.3 jdev redhat 5.8

    Hello:

    I have multiple View objects and each view object must use a variable binding. I would than each VO to reference the same variable binding.
    Example: I have 3 VO and in each VO where clause I need something like emp_key =: p_emp_key, but I only want a single variable of binding used in each VO. Is this possible?

    So I would like to create a drop-down list of the values for all the names of the employees and have all the objects of view refer to the key of the value selected from the drop down to employees.
    Each VO must reference the same selected employee.

    What is the best way to achieve this?

    Thank you very much.

    This should help:
    https://blogs.Oracle.com/Shay/entry/combining_multiple_queries_and

  • ADFLibs Fusion Web App - Jdev 11.1.2.3 on redhat 5.8

    Hello:

    Say I have create a Web of Fusion ADF application called APP_LIB. This app has EO, VO, AM in the model project and has Pages, fragments and the Taskflows in the ViewController. I want to create an APP_LIB Lib ADF, so I create a deployment profile ADF Lib on the ViewController project. The ViewController being dependant on the model project, the library must be created with EO, VO, AM, Pages, Fragments and some TaskFlows. Right? Or I would create different profiles of deployment for the model and the ViewController project and thus 2 create two separate ADF Libs?

    Now, I want to import the ADF of APP_LIB lib into another ADF Fusion Web application called ENTERPRISE_APP. If I imported the ViewController of ENTERPRISE_APP the APP_LIB, would be the EO, VO and AM appear in the model project? Or do I have to import APP_LIB into the project template and ViewController of ENTERPRISE_APP?

    Is it better to separate libraries for the project template and ViewController in APP_LIB and create two separate ADF Libs for the model and ViewController? What the experts recommend creating the ADF libs on a project template project and project ViewController and also what is the best way to import the ADF LIB in a Fusion ADF application that also has a model project and the ViewController project.

    Can I create two ADF Libs: a Lib ADF for the project template and a Lib ADF for the ViewController and import each project ADF Lib in (model and ViewController) correspondent business APP?

    Any recommendations?

    Thank you very much.

    Hello

    This is what Oracle Fusion Applications as well. Keep in mind that the ADF libraries are not contained in other libraries, which means that the "Assembly" application requires references from the library in the project view controller

    Frank

  • How to get user SSO in ADF approx. Jdev 11.1.2.3, RedHat 5.8

    Hello:

    We use Oracle Access Manager 11.1.1.5 for single sign on against LDAP (Active Directory)

    In an ADF application, how do we get the user name of the person who connected to Active Directory?

    Thank you very much.

    Hello

    I think that you will have access to the SSO username by calling ADFContext.getCurrent () .getSecurityContext () .getUsername)

    For more information you can access, next to the user name, see http://docs.oracle.com/cd/E15051_01/apirefs.1111/e10686/oracle/adf/share/security/SecurityContext.html

    Frank

  • Invalid column Type error - Jdev 11.1.2.3 on Redhat 5.8

    Hello:

    I created a simple Web ADF application with a single table.

    Test1 uses the HR schema and the db connection is also HR and everything works fine.

    Test2 uses a (partner) schema that is different from the logged-in user (admininn) in about DB. In sqlplus, I can update the table as a logged-in user. For DB grants are ok.

    But in the ADF app, when I try an update, I get an error: exception for invalid column type. See error below.

    When the owner of the schema is different from the db connection, I get this error even if DB subsidies are in place. What Miss me?

    Thank you very much



    Note: the DB connection connects as admininn no PARTNER. But DB subsidies are in place to allow admininn associated schema update.

    [386] built select: "SELECT CLI_KEY, CLI_NAME, CLI_SHORT_NAME, CLI_TYPE, CLI_LAWSON_ID, CLI_ACTIVE, CLI_COUNTRY PARTNER. CLIENTS Clients
    [387] enforcement of LOCKING... SELECT CLI_KEY, CLI_NAME, CLI_SHORT_NAME, CLI_TYPE, CLI_LAWSON_ID, CLI_ACTIVE, CLI_COUNTRY PARTNER. The CUSTOMERS Customers WHERE CLI_KEY =: 1 FOR UPDATE NOWAIT
    [388] where the link param 1:263
    OracleSQLBuilderImpl.doEntitySelect [389] failed...
    [390] java.sql.SQLException: invalid column type
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:11256)
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:10605)
    at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:11665)
    at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:11631)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObject(OraclePreparedStatementWrapper.java:253)
    at oracle.jbo.server.OracleSQLBuilderImpl.bindWhereAttrValue(OracleSQLBuilderImpl.java:2306)
    at oracle.jbo.server.BaseSQLBuilderImpl.bindWhereClause(BaseSQLBuilderImpl.java:2300)
    at oracle.jbo.server.EntityImpl.bindWhereClause(EntityImpl.java:10784)
    at oracle.jbo.server.BaseSQLBuilderImpl.bindWhereClause(BaseSQLBuilderImpl.java:2283)
    at oracle.jbo.server.OracleSQLBuilderImpl.doEntitySelectForAltKey(OracleSQLBuilderImpl.java:840)
    at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:552)
    at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:8311)
    at oracle.jbo.server.EntityImpl.lock(EntityImpl.java:5971)
    at oracle.jbo.server.EntityImpl.beforePost(EntityImpl.java:6491)
    at oracle.jbo.server.EntityImpl.postChanges(EntityImpl.java:6707)
    at oracle.jbo.server.DBTransactionImpl.doPostTransactionListeners(DBTransactionImpl.java:3264)
    at oracle.jbo.server.DBTransactionImpl.postChanges(DBTransactionImpl.java:3067)
    at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:2071)
    at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2352)
    at oracle.adf.model.bc4j.DCJboDataControl.commitTransaction(DCJboDataControl.java:1590)
    at oracle.adf.model.binding.DCDataControl.callCommitTransaction(DCDataControl.java:1415)
    at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1428)
    at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2169)
    at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:731)
    at oracle.jbo.uicli.jui.JUActionBinding.actionPerformed(JUActionBinding.java:193)
    at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:412)
    at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:112)
    to oracle.jbo.uicli.controls.JUNavigationBar$ NavButton.actionPerformed (JUNavigationBar.java:118)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
    at java.awt.Component.processMouseEvent(Component.java:6289)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6054)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4652)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4482)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4482)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
    to java.awt.EventQueue.access$ 000 (EventQueue.java:85)
    in java.awt.EventQueue$ 1.run(EventQueue.java:603)
    in java.awt.EventQueue$ 1.run(EventQueue.java:601)
    at java.security.AccessController.doPrivileged (Native Method)
    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)
    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:98)
    in java.awt.EventQueue$ 2.run(EventQueue.java:617)
    in java.awt.EventQueue$ 2.run(EventQueue.java:615)
    at java.security.AccessController.doPrivileged (Native Method)
    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    Check the OS type for each attribute. Number should be oracle.jbo.domain.Number.
    VARCHAR must be java.lang.String. Date should be oracle.jbo.domain.Date

  • Jdev 11.1.2.3 on RedHat 5.8 - use ADF Fusion Proj for Master

    Hello:
    I'm in accordance with the practice of creating shared libraries of ADF for model, the Code and the user interface, called CommonModel, CommonCode, CommonUI.
    Developers create subsystem projects that import these Libs ADF. Then several subsystems (such as ADF Libs) are combined into a master application that then creates the EAR file for deployment.

    Each of the subsystems are ADF Fusion Web Apps. (a model and viewController projects)
    Shared libraries are Custom apps. (with only a single project)

    The Question is what type of application to create for the Master project. The docs seem to indicate a custom project, but I think it's wrong and that I have to use a Web of Fusion ADF application for the master who would model and viewController projects.

    So, what type of application must be created for the master? Custom = a project or ADF Fusion app that has 2 projects (model and viewController)?

    Thanks for the help.

    Hello

    Keep in mind that the types of applications are a few models. Models include a set of libraries of different technologies that you can work on your project. However that does not limit you to use other technologies or libraries outside of this scope. Custom type is open to all.

    Juan C

  • Jdev 11.1.2.3 on RedHat 5.8 - question about ADF Libs

    Hello: I am following the use ADF Libs method to separate the common code of the various subsystems. So I created the following bookstores: CommonCode, CommonModel, CommonUI. This large all worked.

    So now, I'm working on the creation of two subsystems that everyone uses common libraries of adf. Each subsystem will also create their own pot of lib adf. It worked.

    But...
    I have a two tables joined by a relationship master detail I want to test. I VO for the main table in subsystem1 of installation and configuration VO for detail in subsystem2 table. Where would the display link? Subsystem1 or subsystem2. Is how important it?

    The next step would be to create an Application of master using subsystem1 and subsystem2. In the master application, I would like to develop the relationship master detail between the tables and perform a test. In theory, no code should go in the Master. Right?

    So where the display link should go? Subsystem1, subsystem2 or master. And what is the rationale?

    Thanks for the help.

    Hello

    You may not create any links on any of the projects because this relationship between subsystems is only valid under the Master application. Therefore, the link must be created on the request of the master, after that both libraries have been imported, keep in mind that after you import the two libraries you mark them as shared AMs under the master AM also if you have an optimal control over db how instances are created. See the article according to that described a similar approach
    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/87-lov-using-shared-am-444769.PDF

    Juan Camilo

Maybe you are looking for

  • macOS sierra time capsule does not

    I have upgraded to iOS sierra on my MacBook 2013 and 2015 s pro on 24/09/16. The time machine- Time capsule has not worked since. Wifi works but not the backup. We need real expert help solve this problem, not conjecture. I understand that if I use o

  • Printing in the columns of the object is too small for my old eyes. :-)

    When I look at the screen that lists the emails and who they come from, dates, etc., they are too small. I have dumbed down Safari screen resolution so it will work, but none of your tips explains how to expand the guy I see.Thank you.

  • Not in Stock! Best Buy

    stores in Wheaton and College Park (Maryland). I want to know who is provider of Best Buys.

  • "Low disk space" message

    I get a message telling me that my "disk space is low.  When I click on the message box, it takes me to 'Change/Remove' programs and a list of all programs on my computer and gives me options to edit or delete.  I noticed that I have a lot of updates

  • Optiarc DVD RW AD - 7560A ATA DEVICE do not work

    My CD-ROM/DVD-ROM does not work.  Manager of devices display a "!" on the Optiarc DVD RW AD - 756 A ATA DEVICE.1 device state poster (this device cannot start. (code 10)).2 update driver... shows that the best device driver software is already instal