No Event is working on Page

Hi guys,
I have a Adf Page in which i am using region when my page opens no event is firing on it neither row select nor any button click event
its my Main Page
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
<af:document id="d1" title="Get Buyer">
<af:form id="f1">
<af:panelStretchLayout topHeight="92px" id="psl1"
styleClass="AFStretchWidth"
centerLandmark="main">
<f:facet name="top">
<f:verbatim>
<img height="83" width="161" src="../companyLogo.JPG"/>
</f:verbatim>
</f:facet>
<f:facet name="center">
<af:region value="#{bindings.company.regionModel}"
styleClass="AFStretchWidth" id="r1"/>
</f:facet>
</af:panelStretchLayout>
</af:form>
</af:document>
</f:view>
</jsp:root>
any idea why it happens ? My jdev Version is 11.1.1.5
Thanks
Rahul

Hi,
1. your code snippet doesn't contain table, tree or treeTable --> thus no row select
2. Your code snippet doesn't contain a button --> thus no button click event
At the moment I think your question doesn't contain the information it would need to provide you with a better answer
Frank

Similar Messages

  • OnChange Event not working when portlet is opened in Page

    The onChange event is working well in a Portlet. When a user selects a value from an LOV it is updating other LOVs. However, when that portlet is brought into the main page, the onChange event only resets the page. Is there a workaround for this?

    Hi Jerry,
    Iam also facing the same problem ....were you able to get solution ..if yes plz share...
    When I Clikced on Add Macros button in Workbook Settings ,i was able to access the buttons ..but once i close and open the workbook iam again getting the same error..
    Iam not able to Save the Workbook settings afte Clicking on ADD Macros...
    Regards,
    Ravi

  • Page numbers not working in pages

    Help!
    I'm working on a document that will be 100+ pages, printing it double sided to be bound together. I would like to have the pages numbers listed in the footer on the outside of the page as well as some text in the center of the footer. Working with Pages '09 version 4.1.
    I have "facing pages" selected. "Left and Right pages different" selected. "Use previous headers and footers" selected. I selected "Insert Auto page numbers" and told it to put them on the outside.
    The problem - only some pages have the numbers on the outside like I selected. Pages 1-12 have the page numbers are all left justified. Pages 13-16 are correct. Pages 17-23 have the page numbers are all left justified. So on and so forth. There is no rhyme or reason why some of these are different. I do have different sections in the document - but sometimes it's in the middle of the section that it decides to change the formatting on me.
    On top of that, I added the text I wanted in the center. On some pages it's there, others it isn't. And again, no rhyme or reason as to why. Sometimes, the page numbers ARE in the correct place, but the text IS NOT there. Sometimes the page numbers ARE NOT in the correct place, and the text IS there. Leaving me with very few pages that are 100% correct.
    The only thing I have going for me at the moment is that every page has a page number on it! I suppose that's something. And I believe I know how to go in and change the footers individually. But, like I said, this will be 100+ pages, I'd really like to just do it once, not individually for each page.
    Help please! Thanks!

    Hello black94,
    Ok I can load the WinForm project and know part of your game, although I'm not so sure how to play the game. I cannot understand your language.
    When I checked the WPF project it seems you build the UI with WPF and only write events here, I haven't find binding related xaml code. Anyway, can you quote the problem or code about how you insert the white cell in WPF?
    For the printPreviewDialog, I see you already asked about this question before:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/ee97efd9-9245-4972-8576-a5230fb520e7/printpreviewdialog-in-wpf?forum=wpf
    So the following place is where the error raised?
    PrintDocument printdocument = new PrintDocument();
    System.Windows.Controls.PrintDialog printDialog = new System.Windows.Controls.PrintDialog();
    System.Windows.Forms.PrintPreviewDialog printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
    //this.printPreviewDialog1.Document = this.printDocument1;
    Regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • FormLoad Event Not working

    I am making an addon on 2007 B PL 10 using BDE 1.5. It show a problem in form load event. I made a form using Screen Painter with a combo box. I want to store some values in combo box at time of form load. When I load form it show an error. "Item invalid-id". I changed the item code many times but it show same error. I also try on different textbox, but error is same. When i try on "Item Press event" it work fine. so I think there is problem in form load. I try on "Before Action" true and false both. but no solution. plz give your sugestion what event will work for stroing default value in combo box.
    Thanks
    Regards
    Gorge

    Hi Praveen,
    should work the same way, just tested:
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <%@ page import="com.sapportals.htmlb.TreeNode"%>
    <hbj:content id="contentID" >
      <hbj:page title="pageTitle">
        <hbj:form id="formID" >
          <% String month_id = "January"; %>
          <% String act_id = "Activity"; %>
          <% String subAct_id = "SubActivity"; %>
          <hbj:tree
            id="S_Tree"
            title="2003"
          >
            <hbj:treeNode
              id="<%= month_id %>"
              text="<%= month_id %>"
              isOpen="true">
              <% ((TreeNode) pageContext.getAttribute(month_id)).setOnNodeClick("eventMethod"); %>
              <hbj:treeNode
                id="<%= act_id %>"
                text="<%= act_id %>"
                isOpen="true">
                <% ((TreeNode) pageContext.getAttribute(act_id)).setOnNodeClick("eventMethod"); %>
                <hbj:treeNode
                  id="<%= subAct_id %>"
                  text="<%= subAct_id %>"
                  isOpen="true">
                  <% ((TreeNode) pageContext.getAttribute(subAct_id)).setOnNodeClick("eventMethod"); %>
                </hbj:treeNode>
              </hbj:treeNode>
            </hbj:treeNode>           
          </hbj:tree>
        </hbj:form>             
      </hbj:page>
    </hbj:content>
    In the event method you can ask which node has been selected:
    TreeNodeSelectEvent ev = (TreeNodeSelectEvent) event;
    String selectedNode = ev.getNodeKey();
    Hope it helps
    Detlev

  • TFS 2012 - WebAccess - how to define which Query will run by default when navigating to WORK- WorkItems page

    When we nagivate in IE in TFS Web Access, to the WORK -> Work Items page, TFS runs the AssignedToMe query and focuses on it as sort of default query that runs in such event. We have some teams under the team project, but AssignedToMe is not sensitive
    to Team, only to Team Project, hence when navigating to the page of the specific team, this query shows the same per all teams :(.
    In order to bypass this, we'd like to set a specific team query to be the default one to run when navigating to the team's page, instead of AssignedToMe, and thus have the result specific to each team scope.
    Alternatively if it is possible to somehow filter AssignedToMe query according to Team Scope it would be great. Alas there's no @Team field yet, and we don't wish to create multiple AssignedToMe queries and name each specific to each team, nor do we wish
    to put team queries in MyFavorites while naming them specifically per team..
    Kindly advise, thank you

    Hi Moital,  
    Thanks for your post.
    As far as I know there’s no default way to the default query(AssignedToMe) in Work Items page, we usually add uses in different teams. If the user want to view the work items in one specific team, he can create a my query to filter work items according team
    field value.
    Yes, as you said there’s no @Team value in Team field to filter current team’s work items in work item query, so if you want create the shared query according team values, you need create this shared query for each team.
    For the Team field, please refer to the information in this document:
    https://msdn.microsoft.com/en-us/library/dn144940(v=vs.110).aspx.
    For this scenario, you can submit it to User Voice site at: http://visualstudio.uservoice.com/forums/121579-visual-studio. Microsoft engineers will evaluate them
    seriously.  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • COM Events not working

    I have a servlet that is accessing a COM object. It issues commands to the
    COM object, and some time later, events are supposed to fire into the Java
    class to update some info. Well, the updates are not happening. Any
    thoughts?
    Some info:
    class Connection is the implementation (proxy) of the COM object.
    class CLServer is my code that implements _IConnectionEvents (the COM-event
    interface). It also calls methods on Connection, especially
    Connection.add_IConnectionEventsListener(this)
    As I said, this is all running under weblogic (running as a service) as a
    servlet. The calls out to COM succeed, but the asynchronous calls back in
    don't.
    Thanks,
    Jeff

    Does anybody have COM-to-Java event callbacks working???
    Kinda frustrated with feedback (lack thereof) from this group.
    Jeff
    "Jeff Muller" <[email protected]> wrote in message
    news:3d10affd$[email protected]..
    Actually, when I try and register my event listener, I get an
    AutomationException (0x80040202). Anybody know what that's about?
    Jeff
    "Jeff Muller" <[email protected]> wrote in message
    news:[email protected]..
    By the way, I found the problem.
    The COM object I was using was actually posting Windows messages to
    itself
    to fire the events. Of course, the JVM isn't running a message loop, sothey
    never got handled, therefore, no events got fired. I had to write awrapper
    COM Server (exe) with a message loop that instantiated the object that I
    really wanted. Of course that led to other problems that I post about in
    another message above! :-)
    Jeff
    "Jeff Muller" <[email protected]> wrote in message
    news:3cf678e6$[email protected]..
    I have a servlet that is accessing a COM object. It issues commands to
    the
    COM object, and some time later, events are supposed to fire into theJava
    class to update some info. Well, the updates are not happening. Any
    thoughts?
    Some info:
    class Connection is the implementation (proxy) of the COM object.
    class CLServer is my code that implements _IConnectionEvents (theCOM-event
    interface). It also calls methods on Connection, especially
    Connection.add_IConnectionEventsListener(this)
    As I said, this is all running under weblogic (running as a service)
    as
    a
    servlet. The calls out to COM succeed, but the asynchronous calls backin
    don't.
    Thanks,
    Jeff

  • How Can I Create an Event Link to a Page Tab?

    I have a portlet in one tab that generates an event. I want to be able to send this event to the same page but to another tab where another portlet resides. Here's the code snippet that creates the link. This code is part of a custom JSP tag.
    // Attempt to get access to the portlet render request to determine if we are within a portal context.
    PortletRenderRequest prr = (PortletRenderRequest) pageContext.getRequest().getAttribute(
        HttpCommonConstants.PORTLET_RENDER_REQUEST);
    if (null != prr)
        try
            // Set up the parameters used for the link.
            NameValue[] eventParameters =
                new NameValue("linkUrl", linkUrlParamValue)
            // Construct the link parameter we will be using.
            linkUrl = EventUtils.constructEventLink(prr, "linkClicked", eventParameters, true, true);
        catch (PortletException e)
            // Error processing removed...
    }This code will generate the event correctly and all processing occurs as expected. However, I cannot find a way to force the second tab to display.
    I am able to force the the second tab to be displayed if I use "Direct Access URLs". These links are in the form
    [protocol]://[host]:[port]/pls/portal/url/page/[page_group_root_page_name]/[tab_name]
    But is there a way to create an event link using a specific URL?

    Hi,
    One workaround that i can think of is:
    1. Set the <passAllUrlParams>true</passAllUrlParams> attribute in your provider.xml of the portlet on the target page/tab.(dont forget to refresh the provider)
    2. If you already have the url to the tab, then you just simply construct the form in your previous portlet to post to that url with all the necessary form fields.
    3. Process the request parameters and render the second portlet.
    hope that helps.
    thanks,
    Harsha

  • Is there any way to insert a pop up calender and tick boxes into pages on the ipad? And if not if I do it on a mac will the document work on pages on the ipad?

    Is there any way to insert a pop up calender and tick boxes into pages on the ipad? And if not if I do it on a mac will the document work on pages on the ipad? I'm trying to set up a document with quick check boxes to tick and a date to choose rather than type? I know it possible to do it on pages on a mac but i haven't been able to find anything on the ipad to create such a thing, and I don't know if it will work on the ipad if I create it on the mac

    RGA,
    Unfortunately, I do not believe that it is possible for a DAQ board to generate an AI Start Trigger from an analog trigger, but not be triggered itself until it receives a digital trigger.
    Spencer S.

  • My "Group" feature is not working in Pages 5.0.1. Any help here?

    My "Group" feature is not working in Pages 5.0.1. Any help here?

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • My keyboard is not working in "Pages" but works with all other applications.  Please provide resolution advice.

    My keyboard is not working in "Pages" but works with all other applications.  Please provide resolution advice.

    What version of Pages?
    There are one or two of us here who are not intimately acquainted with your particular set-up.
    Peter

  • Working in Pages a folder with the Pages icon in a folder appeared on my desktop  I cannot move it delete it do anything to it. Any idea what it might be? Thank you.

    While working in Pages a folder appeared on my desktop with the Pages icon on it. I don't know how it got there. It will not let me move it on the desktop. I will not let me delete it. It will not let me do anything to it. Any idea what I might have done to create this alien?
    Any help greatly appreciated with thanks in advance.

    Restart Finder by pressing option +  command + Esc. Select Finder int he window that pops up and click on the Start/restart button.
    You could also try deleting the com.apple.finder.plist file from Users > your name > Library > Preferences
    Restarting the computer in safe mode , press the Shift key just after you heard the start chime. Keep it pressed until you see the grey apple. See if the folder is gone or can be moved.

  • How do I get my work from pages 08 to work on the latest pages version?

    how do I get my work from pages 08 to work on the latest pages version?

    Save to a USB what?  What USB device are you using?  Is it showing up on the desktop?

  • Apple Remote Events Not Working

    I have an internal drive with OS X Client 10.3.9 and a fresh install of the same OS X Client on an external hard drive. Apple Remote Events, though turned on in System Preferences, does not function across my local network when booted on either of these drives.
    With a 2nd internal drive, I've got OS X Server 10.3.9 and when booted under this OS version, Apple Remote Events works as it should.
    Any ideas how I can enable the proper functionality of Apple Remote Events on OS X Client?
    QuickSilver Dual 1GHz   Mac OS X (10.3.9)  

    I have discovered that an apostrophe character in the machine name created a mismatch between the network identity name and the actual name. "Ken Goff's Computer" was converted to "Ken-Goffs-Computer.local" by OS X 10.0 when I first set up my computer.
    Changing the computer name to anything without the apostrophe and then editing the network name substituting dashes for spaces between words in the name fixed it.
    Remote Apple Events now works across the network.
    QuickSilver Dual 1GHz   Mac OS X (10.3.9)  

  • I am working in Pages and am trying to have the same footer on every page ?I went into View/Layout and typed in footer text  in the space but it only appears on first page and not any subsequent pages? Thank you.

    I am working in Pages on a report and trying to have the same footer on each page. I went to View/Layout, followed instructions, but the footer text only appears on the first page and not any subsequent pages? What should I do differently please? Thank you., Elisabeth

    Help is in the Pages forum.

  • Font not working in Pages for iPad

    When I create a MS Word 2010 document using the Arial Font, I then email myself the document and then open it Pages.  Once it opens, I get a message saying "This document may look different on your iOS device.  The font Arial isn't available on iOS.  It was replaced with ArialMT."  I have tried uninstalling and then reinstalling pages to see if something was wrong with the program, but it does the same thing.  I have also connected my iPad to my computer and uploaded the document via iTunes, but I still run into the same issue. I am currently running iOS 6.1.3.
    This is weird because I looked up supported fonts for iOS 6 and Arial is one of them.  Once it "converts" Arial to ArialMT, I go into the document to check which font is uses and it is listed as "Arial".  I am confused on why it does not have Arial, throws an error message, but then uses Arial.  Anyone experience the same thing and know how to fix it?

    Justin_WX wrote:
    So on the list it says Arial http://support.apple.com/kb/ht5484 which is a font from Apple, which is different from Microsoft, but are named the same...
    Is there a list of Microsoft Fonts that will work with Pages?
    Are you actually seeing a noticeable difference in the fonts after conversion? While there are some difference between those fonts, they are very subtle differences and in all likelihood will not really change the look of the document.

Maybe you are looking for

  • 1 Mac & 1 PC using iTunes with same account: download purchased?

    I have two computers: one a Mac (running OS X) and another a PC (running Vista). Using the same iTunes account, I've purchased music on both computers. However, when I go to "purchased" on each computer it only shows that purchases I've made on each

  • Vendor Account have Debit balance  then stop to create  PO (Purchase Order)

    Dear  SAP Guru, If the  Vendor  Account have  debit  balance  then  stop to  create PO (Purchase Order). How to stop to  crerate PO?How to link PO with  Vendor  Acoount (FBL1N)? How  Vendor balance  Count? regards, Rupang shah

  • Photo's out order when burned to disc

    Hi, my photo's are in numbered order in the library but when burned to disc are all random, they have been edited from 3 cards and saved as a smart colllection, how can I get them to burn in order as library shows them !! thanks steve

  • LCM - Promotion of a Crystal Report

    Hello together, I am trying to promote a Crystal Report object from a dev system to a production system. Therefor I created a promotion job (Source- and Destination System are configured). The problem which I have is, that when I am trying to add the

  • Error code 150340

    I keep getting error code 150340 when installing Acrobat reader.