ADF Faces af:showOneTab component - Mozilla Firefox problem

I'm new to ADF Faces.
I made simple subpage flow with showOneTabs component. It looks like thist:
<f:view>
<afh:html>
<afh:head title="title"/>
<afh:body>
<af:panelPage>
<f:facet name="pageHeader">
<af:form id="formNavigate">
<af:panelGroup type="vertical">
<af:showOneTabs position="above">
<af:showDetailItem text="Tab1">
<jsp:include page="sub1.jsp"/>
</af:showDetailItem>
<af:showDetailItem text="Tab2">
<jsp:include page="sub2.jsp"/>
</af:showDetailItem>
Subpages (sub1.jsp and sub2.jsp) looks like this:
<afh:html>
<afh:body>
<af:outputText value="sub1"/>
and it works fine. But only with IE. When try to swith to Tab2 in Mozilla Forefox 0.9 nothig happends. Anyone knows why.
Regards
bhs

Get rid of the <afh:html> and <afh:body> in sub1.jsp and sub2.jsp; you can't have <HTML> and <BODY> inside other <HTML> and <BODY> tags.
-- Adam Winer

Similar Messages

  • ADF Faces: Making a component non-navigable. How?

    Hi,
    Is it possible to make an ADF Faces component non-navigable? Something like specifying
    tabindex="-1"in HTML.
    I need this most for buttons.
    Best regards,
    Bisser

    That's right. JSF produces such IDs. They are causing problems with JAAS login forms, so we should use plain JSPs for login, but for the rest of the tasks such IDs are okay.
    What I meant is that currenty the buttons are not rendered as
    <input type="button" ... />but as pictures embedded in hyperlinks (&lt;a>).
    It's possible, though not likely, that in some future version of ADF Faces some component will be rendered as an HTML element that doesn't support tab ordering (although I haven't really considered if there are such elements). Then the trick with manually setting the tabIndex of the parent HTML element won't work.
    Of course, I deeply appreciate the fact that you take the time to help us on this forum. In fact, I will go ahead and do just that -- I will dynamically set the tabIndex via JavaScript. I was simply wanting to make sure that I wasn't taking such a hack-like approach, if there was a better method.
    Thank you again.
    Best regards,
    Bisser

  • Adobe Reader Installation Instructions for Mozilla Firefox problem

    hello. i am trying to finish installing adobe reader, however, i get this request: "Mozilla Firefox will not install Adobe Reader from web sites until you add them to the Allowed List. Please follow the steps below."
    and here is where the problem begins, the first thing i am told to do is to: "1. Look for a yellow bar at the top"
    http://www.adobe.com/products/reader/dlm/images/step1.gif
    and then to:
      Click on the “Edit Options…” button in the bar to continue with download"
    however, there is no yellow bar, [or any other colour], nore is there an "edit options" to select.
    they simply are not there!!!
    please help me!!!
    thank you !!

    Hi all,
    It seems that Adobe DLM does not like the new firefox version I have tried on two machines, Vista 32bit and Winxp SP3, it quits on both machines between 60 and 94% (DLM crashes and shuts down) Manual install works
    Is it just me ?
    BEFORE any one says, I only use Firefox, I do not use Internet Exploiter (if I could convince the manufacturers of the install software I use to make a *nix or mac version I would get rid of M$ OS's
    Regards,
    GG

  • ADF FACES:Creating custom component on top of adf

    My UI requiement is sth like
    Name : xxxxxxx
    Description : xxxxxxxxx
    Search : cccccc
    This UI i want to create as a custom tag and use it across our project.
    We need to include this utiltiy in JSP Tag libraries so that it appears in
    the compoent palette.
    WE have done the same thing using pure JSF and it is working fine.
    But we need to leverage ADF classes.. so that we can get the same look and
    feel and we simply set our proprties and renering part will come from ADF faces.
    In my main component class I have written the code sth like
    public void encodeChildren(FacesContext context)throws IOException {
    RenderKit rk = context.getRenderKit();
    CoreInputText buton = new CoreInputText();
    buton.setValue("my text");
    buton.setRendered(true);
    rk.getRenderer("myFamily", getRendererType()).encodeBegin(context, buton);
    After doing this I run my test.jsp and no output is produced.
    So can you let us know the correct way for doing this.
    This is a high priority requirement for US.if anybody can pls help asap..
    Thanks
    Ravi

    Hi All,
    I was able to get this code to run and wanted to share with you the corrections
    ================== HelloUIComp.java ==============
    package view.components.msg;
    import java.io.IOException;
    import javax.faces.application.Application;
    import javax.faces.component.UIComponentBase;
    import javax.faces.component.UIViewRoot;
    import javax.faces.context.FacesContext;
    import oracle.adf.view.faces.component.core.CoreForm;
    import oracle.adf.view.faces.component.core.input.CoreInputText;
    import oracle.adf.view.faces.component.core.layout.CorePanelForm;
    import oracle.adf.view.faces.component.core.nav.CoreCommandButton;
    import oracle.adf.view.faces.component.core.output.CoreMessage;
    import oracle.adf.view.faces.component.core.output.CoreMessages;
    public class HelloUIComp extends UIComponentBase {
    private CoreCommandButton button;
    private CoreInputText intext;
    private CoreInputText description;
    private CorePanelForm panel;
    private CoreForm form;
    public static final String COMPONENT_TYPE = "com.mycompany..hello";
    // This will be a self-rendering component
    public static final String RENDERER_TYPE = null;
    public HelloUIComp() {
    FacesContext context = FacesContext.getCurrentInstance();
    Application apps = context.getApplication();
    UIViewRoot root = context.getViewRoot();
    panel = (CorePanelForm)apps.createComponent(CorePanelForm.COMPONENT_TYPE);
    panel.setId("errPanel");
    panel.setLabelWidth("35%");
    panel.setRows(7);
    getChildren().add(panel);
    form = (CoreForm)apps.createComponent(CoreForm.COMPONENT_TYPE);
    form.setId("errForm");
    panel.getChildren().add(form);
    intext = (CoreInputText)apps.createComponent(CoreInputText.COMPONENT_TYPE);
    intext.setId("name");
    intext.setLabel("Name");
    intext.setRendered(true);
    intext.setRequired(true);
    form.getChildren().add(intext);
    description = (CoreInputText)apps.createComponent(CoreInputText.COMPONENT_TYPE);
    description.setId("description");
    description.setLabel("description");
    description.setRendered(true);
    description.setRequired(true);
    description.setRows(3);
    form.getChildren().add(1, description);
    public boolean getRendersChildren() {
    return true;
    public void encodeChildren(FacesContext context) throws IOException {
    // Encode the top most component
    panel.encodeAll(context);
    /* The below code can replace the encodeAll call
    panel.encodeBegin(context);
    if(panel.getRendersChildren()){
    panel.encodeChildren(context);
    panel.encodeEnd(context);
    public String getFamily() {
    return COMPONENT_TYPE;
    ==========================================================
    Notice, you don't need any setters/getters for this object.
    You will need the following tag file:
    ============= HelloUICompTag.java ========
    package view.components.msg;
    import javax.faces.webapp.UIComponentTag;
    public class HelloUICompTag extends UIComponentTag{
    public HelloUICompTag() {
    public String getComponentType() {
    return HelloUIComp.COMPONENT_TYPE;
    public String getRendererType() {
    // Self rendering components return null
    return HelloUIComp.RENDERER_TYPE; // should be null
    =========================================
    You will need to update your faces.config file with the following entry. Notice you do not need an entry under render kit.
    <component>
    <component-type>com.mycompany.hello</component-type>
    <component-class>view.components.msg.HelloUIComp</component-class>
    </component>
    Finally, you will need to create (or append to) a tag library
    ================== myTest.tld ====================
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <taglib xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
    version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee">
    <display-name>tests</display-name>
    <tlib-version>1.0</tlib-version>
    <short-name>tests</short-name>
    <uri>http://mycompany.mil/tests</uri>
    <tag>
    <name>hello</name>
    <tag-class>view.components.msg.HelloUICompTag</tag-class>
    <body-content>JSP</body-content>
    </tag>
    </taglib>
    =============================================
    Notice you don't need a custom renderer class. The component is self-redering.
    To use the component, create a myTest.jspx file like the following:
    ============ myTest.jspx ===============
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces"
    xmlns:mebs="http://mycompany.com/tests">
    <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
    doctype-system="http://www.w3.org/TR/html4/loose.dtd"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <afh:html>
    <afh:head title="Testing Components">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    </afh:head>
    <afh:body>
    <h:form>
    <af:panelPage title="My Component Test">
    <f:facet name="menu1"/>
    <f:facet name="menuGlobal"/>
    <f:facet name="branding"/>
    <f:facet name="brandingApp"/>
    <f:facet name="appCopyright"/>
    <f:facet name="appPrivacy"/>
    <f:facet name="appAbout"/>
    <!--
    Well, this is a bad place to put our component
    This will render a <af:form> within the above <h:form>
    Should be placed outside the h:form or edit the component and remove the form
    -->
    <mebs:hello/>
    </af:panelPage>
    </h:form>
    </afh:body>
    </afh:html>
    </f:view>
    </jsp:root>
    ===================================
    Hope this helps you.

  • JDeveloper 11.1.2.3, ADF Faces: need declarative component idea for table

    Some background:
    I'm trying to create a reusable toolbar for standard af:table behavior, see screen shot
    http://wesfang.files.wordpress.com/2013/05/dc.jpg
    I got the idea from the from using documentation Frank has published in the past
    1. http://www.oracle.com/technetwork/developer-tools/adf/learnmore/001-access-declarative-comp-attr-169113.pdf
    2. Adding a new row programatically
    The consuming subsystem's page passes in a "MyPageBean" which is a subclass of a "ArchBean" where all actionlistener operations are defined. The idea here is to minimize developer customization when using this component.
    ... <f:facet name="toolbar">             <af:toolbar id="t2">                 <mskcc:basicTransactionToolbar id="btt1" pageBean="#{MyPageBean}" tableId="t1"/>             </af:toolbar> </f:facet> ...
    The table within the consuming page is by default dropped off as a "editable" table. The developer needs to further modify the "disable" attribute to true for all the input fields and command components within the table. I would like to remove this developer step and instead have it in an architectural component. All ideas are welcome.

    Ok, finally got it working (sort of)
    Using the following method as you suggested:
    public void encodeChildren(FacesContext fc){
            try {          
                super.encodeChildren(fc);
                RichTable table =
                    (RichTable)ADFFacesUtil.findComponentInRoot((String)this.getAttributes().get("tableId"));
                lockUnlockTable(table); //method for toggling disable attribute for all command and input components
            } catch (IOException e) {
                e.printStackTrace();
    }Now the strange problem I encountered is that the encode methods are not called if the declarative component is defined within a panelCollection's f:facet-toolbar like below:
    <f:facet name="toolbar">
                        <mskcc:basicTransactionToolbar id="btt1" tableId="t1" pageBean="#{TestBean}"/>
    </f:facet>Also the above code has to be manually created because the design time editor does not allow me to drop off the dc within the toolbar facet (even though the dc is a toolbar!)
    Instead, If I move the dc outside the panelcollection, then the encode methods are invoked and the desired enable/disable behavior is correctly displayed.

  • Mozilla Firefox problems with the forums

    I just spent an hour trying to access the forums when using Firefox 12. It does not display the bar with the New Your Stuff history etc. It updated itself yesterday or the day before and since then it is impossible to use on this forum.
    I just had a thought and tried IE9 64 bit and it works OK. Loaded the same url on Firefox and the bar with the welcome username was not there.
    It shows that I am logged in under the search box but still asks for me to log in. I even contacted Customer support, but they could not help.
    So if you have problems accessing the forum, use a different browser.

    I tried to log in on the page and it would not accept my password as I was already logged in to Adobe. A new password made no difference, it still would not accept the password and username. Logging in with IE9 was no problem.
    Normally when I click on the adobe forums link on the Dreamweaver help  I am sent to http://forums.adobe.com/community/dreamweaver?lang=en_US  on my default browser - Mozilla. For some days now I have not been sent there, but arrive on the Adobe main page, and have to search for the forums using their search feature. Perhaps there was a crossed or broken link?
    However, today for the first time for a while, it seems to be all working fine. I did report the problem to Mozilla, but whether they did anything I do not know at the moment.
    I will see if this continues to work properly and report back.
    Best wishes
    Howard

  • Javascript Mozilla Firefox problem

    == Issue
    ==
    I have feedback about Firefox or would like a new feature
    == Description
    ==
    netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite"); window.open('','_self'); window.close(); unable to trigger force close.
    Hello Sir/Madam,
    In a simple example as shown below:
    Detecting browser close in IE
    function ForceCloseWindow()
    if(navigator.appName.toLowerCase()=="netscape")
    netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite");
    window.open('','_self');
    window.close();
    else
    try
    window.open("","_self");
    window.close();
    if(window || window.focus)
    window.focus();
    catch(e){
    window.open("","_parent");
    window.close();
    This works flawless. But when I incorporate it in my JScript.js big project and call the javascript function ForceCloseWindow() it did not work :c
    Error message of e.toString() states that 'A script from "http:" was denied UniversalBrowserWrite privileges.'
    My question follows. How can I programmatically enable UniversalBrowserWrite privileges.
    Thank you. Please advise.
    I still love firefox from all the browsers..
    Thanks Thanks.
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    XP
    == Plugins installed
    ==
    n/a

    This issue can be caused by the McAfee Site Advisor extension
    *https://community.mcafee.com/message/203466
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • ADF Faces - Using ProgressIndicator Component as a Process Indicator

    Hi, I'm working on JDeveloper 10.1.3.2.0 and I'd like to know if there is an example anywhere for the next case:
    I have 2 jspx pages: one is a form with search fields. The other one is a table with the results of the search.
    I made some tests with both Poll and ProgressIndicator so that, when the user clicks the "Search Button", the clock of the ProgressIndicator component appears (just the clock) and, when the search is over, the application redirects you to the results page.
    I had to use javascript and I almost got it, but there's a problem. Once you're in the results page, if you click the "Back" button of the browser, the clock appears as if you're requesting the search again (but you're not, of course)
    Do you know if there is a simpler way to achieve this solving this last problem and without javascript code?
    Thanks in advance

    Hi,
    you can use the JavaScript on the target page in an onLoad statement to delete the browser history. This way the back button doesn't work at all. I received a mail from another customer who did it that way
    Frank

  • Mozilla Firefox problem

    Heres the url:
    http://www.knexgensolutions.com/
    This site works fine in IE, but in Firefox the last button
    drops to another line below and increases the table height. I need
    all the buttons to remain on the same line. Help would be greatly
    appreciated.

    Hello,
    I think the breaks in FireFox and Safari have something to do
    with the merged cells to the right of the horizontal menu.
    To be honest, it's hard to decipher the code because of all
    the colspans, rowspans and spacer images that "Layout Mode" or
    another "image to web" app bloats the code with. (I'm assuming you
    didn't merge all those cells and add all those spacer images
    yourself)
    If you search this forum for colspan or rowspan or Layout
    Mode, you'll find literally hundreds of threads with these types of
    issues and people describing very similar problems.
    Here's some good info on some of the trouble it causes and
    why.
    Spans are Evil
    You might want to redesign the structure using tables and
    nesting tables within cells instead of merging cells.
    You could also do this using divs. Either way, you can use
    CSS to control positions, spacing and so on, as well as using
    background images instead of slices of images in adjacent cells
    that break with an unstable layout.
    If you want to stick with tables, you could easily create the
    same layout design with one large table that has 1 column and 5
    rows, then a couple of nested tables inside two of the rows. One
    for your vertical nav and one for the horizontal.
    You could also use text with CSS for your navigation and have
    the exact same look without all the javascript and rollover images.
    It would be a huge decrease in size of the page (k) which means a
    faster download, and the search engines being able to index the
    text. They can't read images.
    Here's some great info on how to do that if you're
    interested:
    Listomatic
    and
    Project
    Seven's Uberlinks
    I wish I could have pointed out the specific thing the other
    browsers are choking on, but again it's really hard to troubleshoot
    that code. I hope this helps a bit.
    Take care,
    Tim

  • Hotmail and Mozilla firefox problems

    Lately I have been having a lot of problems using these. The reply function in e-mail doesn't work at all. I was using Entourage and that was better but it has slowed down a lot as well. I would rather not use Safari as my Hotmail browser as it only allows the slower version.
    Please help I am ready to give up on my Hotmail account.

    You could try some basic maintenance if you haven't already done so:
    /Applications/Utilities/Disk Utility: "verify disk" -> if OK -> "repair permissions"
    In Firefox: clear the cache, history, cookies; try disabling all extensions and, if that helps, re-enable one-by-one or in sets to eliminate problems.
    Does the problem occur in other accounts? Create a test account in the Accounts pane of System Preferences.
    Does the problem occur if you start up Firefox in "safe mode"?
    - cfr

  • ADF Faces af:showOneTab

    Iam trying to do iteration in for <af:showDetailItem >, getting error invalid parent element for af:showDetailItem
    <af:showOneTab position="above" >
    <af:iterator var="foo" value="#{fooBean.model}">
    <af:showDetailItem text="#{foo.value}"/>
    </af:iterator>
    </af:showOneTab>
    Please advise what Iam doing wrong

    I have this requirement too,
    I am looking for something like
    showOneTab.setSelectedTabIndex(2);
    but I could not find such a method in the API. Is there a method or a workaround for this functionality?
    Thanks in advance,
    Regards,
    Turgay Zengin

  • ADF FACES: af:selectBooleanCheckbox with simple="true" problems

    I have an af:selectBooleanCheckbox tied to a simple boolean model value. It has a partialTrigger set for another field and its simple property is set "true." In this configuration, a change in the field identified by the partialTrigger does NOT cause the checkbox to re-render. From debug messages, I can see that the value is being properly fetched from the model, but the rendered state is not changing (meaning when the underlying boolean value changes, the checkbox state is not changing).
    Here are the two controls in question (note in this example the value of the caller.nonMember boolean is simply a test of caller.memberId == null):
    <af:selectBooleanCheckbox text="Non-member" simple="true" value="#{pageFlowScope.newCase.caller.nonMember}" partialTriggers="callermemberid"/>
    <af:inputText label="FHM Member Id:" value="#{pageFlowScope.newCase.caller.memberId}" columns="10" binding="#{newReferralCase.compCallerMemberId}" id="callermemberid" autoSubmit="true"/>
    If I change "simple" to "false," then the check box properly re-renders on each change in the member id field.
    Is this expected behavior when simple=true? I didn't expect a behavior change based on the documentation which just states that the message and label sub-components will not be used.
    Thanks.

    It's not expected behavior, and I can reproduce it. I've filed a bug; thanks for the report.

  • Panel Page in ADF Faces using Facelets not rendering correctly

    Hi, I am attempting to integrate facelets into a web app built using adf faces and am running into a problem with the panel page component. I have integrated facelets and adf faces without any problems by adding relevant jars (jsf-facelets and adf-facelets) to the project and specifying alternate facelets view handler in web.xml.
    However, when I try to render any component inside <af:document> or <af:html> tags, all the font style in components seems to be lost ( all the text and input fields turn large and ugly!).
    I tried to leave out the <af:document> tag and put the <f:view> inside some vanilla html instead, but then panelPage component dosen't render properly and I get following message on top of page :
    "Skip navigation elements to page contents"
    So seem to be in a bit of a catch 22. By the way, this all works fine if I don't use facelets (remove the facelets view handler from web.xml and page renders correctly).
    Does anyone have any ideas or examples of panelPage rendering correctly with facelets or an alternative to using adf faces html tags that will allow panelpage to be displayed?
    The following is the code from a simple test jspx page :
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces"
    xmlns:c="http://java.sun.com/jsp/jstl/core"
    xmlns:ui="http://java.sun.com/jsf/facelets">
    <f:view>
    <af:document>
    <af:form>
    <af:panelPage title="Title 1">
    <af:panelHorizontal>
    <af:panelGroup layout="vertical">
    <af:outputLabel value="Username"/>
    <af:inputText id="lo_username" value="" columns="20"/>
    <af:objectSpacer width="1" height="10"/>
    <af:outputLabel value="Password"/>
    <af:inputText id="lo_password" secret="true" value="" columns="20"/>
    <af:objectSpacer width="1" height="15" />
    <af:panelHorizontal>
    <af:objectSpacer width="50" height="1"/>
    <af:commandButton id="lo_loginButton" text="Login"/>
    </af:panelHorizontal>
    </af:panelGroup>
    <af:objectSpacer width="50" height="1"/>
    <af:panelGroup layout="vertical">
    <af:outputLabel value="Please use your windows account username"/>
    <af:outputLabel value="and password to logon to the system"/>
    <af:objectSpacer width="1" height="50"/>
    </af:panelGroup>
    </af:panelHorizontal>
    </af:panelPage>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

    The problem was the <jsp:root> tag. Removed this tag and modified <af:document> to the following so that namespaces are declared :
    <af:document xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
    xmlns:ui="http://java.sun.com/jsf/facelets">
    Page now renders properly using facelets.
    Message was edited by:
    mjc

  • ADF Faces -- Input Text

    Hello all
    I am developing a GUI using ADF Faces and I have only one problem left in my jsp. I use an Input Text with its "readOnly" attribute set to true to show some values in the screen and it works just fine, but now I need to input the values shown in the InputText field.
    I mean...i need to show a value in the InputText field and i must be able to update this value. What i did is set the attribute "readOnly" to false and add a binding Attribute. But i got an error saying that it's not possible to have a "readOny" and "binding" Attribute at the same time and it seems to be logical it the readOnly where set to TRUE, but it's set to false so I can't see why i am wrong.
    I put here the code for the input Text. I wonder if someone know what's the issue or another way to do what i am trying to do
    <af:inputText label="#{bundle[\'showResults.refTexto\']}"
                                    binding="#{mostrarResultadoDiagQuery.descripTexto}"
                                    rows="1" readOnly="false" rendered="true"/> I am using Jdeveloper 10.1.3.4
    Thanks to all, thanks in advance
    Edited by: Jose Miguel on Dec 15, 2008 8:42 AM

    Hello again
    I've been doing some testing but I still have the original problem.
    I have tried getting the entered text in another been but i still get the same problem.
    I do have getter and setters methods for the attribute where i update the values.
    The message i get is the following
    javax.faces.el.EvaluationException: javax.faces.el.EvaluationException: Error getting property 'result' from bean of type mx.com.uaem.htb.sspoc.portal.managed.DiagQueryBean: java.lang.NumberFormatException: null
         at com.sun.faces.el.ValueBindingImpl.isReadOnly(ValueBindingImpl.java:293)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:211)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.wasSubmitted(EditableValueRenderer.java:109)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.decode(EditableValueRenderer.java:48)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.decode(InputLabelAndMessageRenderer.java:34)
    Caused by: javax.faces.el.EvaluationException: Error getting property 'result' from bean of type mx.com.uaem.htb.sspoc.portal.managed.DiagQueryBean: java.lang.NumberFormatException: null
         at com.sun.faces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:109)
         at oracle.adfinternal.view.faces.model.FacesPropertyResolver.getValue(FacesPropertyResolver.java:92)
         at com.sun.faces.el.impl.ArraySuffix.evaluate(ArraySuffix.java:187)
         at com.sun.faces.el.impl.ComplexValue.isReadOnly(ComplexValue.java:204)
         at com.sun.faces.el.ValueBindingImpl.isReadOnly(ValueBindingImpl.java:266)
    Caused by: java.lang.NumberFormatException: null
         at java.lang.Integer.parseInt(Integer.java:415)
         at java.lang.Integer.parseInt(Integer.java:497)
         at mx.com.uaem.htb.sspoc.portal.managed.DiagQueryBean.getResult(DiagQueryBean.java:56)
         at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:99)
    Thanks for all your help

  • Creating Tabs in ADF faces

    Hi,
    We want to use ADF faces, jsp with Jdeveloper 10.1.3
    The front end application needs to have tabs. Is there any example or documentation that can help us achieve that.
    Thanks

    Check out the SRDemo application for and the ADF Developer Guide.
    Specifically you might be interested to learn more about the ADF Faces panel page component:
    http://download.oracle.com/docs/html/B25947_01/web_getstarted004.htm#CHDIABDE

Maybe you are looking for