Duplicate custom component link when used in panelPage

Hi Guys,
I created a custom component, pretty simple component, just to create a list of links, something like :
Community Discussion Forums » Developer Tools » JDeveloper
It works fine in other pages, but when I use it with panelPage, panelPage automatically adds another link on the bottom of the page, and each time I refresh the page, the links keep repeating itself ... (behaviors kind of like the facet nemu1 links being added in the bottom)
How can I avoid this behavior? (maybe set some attribute in panelPage?)
Would really appreciate any help!

Hi,
how does the page source look ?
Frank

Similar Messages

  • HT1277 Cannot open links when using Safari (will open in Chrome). Anybody have an idea? Settings??

    Cannot open links when using Safari (will open in Chrome). Anybody have an idea? Settings??

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • How do images embeded in InDesign link when using Creative Cloud on more than two desktops?

    How do images embeded in InDesign link when using Creative Cloud on more than two desktops?

    If I am understanding your question correctly, you shouldn't have to worry about embedded images in InDesign. Once embedded, the image is stored within the file.
    If you are wondering about linked images... InDesign will follow the path on your computer and, if it does not find the image, you will recieve a notification. Edit: To prevent this, I would suggest packaging your file using File > Package... This will create a folder with all of your fonts and linked graphics so that you need not worry about broken links.  I just remembered that you cannot upload folders directly to Creative Cloud so a packaged folder wouldn't be very helpful unless you wanted to upload each file manually.
    The best solution I see right now is to either embed the graphics in the document, or upload the images with your document to relink.
    I hope this helped,
    Michael

  • Creating a custom component in multisim using *.lib and *.olb files

    i have  *.lib and *.olb files for a pspice model. which file i have to you while creating a custom component in multisim.

    Hello,
    Thanks for your question. In order to create simulatable custom components in Multisim you need a SPICE model (Multisim can also understand PSpice Models). The file format for SPICE model can be different according to the manufacturer, for instance: *.cir, *.lib, *.llb. At the end of the day these files are text files that you can open with a text editor, therefore, you can simply copy and paste the model in Multisim.
    Here are two good resources on component creation:
    Component Creation 101
    Creating a Custom Component in NI Multisim
    When you reach the step where you need to enter the SPICE model, simply open the *.lib or *.olb file with a text editor, and copy and paste the model.
    Hope this helps.
    Fernando D.
    National Instruments

  • Links when using Templates don't work in preview

    I have created a template for the 'traditional' top banner,
    left navaigation buttons site. In preview mode, any links
    (navigation area or not) that point to another page in the web site
    do not work, but external links go. (No error is reported, but
    nothing happends) However, when published, all links work. Any
    ideas what is happening?
    Eample link:
    <a href="../catalog.htm" target="_self"><img
    src="../_derived/catalog.htm_cmp_edge000_vbtn.gif" width="140"
    height="34" border="0" alt="Catalog &amp; Renewal"
    /></a><br />
    The graphic does appear for the link.
    If it makes any difference, this is a convert FrontPage site
    where I manually edited the html to import the pages into my first
    Dreamweaver site.
    Thanks in advance,
    Carolyn Wood

    > In preview mode, any links (navigation area or not) that
    point to
    > another page in the web site do not work,
    This is how DW will work if you are using ROOT RELATIVE
    links, *and*
    temporary files to preview.
    Here's an example -
    * I create a page with a link to an image -> <img
    src="/images/foo.gif">
    (note that the image link is a root relative link - the path
    says to go to
    the
    root of the site and look for the images folder because of
    the leading
    slash)
    <img src="/images/foo.gif" (that's root relative - it
    starts with the root
    of the site)
    <img src="../images/foo.gif" (that's document relative -
    it starts with the
    current location of the document)
    * I preview that page with DW (since I am using temp files,
    DW is kind
    enough to realize that root relative links won't work in a
    preview, and so
    it converts them to document relative links when it builds
    the temporary
    file for the preview) -> <img
    src="../images/foo.gif"> (I'm assuming that
    your document is one level below the root of the site). In
    the preview,
    this page looks fine because the browser has no trouble with
    the document
    relative link - it knows where the file it just opened is,
    and can follow
    the path to the image).
    * I then click on a link in the previewed page to another
    page that also has
    ROOT relative linked images --> <img
    src="/images/bar.gif"> and suddenly
    the image does not load.
    Why? Because when you click away from the temp file DW just
    built for you,
    you have lost the benefit of the automatic conversion that DW
    does with
    root relative links, and the browser looks for this new image
    starting from
    the root of the hard drive, not the root of your site.
    The solution is to not use root relative links, and to change
    all your
    existing ones to document relative.
    To read more about this, go here -
    http://www.macromedia.com/support/dreamweaver/ts/documents/site_root_rel.htm
    http://www.macromedia.com/support/dreamweaver/ts/documents/document_vs_site.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "cwood_wdpl" <[email protected]> wrote in
    message
    news:[email protected]...
    >I have created a template for the 'traditional' top
    banner, left
    >navaigation
    > buttons site. In preview mode, any links (navigation
    area or not) that
    > point to
    > another page in the web site do not work, but external
    links go. (No error
    > is
    > reported, but nothing happends) However, when published,
    all links work.
    > Any
    > ideas what is happening?
    >
    > Eample link:
    >
    > <a href="../catalog.htm" target="_self"><img
    > src="../_derived/catalog.htm_cmp_edge000_vbtn.gif"
    width="140" height="34"
    > border="0" alt="Catalog &amp; Renewal"
    /></a><br />
    >
    > The graphic does appear for the link.
    >
    > If it makes any difference, this is a convert FrontPage
    site where I
    > manually
    > edited the html to import the pages into my first
    Dreamweaver site.
    >
    > Thanks in advance,
    >
    > Carolyn Wood
    >

  • How retrieve custom fields only when using SPListItemCollection?

    Hi with following code I am retrieving a DataTable from a List:
    using (SPSite site = new SPSite("http://..."))
    using(SPWeb web = site.OpenWeb())
    SPList oList = web.Lists.TryGetList("Serverliste");
    if(oList != null)
    DataTable dt = oList.Items.GetDataTable();
    This works fine. My problem is that I only want to get custom ListFields. When working with Fields one can simply call
    FromBaseType which will show if a Field is custom or not. The only value which seems right is
    IsCustomType. Though it is listed under Not public members, which makes it unaccessable via code for me, right?
    Well a dirty approach would be to iterate through ListFields, match them with DataColumns and check whether they are custom or not.
    Is there any clean, efficient solution for this? Is this possible using CamlQueries? If yes, how would that query look like?
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki

    Hi,
    To retrieve the custom fields, CAML query is incapable, do a iteration with SPField.FromBaseType or the SPField.SourceId property seems the only way at this moment.
    Thanks
    Patrick Liang
    Forum Support
    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]
    Patrick Liang
    TechNet Community Support

  • Dead links when using Safari.

    I first noticed dead links when trying to read "the Week in iOS Apps," on Macworld. I could go to the second view, but never past the second view. I solved the problem by switching to Firefox. the same thing happened on the Verizon wireless site when I tried to pay my bill.
    Should i make Firefox my primary browser? I have a habit of using Safari. Dead links shouldn't be a problem.

    You can try this. May help.
    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Uncheck the boxes beside  all items.
    Just check the box beside “Remove all website data”.
    Click "Reset".
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions

  • Project link when using AME to render AE comp?

    Adobe has suggested that we NOT use AE render queue to output file to MXF OP1a AVC-100 due to a bug in the format size . I rely on using the Project Link function when I did use the AE render queue. How do I get that function when using AME to export?

    That's not something that you can do with AME currently.
    If you rendered a master file from After Effects and then transcoded it in AME, you should be able to preserve the metadata from the master in the transcoded file output from AME.  Let me check to see if that works...

  • 'duplicate column name'-Exception when using identical objects

    Hi all,
    we're currently experiencing problems when using one single object instance for two different members of a mapped class. Here is an excerpt from our ToplinkMapping.java which shows the relevant parts:
    public ClassDescriptor buildQuotationDefDescriptor() {
    RelationalDescriptor descriptor = new RelationalDescriptor();
    descriptor.descriptorIsAggregate();
    descriptor.setJavaClass(de.hvb.ha.data.QuotationDef.class);
    // Descriptor Properties.
    descriptor.setAlias("QuotationDef");
    AggregateObjectMapping commonQtyMapping = new AggregateObjectMapping();
    commonQtyMapping.setAttributeName("commonQty");
    commonQtyMapping.setReferenceClass(de.hvb.ha.data.type.VolumeDT.class);
    commonQtyMapping.setIsNullAllowed(false);
    commonQtyMapping.addFieldNameTranslation("commonQty_value->DIRECT", "value->DIRECT");
    descriptor.addMapping(commonQtyMapping);     
    AggregateObjectMapping wideningQtyMapping = new AggregateObjectMapping();
    wideningQtyMapping.setAttributeName("wideningQty");
    wideningQtyMapping.setReferenceClass(de.hvb.ha.data.type.VolumeDT.class);
    wideningQtyMapping.setIsNullAllowed(false);
    wideningQtyMapping.addFieldNameTranslation("wideningQty_value->DIRECT", "value->DIRECT");
    descriptor.addMapping(wideningQtyMapping);
    well, if we now assign one object-instance of VolumeDT to both members, i.e. like:
    VolumeDT vol = new VolumeDT();
    quotationDef.commonQty = vol;
    quotationDef.wideningQty = vol;
    we end up in the mentioned SQL-Exception, because toplink produces the following SQL-Statement:
    UPDATE T_QUOTATIONTARGET SET WIDENING_QUANTITY = 0.0, WIDENING_QUANTITY = 0.0 WHERE …
    but we've expected something like:
    UPDATE T_QUOTATIONTARGET SET COMMON_QUANTITY = 0.0, WIDENING_QUANTITY = 0.0 WHERE …
    Any idea we can prevent this behavior and still use one object-reference for both members??
    Appreciate any help!

    Thanks for the reply but unfortunately the mentioned change didn't fixed the problem. The sql-statement produced by toplink still looks like the one mentioned above. Moreover, the mentioned change couldn't be managed by the Workbench (which we use in the project to create the mappings), could it?
    We currently use TopLink Version 10.1.3.3.
    Since you've asked I post the relevant parts of the Parent-Mapping (and again its Parent), so sorry for the verbose post:
    public ClassDescriptor buildQuotationORMWrapperDescriptor() {
    RelationalDescriptor descriptor = new RelationalDescriptor();
    descriptor.setJavaClass(de.hvb.ha.server.businessobjects.techapi.instrument.toplink.quotation.QuotationORMWrapper.class);
    descriptor.addTableName("T_QUOTATION");
    descriptor.addPrimaryKeyFieldName("T_QUOTATION.SEQ_KEY");
    // Descriptor Properties.
    descriptor.useSoftCacheWeakIdentityMap();
    descriptor.setIdentityMapSize(300);
    descriptor.useRemoteSoftCacheWeakIdentityMap();
    descriptor.setRemoteIdentityMapSize(300);
    descriptor.setSequenceNumberFieldName("T_QUOTATION.SEQ_KEY");
    descriptor.setSequenceNumberName("Quotation");
    descriptor.setAlias("QuotationORMWrapper");     
    // Query Manager.
    descriptor.getQueryManager().checkCacheForDoesExist();
    OneToManyMapping quotationDefsMapping = new OneToManyMapping();
    quotationDefsMapping.setAttributeName("quotationDefs");
    quotationDefsMapping.setReferenceClass(de.hvb.ha.server.businessobjects.techapi.instrument.toplink.quotation.QuotationDefORMWrapper.class);
    quotationDefsMapping.dontUseIndirection();
    quotationDefsMapping.privateOwnedRelationship();
    quotationDefsMapping.useCollectionClass(java.util.ArrayList.class);
    quotationDefsMapping.addAscendingOrdering("orderBy");
    quotationDefsMapping.addTargetForeignKeyFieldName("T_QUOTATIONTARGET.SEQ_KEY", "T_QUOTATION.SEQ_KEY");
    descriptor.addMapping(quotationDefsMapping);
    and now the parent of QuotationORMWrapper:
    public ClassDescriptor buildPersistentInstrumentDescriptor() {
    RelationalDescriptor descriptor = new RelationalDescriptor();
    descriptor.setJavaClass(de.hvb.ha.server.businessobjects.techapi.instrument.toplink.PersistentInstrument.class);
    descriptor.addTableName("T_INSTRUMENT");
    descriptor.addPrimaryKeyFieldName("T_INSTRUMENT.INSTR_ID");
    descriptor.addPrimaryKeyFieldName("T_INSTRUMENT.INSTR_KEYTYPE");     
    // Descriptor Properties.
    descriptor.useSoftCacheWeakIdentityMap();
    descriptor.setIdentityMapSize(300);
    descriptor.useRemoteSoftCacheWeakIdentityMap();
    descriptor.setRemoteIdentityMapSize(300);
    descriptor.setAlias("PersistentInstrument");
    OneToOneMapping quotationMapping = new OneToOneMapping();
    quotationMapping.setAttributeName("quotation");
    quotationMapping.setReferenceClass(de.hvb.ha.server.businessobjects.techapi.instrument.toplink.quotation.QuotationORMWrapper.class);
    quotationMapping.useBasicIndirection();
    quotationMapping.privateOwnedRelationship();
    quotationMapping.addTargetForeignKeyFieldName("T_QUOTATION.INSTR_ID", "T_INSTRUMENT.INSTR_ID");
    quotationMapping.addTargetForeignKeyFieldName("T_QUOTATION.INSTR_KEYTYPE", "T_INSTRUMENT.INSTR_KEYTYPE");
    descriptor.addMapping(quotationMapping)
    I hope I don't missed any relevant parts. By the way, where could I log a bug for this issue and can it be considered a bug?
    Thanks in advance!
    Message was edited by:
    user630939

  • Custom Report Erroring when using All as parameter

    Hi All,
    I am facing a problem in running custom report.
    => DB Server Info
    RDBMS : 11.2.0.2.0
    Oracle Applications : 12.1.3
    I am getting following error.
    REP-1401: 'afterpform': Fatal PL/SQL error occurred.
    ORA-06502: PL/SQL: numeric or value error
    custom report two parameters one is date parameter and name parameter
    date parameter is using as fnd_date.canonical_to_date(:P_EFFECTIVE_DATE) in queries.
    if I give name parameter for individual, then it works fine.
    if I give name parameter as "All", then its erroring. I tried it in my best way, but its not working.
    variable data length increased though its not working, can any one help me on this please....
    Here is the Afterpform code
    function AfterPForm return boolean is
    lName VARCHAR2(5000); -- its changed from lName varchar2(50);
    begin
    IF :P_NAME <> 'All' THEN
    lName:= 'AND name =:P_NAME';
    ELSE
    lName:='AND name in                                                             (select name from <******>
              order by name
    END IF;     
    :P_Where_Clause := lName;
    return (TRUE);
    end;
    Thanks for all your help so far.
    Ram.
    Edited by: user8822881 on Feb 9, 2012 10:43 AM

    excuse i understood that you use All as parameter name
    ORA 6502 is when you assign a char to a number or when assign a value which length is greater than the variable length
    what's the dimension of p_where_clause for example?
    you can trace with srw.message
    --- <Code>
    function AfterPForm return boolean is
    lName VARCHAR2(5000); -- its changed from lName varchar2(50);
    begin
    srw.message(1,'step 1');
    IF :P_NAME = 'All' THEN
    srw.message(2,'step 2');
    lName:='AND name in (select name from <table>
    order by name
    srw.message(3,'step 3');
    ELSE
    srw.message(4,'step 4');
    lName:= 'AND name =:P_NAME';
    srw.message(5,'step 5');
    END IF;
    srw.message(6,'step 6');
    :P_Where_Clause := lName;
    srw.message(7,'step 7');
    return (TRUE);
    end;
    ---</Code>
    i think your query is not good
    for example
    lName:= 'AND name =:P_NAME';
    when instance the query the query search this condition but no use the value of p_name parameter
    write
    lName:= 'AND name = '||''''||:P_NAME||''''; then :p_name take the value

  • How to choose witch window will open external links when using multiple Firefox profiles at the same time?

    I am using 2 firefox profiles at the same, one for working and another for reading news. I start them with "firefox -no-remote -P profilename", so there are 2 firefox processes running.
    It works well, but when I click a link in an external app (like in Google Talk), the link is opened in the first firefox process I launched. I mean, if I ran the "news" firefox first, it will always open the external links.
    Is it possible to change this behavior? I'd like all external windows to be opened in the "news" firefox, never in the "working". Of course I'll achieve that if I open it first, but if I first run the "news", then the "working", then I close the news for any reason, now links will always open in the "working" until I close it.
    I running linux (opensuse 11.3).

    '''traysh''',
    Profiles '''''period''''' are "unsupported" by Mozilla. Profiles are "there" but the developers want no part of non-developers using them or fixing anything related to Profiles that has been suggested in a Bug report, or documenting much related to Profiles. Profiles as we know them now are going to disappear from Firefox in the near future, although no specific version number or date has been fixed for that to happen. It is up to us user's to share our experiences with Profiles with other user's. I'm a relative noob to Linux, and all my experience with running multiple Profiles and -no-remote is with Windows OS's.
    '''cor-el''',
    So are you saying that on Linux external links will only open in the first Profile that was opened if multiple Profiles are running?
    And that external links won't open a Profile that isn't already running - if any Profile is already running?
    ''I wish the differences between Windows and Linux as far as '''-no-remote''' and running multiple Profiles were better documented for "us" Linux noobs over at the MozillaZine KnowledgeBase - hint. Unless I am not looking hard enough in the MZ KB for that information....''

  • Component initialization when used by parent component

    Hi everybody
    I have 'parent' and 'child' components.
    View V1 belongs to child and, upon receiving an inplug, performs a specific view controller method InitView performing activities such as executing controller methods to populate its context depending on the plug parameters.
    V1 belongs to Window W1 as default view.
    child is used in parent component and the child W1 interface view is used in a navigation step in parent.
    Parent view V2 should fire an outbound plug towards the W1 interface view which should handle the related inbound plug calling V1's InitView method.
    In order to achieve this, I assume I should declare V1 view controller as required controller in W1 interface view controller. However this is not possibile afaik.
    Any suggestion? Should I move the InitView method within the child component/custom controller?
    Thanks
    Vincenzo

    Hi,
    how does the page source look ?
    Frank

  • Animated Flash Component Scaling when used as Button Skin

    I am trying to skin the overSkin of a Flex Button component with an animated Flash .swc component. (Actually, an Accordion Header, but for all practical purposes the same.)
    All works completely fine, in most cases.  The problem I run into is when I have any objects in the Flash animation moving on and off stage.  When this happens, although the objects cannot be seen when moved off-stage, the viewable area of the Flash animation scales down in either direction, or both, to make room in the button for the objects off stage.
    If I play the animation directly in the application, or a Canvas, everything works fine and no scaling occurs.  But for a Button, where I really need it, I get the constant scaling back and forth as the Flash movie runs.  This can be REALLY annoying when trying to click on a button! (Or you find that you are no longer "over" the button (because it scaled down) so you get flicker back and forth between the Up and Over states.)
    Any ideas on how I can keep this from happening, either on the Flash or Flex side would be much appreciated.
    Pertinent Code:
    [Bindable]
    [Embed(source="assets//btn_StaticHollywood.jpg")]
    private var Film:Class;
    [Bindable]
    [Embed(skinClass="fc.HollywoodWithSearchlights")]
    private var FilmOver:Class;
    animatedButton.setStyle("upSkin", Film);
    animatedButton.setStyle("overSkin", FilmOver);
    <mx:Button id="animatedButton" cornerRadius="0" />
    Note: I tried all assortments of setting dimensions I believe.
    Remember, the Flash component has objects that move in and off the stage from both directions, and this is the cause of the automatic resizing of the Button when it runs.

    I am assuming that you are using Flex 4 and this does not work. In Flex 4, the default theme used is the "Spark" theme. In Flex 3, we used the "Halo" theme. The Halo theme supports styles like borderStyle, but, the Spark theme does not.
    If you want to use these styles, you will need to compile with the Halo theme. You can do this by adding an additional compiler argument -theme=<SDK_DIR>/frameworks/themes/Halo/halo.swc (point to the halo.swc in your SDK installation)
    Joan

  • Instances linking when use database polling

    One interesting thing I noticed...when I poll from a database from within my BPEL process, I noticed all the instances are linked together when you view it under flow trace.
    Does anyone have the same issue?
    I'm using 11.1.1.2.
    Thanks

    HI
    I have selected the logical delete and updated one field to the value 30 , but the adapter keep on polling the records in the table . My database to FTP process keeps on writing files in the FTP folder. kindly advise to read only the selected records. if possible give me the entire flow from Database read to FTP write.
    Thanks in advance
    partha

  • Chase account activity page won't load the "I'd Like To" links when using Mozilla Firefox but will with Internet Exployer

    Chase Banking is always doing upgrades to their website. In their latest update the useable links on the account activity page simply don't appear under the "I'd like to" heading. Even the "I'd like to" heading is not appearing. That side of the page is empty, but if you use Internet Explorer all the links at there. Does anyone else have this problem using Chase Banking?
    Found the issue to this problem, I had a software program running called Ad Blocker. When I disabled this program the links became visible. I will use the other suggestions posted to this message.

    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!

Maybe you are looking for

  • Error While Updating Software of Nokia 3120 Classi...

    I was updating my 3120 classic software & Suddenly it Turns off due to Low battery and after whenever i start the phone it restarts over & over again. Can anyone help me out please. i am waiting for the reply. It will be much appreciation if anyone s

  • Transffering Iphoto pix to a external hard drive

    I was wondering if I could get someones help on this... I have run out of disk space so to free up some space i want to move all my pix to an external harddrive. So.... 1. Where do I go to move the correct file. 2. once I do so, will I be able to plu

  • Thai Language on Playbook

    Hello I am Thai and I like to read Thai Newspapers on my Laptop whilst I am in England. I bought a Blackberry Playbook to enable me to keep up with the Thai news whilst I am on the go.  In the Thai alphabet -- most of the vowels are written above a c

  • Database Sizing Question for 11i

    I am looking to see if there is a spreadsheet or tool that would tell me the optimal database size, for 11i. I understand there was one for 11 that would tell you the best size after you told it the number of suppliers you have, the number of invento

  • Why wont my programs download it says i have another installer open

    i need my software tonight but everytime i try to download it says another installer is open and stops at 43%