IE6&7 popup not working

I'm running CF 7.0.2.
Using Flash form popup has stopped working properly. It
popsup a page for a sec or two and it close it.
With Firefox and Mozilla no problems.
It used to work with button onclik="getUrl("...);"
I've tried calling a functions:
onclick="openBook()";
function openBook() {
var fullURL = "var w = window.open('reportFile.cfm?sect=" +
sect.selectedData+'&order='+order.selectedItem.data+'&format='+format.selectedItem.data
+
"','popup','toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=700,height=500');"
getURL ("javascript:" + fullURL);
No luck. It works in Mozilla and FF not in IE.
Any idea?
Thanks,
b.

try this
<cfform method="post" name="form1" format="flash"
height="400" width="300" skin="halosilver">
<cfformitem type="script">
function clickURL(){
getURL("
http://www.adobe.com", "_blank");
</cfformitem>
<cfinput name="btnClick" type="button" value="Click"
onclick="clickURL()">
</cfform>

Similar Messages

  • ADF Faces to Trinidad migrated app popup not working

    I have 10g version application (ADF bc and jsf) migrated to 11g using automated migration of jdeveloper and this application has lot of popups . for some reason pop ups are not working in the converted app
    if i open a popup programmatically it works okay , but it is not working when used from faces-config.xml ; with dialog:edit etc and usewindow = true - opens in same window
    for this blog post [http://blogs.oracle.com/Didier/2008/12/dialog_not_opening_in_a_popup_1.html] by Didlier , the configuration should be moved to adfc-config.xml file , but looks like that is only required when using rich controls ( mainly task flows) . for now my applicaiton only has trinidad components.
    If i create adfc-config.xml manually and copy all the navigation flows , will it work. i guess i need to specify that somewhere for the application to start using this file
    I thought i will download the converted srdemo but the link to converted srdemo from here [http://www.oracle.com/technetwork/developer-tools/jdev/migration-082101.html]
    is not working
    if anybody have suggestions please advise , thanks for your time
    Regards

    There seems to be a broader problem here in that the client-side validation is not respecting sub-form boundaries. Any post on the page causes all the validations to run, not just the ones in the subform that contains the control the invoked the post.
    Also, with the field marked as immediate, will I have problems with a "Cancel" button marked as immediate? Will the validation on the immediate field take place prior to the navigation invoked by the Cancel button?
    Thanks.

  • LightShow Magic  popup not working?

    Hi folks,   I am trying to import content from the existing site to  the new BC site, and I have uploaded the relevant js files and folders, but even though the linked files are seen in the Inspector on the live page, the popup link to Enlarge and create a lightshow is not working:
    http://joden.businesscatalyst.com/cat/artnouv/index.htm
    I am wondering if there is a limitation in BC that is preventing the js from working or if there is some other error on my part.
    Any help appreciated.
    Thanks
    Jeff

    Hi,
    I can see that there is no magnify.gif image in your "image" folder and your <a href tag is set to '#' and this is why it is not working. Also the linking is not correct to image folder, make sure you select the path carefully, See the image below
    Hope this helps.

  • Uncommitted data warning popup not working

    Hi ADF Experts,
    JDEV 11.1.1.7.0
    I have a jspx page with af:document uncommettedDataWarning="on".
    Inside jspx I have a region. In the jsff fragment I have inputText with autoSubmit="true",
    The popup does not appear if I try to close the browser or refresh.
    Also I tried to set critical for the taskflow. Which either did not help.
    Please help me on this.
    Thanks,
    Roy

    Hi Frank,
    I filed a bug with customer support but this is what the response.
    "Hello Roy,
    I brought this issue to our Development but did not get any answer as the framework works as expected.
    if a component is set to autosubmit then the data is submitted so no more considered as uncommitted.
    The solution would be to change the design in order to commit the data when received or use a specific commit button."
    Can you please let me know if we cannot have that warning when autoSubmit="true".
    Thanks,
    Roy

  • Adf AutoSuggest Popup not working properly with af:InputText

    Hi,
    I have a scenario where I have a inputText box with autoSuggest . Now I need to validate the inputText for having minimum of three characters . I added the af:ValidateLength .The moment I added af:ValidateLength or any customValidator ,the af:autosuggest popup starts behaving weirdly.
    For eg:
    I enter say two characters in my InputText -> AutoSuggest triggers shows me the suggestList,(press tab) the ValidateLength Validator throws a error msg pop stating "Error:There are too few characters ,enter 3 or more characters".
    Now go back to InputText and start entering text ->AutoSuggest triggers shows me the suggestList -> Select a particular value from the suggestlist ,the value gets populated in the InputText but the AutoSuggest popup does not close.The Popup remains there and does not disapper once you select the value.This happens only when I have af:ValidiateLength or any customValidator added to the InputText.
    IF I dont add any Validator for the InputText ,the autoSuggest popup closes up fine after selecting a value from the suggestList.
    Here is the code I have:
    <af:inputText label="#{atkreportingpanepublicuiBundle1['OLabel.Search.QuickSearch']}" id="it1" simple="true"
    value="#{pageFlowScope.treeModel.searchCriteria}"
    autoSubmit="true">
    <af:autoSuggestBehavior suggestedItems="#{pageFlowScope.treeModel.getSuggestionList}" maxSuggestedItems="10"></af:autoSuggestBehavior>
    <af:validateLength minimum="3"/>
    </af:inputText>
    And In my bean I do :
    public List getSuggestionList(String inputKey){
    List<SelectItem> filteredChilds = new ArrayList<SelectItem>();
    rootNodes = fetchfilteredCatalogData(rootNodes); //Do some manipulation and generate this ArrayList of values to be compared with
    if(rootNodes != null) {
    for (ItemInfo info : rootNodes) {
    String caption = info.getCaption().toLowerCase();
    String key = keyword.toLowerCase();
    if(caption.startsWith(key)) {
    filteredChilds.add(new SelectItem(info.getCaption()));
    } else {
    System.out.println("No matching values found for TypeAheadlist inputKey");
    return filteredChilds;
    Is this is a known issue where auto-suggest under InputText with af:Validator behave weird or can something be done to overcome this scenario.Kindly suggest.

    Hi Timo,
    Thank you for the code suggestion.But Timo say I dont type anything in my InputText and validate for empty String . I have "Go Button" in the page that does that.Basically its a search page with a InputText along with autoSuggest and with a 'Go"Button.
    Now the suggested Code will return me the msg "Type in three or more characters.." when I type in less than 3 characters.
    In order to Validate for empty String in InputText (i.e Validate if InputText value is null) , I believe I would have to make the required property of the InputText to true.
    If I do that and check,
    I click the "Go" button it validates and throws the default "error" message in the pop-up.
    Now I go back to and start Typing a keyword -> after 2 characters the auto-Suggest list throws up the suggestionList.
    Now I select the Value from the SuggestList ,it populates the InputText with the value I selected from SuggestList but the SuggestList popup does not close after selection.This seems to be the issue.
    Whenever any Validation is done on InputText ,the SuggestionList popup does not close on Selection a Value from it.
    How to overcome this scenario.

  • Popup not working in Frontpage

    I'm new at fireworks, but I'v made a popup menu added the
    links, but when I've exported it to frontpage the popup works but
    when I make a choice nothing happens! Can someone help me
    please?

    I'm new at fireworks, but I'v made a popup menu added the
    links, but when I've exported it to frontpage the popup works but
    when I make a choice nothing happens! Can someone help me
    please?

  • AF:popup not working within commandLink

    Hi all,
    I have a requirement where when I click on a link , I need to launch a popup which will in turn open-up some URL say 'Google'.. For eg : When I click the link in the jspx say "Google"" it should open up google.com in a pop-up...I was thinking of something like :
    <af:form id="f1">
    <af:popup id="p1">
    <af:dialog id="da1">
    </af:dialog>
    </af:popup>
    <af:panelGroupLayout id="pl1">
    <af:commandLink id="c1" text="Google" partialSubmit="true">
    <af:showPopupBehavior popupId="p1" triggerType="action"/>
    </af:commandLink>
    </af:panelGroupLayout>
    </af:form>
    But this does not launch the popup at all in the commandLink...Can you anyone tell me how can I get this simple prototype done...Thank you for the help..

    Hi Naveneeth,
    I tried using inline frame within the <af:dialog>but I keep getting stackoverflow error.
    Here is the code snippet I was trying :
    <af:document id="d1">
    <af:form id="f1">
    <af:popup id="p1">
    <af:dialog id="da1">
    <af:inlineFrame shortDesc="google" source="http://www.google.com" />
    </af:dialog>
    </af:popup>
    <af:panelGroupLayout id="pl1">
    <af:commandLink id="c1" text="LaunchOSN" partialSubmit="true">
    <af:showPopupBehavior popupId="p1" triggerType="action"/>
    </af:commandLink>
    </af:panelGroupLayout>
    </af:form>
    </af:document>
    Whenever I click to launch the link to open popup I keep getting this error:
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5
    java.lang.StackOverflowError
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:
    My Jdev version is 11.1.1.6.0
    Not sure whats happening..LEt me know if I am trying the right way....Thank you..

  • Bug (?) - TP3 - Date popup not work in query panel

    Steps:
    1. In the data control pallette, expand a view object that has a date attribute
    2. Drop the "All Queriable Attributes" named criteria onto a page and choose "Query -> ADF Query Panel With Table"
    3. Run the page. Click on the icon next to the date field in the query panel to launch the date picker. Notice that nothing pops up
    I tried this both in IE7 and FF2 with the same results

    Hi Scott,
    The error is present in the TP3 release but I couldn't replicate it in one of the latest build so this is fixed for upcoming releases.
    Juan C.

  • Flash Ad External API  not working in IE7

    I'm using the Flash AS 2.0 External API to call a Javascript
    function in a page that adds an item to a shopping list when a
    Flash Ad is clicked. This is working in FireFox 2 , Safari, and
    IE6, but does not work in IE7. I tested the Flash Ad locally in
    it's own html page and it calls the function in IE7. An example of
    the ad can be viewed here:
    http://ads.beta.groceryshopping.net/Shop/WeeklyAd.aspx
    The issue may be tied to Ajax.

    the solution can be found here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400730&sliceId=1

  • Auto sizing popup feature not working in Firefox

    I have started using Firefox as my default browser
    instead of IE. I just discovered that the popup windows, which I've
    linked from an image map on one particular document do not work. In
    the following doc, the image has about 35 links to popup windows,
    none of which work in Firefox. They do work in IE.
    http://www.stoneedge.com/help/Main_Menu_5.8_Beta.htm
    Is this a known issue? I couldn't find reference to it on the
    forum, so then I wonder if its a matter of settings. I turned of
    Firefox's popup blocker, so that's not it. I do prefer to use the
    popup, but if there's no fix, the "Display in Frame" option DOES
    work in Firefox, so I'll just have to use that instead.
    Any information, fixes, suggestions are much appreciated!
    Thanks,
    Beth

    Hi,
    Have you tried Tools | Update DHTML-effects in topics ?
    You may also want to check out this post: http://forums.adobe.com/message/2262688, and this post: http://forums.adobe.com/message/2207677#2207677 I don't know if the problems there are exactly the same as yours, but it's definitely worth a try, especially Praful's 'updated' ehlpdhtm.js.
    Greet,
    Willam

  • TimedTrigger does not work after opening a popup on version 7.11

    Hi experts,
    In my application, there are 2 Windows (W_MAIN, W_POPUP) and 2 Views (V_MAIN, V_POPUP). I put TimedTrigger component to the first view, it is used for refreshing page automatically. W_POPUP and V_POPUP are used for opening popup.
    The TimedTrigger works well on V_MAIN, but it does NOT work any more after the popup is used (opened and closed). The TimedTrigger just works again when the browser is refreshed.
    The problem happens on Netweaver PI version 7.11 only, on version 7.1 is OK
    Please give me your advice on it.
    Thank you,
    Ken Nguyen.
    Edited by: ken nguyen on Jul 19, 2010 9:17 AM
    Edited by: ken nguyen on Jul 19, 2010 11:35 AM

    Hi,
    have you found a solution to his problem?

  • Movie not working in ie6 or ie 5.5

    I am using the following to embed a player but it seems in
    some ie6 and on ie 5.5 its not working. It is fine in firefox and
    in ie7 and 8 beta
    <script language="JavaScript" type="text/javascript">
    <!--
    if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
    alert("This page requires AC_RunActiveContent.js.");
    } else {
    var hasRightVersion = DetectFlashVer(requiredMajorVersion,
    requiredMinorVersion, requiredRevision);
    if(hasRightVersion) { // if we've detected an acceptable
    version
    // embed the flash movie
    AC_FL_RunContent(
    'codebase', '
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
    'width', '550',
    'height', '250',
    'src', 'promoArea',
    'quality', 'high',
    'pluginspage', '
    http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'transparent',
    'devicefont', 'false',
    'id', 'promoArea',
    'bgcolor', '#ffffff',
    'name', 'promoArea',
    'menu', 'true',
    'allowScriptAccess','sameDomain',
    'allowFullScreen','false',
    'movie', 'promoArea',
    'salign', ''
    ); //end AC code
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'Alternate HTML content should be
    placed here.'
    + 'This content requires the Adobe Flash Player.'
    + '<a href=http://www.macromedia.com/go/getflash/>Get
    Flash</a>';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not
    support scripting
    // or for those that have scripting disabled.
    Alternate HTML content should be placed here. This content
    requires the Adobe Flash Player.
    <a href="
    http://www.macromedia.com/go/getflash/">Get
    Flash</a>
    </noscript>
    Any ideas

    Hi Dhiraj,
    When you click on the Log off button, do you see any yellow triangle icon (Something like warning) coming at the bottom left of the browser?
    If so then you are experiencing a Javascript error with your browser. If you click on that icon a pop up should come up with the exact error.
    If you get the error I mentioned I would recommend you to change the security settings of the browser to meduim or low.
    Also if you go to internet properties->Security->Trusted Sites->Sites button,
    You can try adding the URL of the Portal that you are using like :http://mysapportal
    See if this works.
    Thanks
    Avik
    Edited by: AVIK SANYAL on Aug 13, 2009 4:45 AM

  • Calendar popup is not working properly in af:inputDate

    HI,
    I am using af:inputDate component as,
    <af:inputDate label="Input Date :"/>
    The popup calendar is not working properly in my case. When I click on calendar buttong of the component, it is opening the calendar popup properly with showing proper date.
    Now in this popup I am able to change month or year only once. Means if I am watching January month initialy and now I changed it to May, it reflect the month properly. But before closing the dialog, if I again change the month to some another month, it is not changing the calendar at all. The same case is with year also.
    One more thing i want you to notice is, this component is working properly on a sample page where there is nothing in that page. But when I am adding it in my application with the same tag, it is not working.
    Can any one tell me where I should look for the fix?
    Sujay

    Sujay,
    It's always frustrating when someone says "it is giving me exception" without providing the details. It's akin to going to your automobile mechanic and saying, "a warning light comes on." Wouldn't you think it pertinent to tell the mechanic which warning light came on? If yes, then why wouldn't you provide the exception (and perhaps the pertinent part of the stack trace) here?
    Furthermore, since it works in a "very simple page," the component does at least work part of the time. If your car started at least part of the time, you'd tell your mechanic what you did that causes it not to start (for example, when I leave the headlamps on all night, it doesn't start the following morning). So... what is special about your page that it doesn't work?
    Best,
    John

  • HT204204 i tried to update to ios 8.2 on my iphone 5s when message popup to me now my iphone not working, please help i dont want to lose my data

    hi
    i tried to update to ios 8.2 on my iphone 5s when message popup to me now my iphone not working, please help i dont want to lose my data

    What is the exact text of the message you got? And did you not back up before you updated?

  • Exceptions in popup blocking not work good

    why sub-domains in exceptions in popup blocking not work? if i add a particular subdomain it works, but when i add an star in subdomain to do for all not work:
    *.mihanblog.com
    *.blogfa.com
    //// Please add image upload on post feature to Firefox's support ////
    //// Also add a suggestion forum to Firefox's support (like Chrome's forums) ////
    Thanks

    Do not add a * because Firefox doesn't support wildcard that way.<br />
    Just specify the domain to apply the exception to a domains and all sub domains.
    *Bug 336207 - Add wildcards to cookie exceptions list to permit subdomains if all cookies are blocked

Maybe you are looking for