Javascript problem in HTML version of XDP file

Hi All,
I have designed a XDP form in adobe livecycle desinger 7.0.
It has three pages and i have a page navigation custom control for navigation between the three pages.
From my application i am displaying this xdp form in HTML format.
my problem is that it loads only the first page. when i click on the next button a javascript error saying "this._peer" is not an object kind of error is thrown.
I made the event to run at both client and server. even if i change to run at server also its not working
Please help me in resolving this problem.
Thanks,
Rajasekhar MV

Hi shilps,
My problem got solved. Thanks,
thanks,
raj MV

Similar Messages

  • Problem with HTML Version.

    hi all,
    i am getting an error namely ITS_CANNOT_LOAD_INCLUDE when i am trying to call the SAP Transaction iView as an HTML Version iView.
    can anyone plz help me on this.

    From what I see, look up one line:
    <snip>
    5. For Oracle Application Server 10g, execute the following commands:
    * For UNIX and Linux based systems:
    ORACLE_BASE/ORACLE_HOME/dcm/bin/dcmctl updateConfig -ct ohs
    </snip>
    You don't use Oracle Application Server, so this step doesn't apply to you. Just skip it :)
    -Josh Bensin

  • Javascript problem with HTML embed

    I'm migrating a large existing site from Sitegrinder to Muse after converting several smaller sites without problem. Unfortunately this site has a javascript button that doesn't work at all. The button was created with the Object/Embed HTML feature, just as coding for several ads was placed in the same way. All the elements displayed properly in the Muse layout and in the browser preview, so I assumed that the code was being read correctly.
    Unfortunately when I click the button on the deployed site, the message "Run script "getPianoDeals()" appears at the bottom of the browser window but nothing else happens. A pop-up window with localized info is supposed to show up. This button appears at the top of every page on a website of hundreds of pages.
    I don't know Javascript, simply place the line of code provided to me. The button has always worked in the past. There's a lot going on in the pages so I don't know if there's a conflict or what to do about it. The site is at www.pianobuyer.com; the white button labeled "view local offers" in the top right corner is the problem. For reference I've reloaded the main pages of the old site at www.pianobuyer.com/Julie/ where the button functions correctly.
    Any suggestions are greatly appreciated.
    Thanks.

    I've tried several things to sort out the problem.
    I isolated the button on a separate layer (helpful with problems between drop-down menu bar and other HTML objects on a page) but it made no difference.
    I then edited the HTML file, moving the relative position of the Muse javascript entries and the problem button script. No matter where the lines were placed, when the button script follows the Muse scripts it works fine; when the button script precedes the Muse scripts it does nothing. Also when the Muse scripts follows the button script the normal actions on the site works fine (drop-down menu bar, slide show); when the Muse scripts precedes the button script none of them work. So the conflict definitely occurs between the scripts.
    I found two discussions on the forum about similar problems. Both refer to a "require.js" file being added to the page. Unfortunately I don't understand what's being discussed.

  • Style coding problems in html version of report

    How come when I create a very ugly plain html report using OR 6i, the html loads very quickly in the browser, but when I add the style coding the WWW wizard creates the html chugs like a snail? Is there some way to get around it, like external css? I'm a novice at OR 6i so much help is appreciated!!
    Thanks,
    Dia

    can you please tell me which parameter should I set because
    I am running report from menu and I gave parameters like
    add_parameter(pl_id,'DesFORMAT',TEXT_PARAMETER,'HTMLCSS');
    IT DOES NOT WORK !! IT GIVES ME SAME OUT PUT AS PLAIN html with
    out any borders OR COLORS( basically With out STYLE SHEET
    FORMAT !!)
    hello, >i assume you are refering to the difference between DesFormat=HTML and DesFormat=HTMLCSS.>there should be no big
    difference between these two formats.>in reports6i all style
    related information is created on the fly and in-line. there is
    no reference to an external file available.>regards, >the oracle
    reports team

  • Certain links in a website donot work ,some javascript problem ,worked well with old versions

    I have a problem with the site ,when i click on the link ,there is no effect ,it should open a new window ,there seems to be a javascript problem ,it shows me javascript(default),in previous versions i had no problem

    Those radio buttons seem to be working here.
    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Should there be a difference between javascript in HTML Header vs js file?

    Application Express 3.2.1.00.10
    I'm finding that IE shows javascript errors when I refer to functions contained in a js file (uploaded as static file) referenced in the HTML Header versus copying the exact same code and keeping it in HTML Header. I can't seem to pinpoint it. Could it be that the APEX javascript API's (e.g. htmldb_Get, $x, $v, etc) that I reference in my functions will not work in external js file?
    The HTML Header is:
    <script type="text/javascript" src="#WORKSPACE_IMAGES#my_file.js></script>
    {code}
    but if i copy the code out of the file and change the HTML Header to this i get some kind of errors:
    {code}
    <script type="text/javascript">
    <!--
    .....all my functions here
    // -->
    </script>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hello,
    >> Could it be that the APEX javascript API's (e.g. htmldb_Get, $x, $v, etc) that I reference in my functions will not work in external js file?
    No it couldn’t. First, the APEX JavaScript APIs are also stored in external files. Secondly, the origin of the JavaScript code shouldn’t matter, it’s the actual code that count.
    You didn’t specify any error message you received so it’s to pinpoint you problem, but in general, the main difference between external JavaScript code and a inline code is that external code can’t use substitution strings in the format of ‘&ITEM.’ (because the APEX engine doesn’t get the chance to perform the substitution). Other than that, the code should be identical.
    You mentioned a specific APEX built-in JavaScript functions. You should also check that these libraries are loaded correctly into you page.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Forthcoming book about APEX: Oracle Application Express 3.2 – The Essentials and More

  • When I sign in to Gmail in FF I get this mess -Error undefined If this problem persists, try reloading the page, or using the basic HTML version. Learn More.

    When I sign in to Gmail in FireFox I get this mess -Error undefined If this problem persists, try reloading the page, or using the basic HTML version. Learn More.

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • My gmail doesnt load on my macbook pro anymore, only able to fully load with the html version. Anyone share the same problem?, My gmail doesnt load on my macbook pro anymore, only able to fully load with the html version. Anyone share the same problem?

    My gmail doesnt load on my macbook pro anymore, only able to fully load with the html version. Anyone share the same problem?, My gmail doesnt load on my macbook pro anymore, only able to fully load with the html version. Anyone share the same problem?
    It loads till the almost the end of the bar and just stops there.

    I'm having the same problem. It just freezes and wont load the rest of the way.

  • Getting error when updating the JavaScript API for Office and manifest schema files in your Visual Studio project from version 1.0 to 1.1

    Hi,
    I`m getting error message like "None of the apps in your project can be activated in the target. The manifest file of one or more apps contain API sets or Office applications that are not supported by
    the target Office client. To debug those apps, update manifest files to exclude any unsupported API sets or Office applications, and then start the project again. Alternatively, you can debug your apps by using Office 365 as a target." when when
    updating the JavaScript API for Office and manifest schema files in your Visual Studio project from version 1.0 to 1.1 in manifest file though i have added host elements.
    any help in this regard is highly appreciated
    Thanks,
    Santosh Sutar  

    Hi Satosh Sutar,
    Based on the description, you got the error message when you update the apps from version 1.0 to 1.1.
    From the error message, it seems the menifest include some settings no allowed in the new version. Would you mind sharing more detail about how you update the project?
    And here is an article about updating apps for Office and menifest schema files in the project for your reference:
    How to: Update the JavaScript API for Office and manifest schema files in your Visual Studio project from version 1.0 to 1.1
    Regards & Fei
    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.

  • "Error uploading file index.html. Click Resume to try again. If this problem persists, try again later. [550 /index.html: Not a regular file]"

    When uploading to FTP Host it gives me this error "Error uploading file index.html. Click Resume to try again. If this problem persists, try again later. [550 /index.html: Not a regular file]" What does this mean and how can I fix it? I need to be able to upload my website and it is not allowing me to do so.

    Hi
    Are you still facing the same error ? Also, have you tried to export the file as html , does it shows same error ? You can upload the exported html to your server using any FTP client as an alternative.
    Thanks,
    Sanjit

  • Xhow XDP file in AIR application

    Does anyone knows how to load an XDP file in a HTML component
    in an AIR application? Loading PDF files is no problem.
    The XDP comes from a JAVA webserver. So, another possibility
    would be to convert the XDP to PDF on the server, before sending it
    to the AIR application. Does anyone knows if this is possible?
    thanks,
    Peter Vermeulen
    Belgium

    Having basically the same issue.  A blank screen appears.  I am using an iframe to display the PDF file (or trying to)
    Windows 7 Professional
    Acrobat Pro X
    AIR 2.7
    AIR SDK 2.7
    Code:
    <script>
    function init()
      var out = document.getElementById('outDiv');
      if (air.HTMLLoader.pdfCapability ==
       air.HTMLPDFCapability.STATUS_OK)
       out.innerHTML =
        "<iframe src='pdf/newsletter.pdf' width='700' height='500'></iframe>";
      else
       out.innerHTML = "<h2>PDF capability not found</h2> <p>Error is: " + air.HTMLLoader.pdfCapability+"</p>";
    </script>
    I am receiving a 3202 error on return from HTMLLoader.pdfCapability (acrobat version too old)

  • I am in the process of expanding a database of chemistry journal articles.  These materials are ideally acquired in two formats when both are available-- PDF and HTML.  To oversimplify, PDFs are for the user to read, and derivatives of the HTML versions a

    I am in the process of expanding a database of chemistry journal articles.  These materials are ideally acquired in two formats when both are available-- PDF and HTML.  To oversimplify, PDFs are for the user to read, and derivatives of the HTML versions are for the computer to read.  Both formats are, of course, readily recognized and indexed by Spotlight.  Journal articles have two essential components with regards to a database:  the topical content of the article itself, and the cited references to other scientific literature.  While a PDF merely lists these references, the HTML version has, in addition, links to the cited items.  Each link URL contains the digital object identifier (doi) for the item it points to. A doi is a unique string that points to one and only one object, and can be quite useful if rendered in a manner that enables indexing by Spotlight.  Embedded URL's are, of course, ignored by Spotlight.  As a result, HTML-formatted articles must be processed so that URL's are openly displayed as readable text before Spotlight will recognize them.  Conversion to DOC format using MS Word, followed by conversion to RTF using Text Edit accomplishes this, but is quite labor intensive.
      In the last few months, I have added about 3,500 articles to this collection, which means that any procedure for rendering URL's must be automated and able to process large batches of documents with minimal user oversight.  This procedure needs to generate a separate file for each HTML document processed. Trials using Automator's "Get Specified Finder Items" and "Get Selected Finder Items", as well as "Ask For Finder Items"  (along with "Get URLs From Web Pages") give unsatisfactory results.  When provided with multiple input documents, these three commands generate output in which the URLs from multiple input items are merged into a single block, which yields a single file using "Create New Word Document" as the subsequent step.  A one-to-one, input file to output file result can be obtained by processing one file at a time, but this requires manual selection of each item and one-at-a-time processing. What I need is a command that accepts multiple input documents, but processes them one at a time, generating a separate output for each file processed.  Is there a way for Automator to do this?

    Hi,
    With the project all done, i'm preparing for the presentation. Managed to get my hands on a HD beamer for the night (Epason TW2000) and planning to do the presentation in HD.
    That of course managed to bring up some problems. I posted a thread which i'll repost here . Sorry for the repost, i normally do not intend to do this, but since this thread is actually about the same thing, i'd like to ask the same question to you. The end version is in AfterEffects, but that actually doesn't alter the question. It's about export:
    "I want to export my AE project of approx 30 min containing several HD files to a Blu Ray disc. The end goal is to project the video in HD quality using the Epson  EMP-TW2000 projector. This projector is HD compatible.
    To project the video I need to connect the beamer to a computer capable of playing a heavy HD file (1), OR burn the project to a BRD (2) and play it using a BRplayer.
    I prefer option 2, so my question is: which would be the preferred export preset?
    Project specs:
                        - 1920x1080 sq pix  (16:9)
                        - 25 fps
                        - my imported video files (Prem.Pro sequences) are also 25 fps and are Progressive (!)
    To export to a BRD compatible format, do i not encounter a big problem: my projectfiles are 25 fps and progressive, and I believe that the only Bluray preset dispaying 1920x1080 with 25 fps requests an INTERLACED video  (I viewed the presets found on this forum, this thread)... There is also a Progr. format, BUT then you need 30 fps (29,...).
    So, is there one dimension that can be changed without changing the content of the video, and if yes which one (either the interlacing or the fps).
    I'm not very familiar with the whole Blu-ray thing, I hope that someone can help me out."
    Please give it a look.
    Thanks,
    Jef

  • RoboHelp HTML Version 9 - what is the version for ehlpdhtm.js?

    We have been running pen tests looking for vulnerabilites on applications my company has created in order to be PCI certified. I built webhelp systems for these applications using RoboHTML v9.
    The pen test has indicated that ehlpdhtm.js is suspect with the following message:
    WebInspect detected the use of an ActiveX object. This could indicate a vulnerability is present if a vulnerable public version of the Microsoft Active Template was utilized. There are three vulnerabilities in the public versions of the Microsoft Active Template Library (ATL) included with Visual Studio. Applications and components created with these versions of ATL are vulnerable to remote code execution and information disclosure attacks. Visual Studio itself is not vulnerable to these issues. In these three vulnerabilities, ATL processes data incorrectly which can lead to memory corruption, information disclosure, and instantiation of objects without regard to security policy. After Visual Studio is patched, it will no longer create applications and components with these vulnerabilities. However, applications and components compiled using the vulnerable version of ATL need to be rebuilt with the safe version released by Microsoft. Recommendations include applying any relevant service pack or patch as listed in the Fix section, then recompiling and redistrubiting any software created prior to the update. If you have already applied the proper fix, then this vulnerability can safely be ignored.
    Explanation
    Any application compiled using the vulnerable active template could be subject to code execution and information disclosure vulnerabilities.
    What is the latest version of the ehlpdhtm.js file?
    The copyright inside the file is:
    // Dynamic HTML JavaScript
    // Copyright © 1998-2009 Adobe Systems Incorporated. All rights reserved.
    // Version=8.0
    If this is not the latest version, is there somewhere I can get the latest file? If not, I won't be able to use the dynamic html features of RoboHTML.

    If you have the latest patch installed (9.0.2), you have the latest version of ehlpdhtm.js. There was an XSS vulnerability fix for 9.0.1, but that is included in 9.0.2. From what I can see in my installation, version 8.0 is the latest version for RoboHelp 9.
    RoboHelp 11 has a newer version of the file, but the active x is still in there.
    I'm not a security expert. The ActiveX is used for supporting old versions of IE and CHM's. It should not be used by modern browsers. I've never heard of RoboHelp being abused in this way so I would deem it safe. But again, that's just my layman opinion.
    Kind regards,
    Willam

  • Is it possible to load a xdp file into a subform?

    Is it possible to load a xdp file into a subform?

    That worked with an existing fragment.
    What i'm tryin to do is generate a xdp file like (which i can open in the designer as preview pdf correctly), and insert this as subform.
    <?xml version="1.0" encoding="UTF-8"?>
    <xfa>
       <template xmlns="http://www.xfa.org/schema/xfa-template/2.8/">
          <subform name="TopmostSubform">
             <pageSet name="PageSet">
                <pageArea name="MasterPage1" id="p1">
                   <contentArea name="ContentArea" x="0pt" y="0pt" w="595.3pt" h="841.9pt"/>
                   <medium stock="a4" short="595.3pt" long="841.9pt" orientation="portrait" imagingBBox="none"/>
                </pageArea>
                <pageArea name="MasterPage2" id="p2">
                   <contentArea name="ContentArea" x="0pt" y="0pt" w="595.3pt" h="841.9pt"/>
                   <medium stock="a4" short="595.3pt" long="841.9pt" orientation="portrait" imagingBBox="none"/>
                </pageArea>
             </pageSet>
             <subform name="Page1" w="595.3pt" h="841.9pt">
                <draw name="Text" x="59.25pt" y="117pt" minW="400.25pt" minH="12pt">
                   <ui>
                      <textEdit multiLine="1"/>
                   </ui>
                   <value>
                      <exData contentType="text/html">
                         <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="text-align:justify;font-family:Verdana;font-size:10pt">Assunto: Ap&#xf3;lice n&#xba; #MC_Apolice_MC# - Actualiza&#xe7;&#xe3;o de Condi&#xe7;&#xf5;es 2012/2013</p></body>
                      </exData>
                   </value>
                   <para/>
                </draw>
                <draw name="Text" x="59.25pt" y="141pt" minW="88.25pt" minH="12pt">
                   <ui>
                      <textEdit multiLine="1"/>
                   </ui>
                   <value>
                      <exData contentType="text/html">
                         <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="text-align:justify;font-family:Verdana;font-size:10pt">Estimado Cliente,</p></body>
                      </exData>
                   </value>
                   <para/>
                </draw>
                <draw name="Text" x="59.25pt" y="165.75pt" w="490.25pt" minH="24pt">
                   <ui>
                      <textEdit multiLine="1"/>
                   </ui>
                   <value>
                      <exData contentType="text/html">
                         <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="text-align:justify;font-family:Verdana;font-size:10pt">Aproximando-se a data de renova&#xe7;&#xe3;o do seu seguro de sa&#xfa;de Multicare, vimos inform&#xe1;-lo das altera&#xe7;&#xf5;es que ocorrer&#xe3;o na sua ap&#xf3;lice a partir de #MC_Dt.Inicio_MC#.</p></body>
                      </exData>
                   </value>
                   <para/>
                </draw>
                <draw name="Text" x="59.25pt" y="201.75pt" minW="155pt" minH="12pt">
                   <ui>
                      <textEdit multiLine="1"/>
                   </ui>
                   <value>
                      <exData contentType="text/html">
                         <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="text-align:justify;font-family:Verdana;font-size:10pt;font-weight:bold">Refor&#xe7 ;&#xe1;mos a sua prote&#xe7;&#xe3;o</p></body>
                      </exData>
                   </value>
                   <para/>
                </draw>
             </subform> 
          </subform>
       </template>
    </xfa>

  • Javascript in offline html

    Hallo.
    I have a simple question.
    Is javascript in offline html supporteted in DSP?
    I tried to place very very simple html with one row javascript into my article. Updating article to the server takes hours!!! .
    DL from server to iPad is impossible

    I have gotten it to work without a problem. I create an folder for the page and save the inDesign file within that folder, additionally I include a folder named "html" and within that folder I structure the files just like I would on a server, images, js and css folders all linked within the .html. I have used Javascript to embed web pages within the inDesign/DPS workflow that serve as multiple choice quizes, fill in the blank questions and displaying of Twitter feeds. You can even use javascript along with the localstorage function in HTML5 to store answers to questions so that when the iPad is turned off the user's answers are remembered. I have never had a problem uploading, downloading and testing in the content viewer. You may want to delete your pages, recreate and upload.

Maybe you are looking for

  • Search Field in Yahoo

    Not too sure if posting this here is correct, but here goes. Might seem dumb but, when I begin to type a word in the search field for Yahoo, a drop down menu of history searches opens. Convenient but how can I clear this?? Thanks in advance, Paul 14

  • Need pl/sql stmnts. for this simple logic

    Hi, I need PL/SQL program for this simple logic i am doing mistake somewhere unbale to trace out .. select * from GSR03_PO_DTL; PO_NUM L53177000 -- > no changes reqd (only one entry with new format) L00041677 --> to be updated to L41677000(only one e

  • Nokia 5800XM - Alarm snooze - how to cancel snooze...

    Hello all, Im solving little bit annoying alarm feature in my phone. Imagine that you have alarm set as DAILY at 6 in the morning. In the morning I snooze the alarm after first ringing by sliding the bar snooze. In alarm settings, there is a comment

  • Number Range object skipping numbers SAP

    Hi All, Number Range object skipping numbers SAP "EINKBELEG" . While creating Purchase order with transaction code me21n, the purchase order is skipping odd numbers. I have checked the transaction code "SNRO" there is no buferring set on the object.

  • I can't use my iPhone 5 in China

    Dear Sir or Madam, As I bought my iPhone 5 in the USA from Sprint, full price with tax, unlocked ,it was excepted to be a global phone. But now I come across with some problems in China using local carrier, everything is working properly except sendi