List of forms features that use JavaScript

I want to distribute a fillable form that doesn't use any JavaScript. Is there a list of features/toools that use JavaScript so I can avoid them? I'm on Acrobat Pro 9.2 in Windows XP SP3.
Regards,
Glenn

Bernd, I don't think it is that simple. I don't know any JavaScript commands. I included a field in a form that summed two other fields, really simple stuff. If I disable JavaScript in Acrobat, I get a warning that this form uses JavaScript.
So, I removed the field that totals and still get a warning. I'm guessing it is due to some other element such as radio buttons and/or mutually exclusive check boxes that use JavaScript without me knowing about it.
So my questions is "Is there a list of form-creation tools that use JavaScript? Are there any check boxes, radio boxes or any other standard form creating tools that use JavaScript?"
Thanks for the reply,
Glenn

Similar Messages

  • Can't open links that use Javascript even if Javascript enabled

    I've tried to open links on a recruitment website but the ones that use javascript, or at least I assume they do as this appears at the bottom of the screen when i click on the link javascript:%20OpenWindow(350,402,%20'details.asp?dir=1&id=39649&type=O&checksum=df089b6b4eab6c4134db5582a6d77a31',%20'Update',%20'True'); but nothing happens. Direct links to another website work ok. i'm having no problems with this when using internet explorer.
    many thanks.

    I went to the web site. No problem loading.

  • Why does Firefox 35.0.1 crash regularly on many sites that use javascript image rotation?

    Since the latest update to version 35, many sites that use javascript to manipulate images tend to crash firefox and make either the guilty tab or all of firefox close suddenly. (Firefox on Debian 7 Wheezy Linux, all updates current). I use firefox daily for web development and this regression bug is VERY annoying for my workflow. I understand you cannot take every situation into account. I do not have the time to investigate what has made Firefox less stable. I really hope you can fix this performance problem. If I can do anything concrete to help besides jumping into the code, let me know.

    '''[https://addons.mozilla.org/en-US/firefox/addon/flashblock/ Flash block]''' {web link}
    Never be annoyed by a Flash animation again! Blocks Flash so it
    won't get in your way, but if you want to see it, just click on it
    If you have problems with current Shockwave Flash plugin versions then check this:
    * see if there are updates for your graphics drive drivers
    '''https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration'''
    * disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    '''https://forums.adobe.com/message/4468493#TemporaryWorkaround'''
    * disable hardware acceleration in the Flash plugin
    '''https://forums.adobe.com/thread/891337'''
    See also:
    * '''http://kb.mozillazine.org/Flash#Troubleshooting'''

  • How to set a form element value using javascript?

    Hello,
    I have been using the following two functions in AS 9.0.2 to set form values in javascript and it works correctly. However, the same code does not work in AS 10.1.2.0.2. Would appreciate if someone could let me know how to set form elements using Javascript(onchange of a field).
    function set_item_value(p_field_name, p_value)
    var v_index, v_full_name;
    for(v_index=0; v_index<document.forms[0].length; v_index++)
    v_full_name = document.forms[0].elements[v_index].name.split
    if (v_full_name[2] == p_field_name)
    document.forms[0].elements[v_index].value = p_value;
    function get_item_value(p_field_name)
    var v_index, v_full_name, v_return="";
    for(v_index=0; v_index<document.forms[0].length; v_index++)
    v_full_name = document.forms[0].elements[v_index].name.split
    if(v_full_name[2] == p_field_name)
    if(document.forms[0].elements[v_index].type != "radio")
    v_return = document.forms[0].elements[v_index].value;
    else
    if(document.forms[0].elements[v_index].checked)
    v_return = document.forms[0].elements[v_index].value;
    if(v_return == " ")
    v_return = "";
    return v_return;
    Thanks
    Dev

    This is not the best way to write JavaScript in Portal environment!
    You can't be sure that a form is the first in the html source!
    In Portal you change the order of your portlets, and also you can have several instances of the same portlet on the same page!!!
    You should use qualified form and field names!
    Please check the following JPDK methods:
    UrlUtils.htmlFormName
    HttpPortletRendererUtil.portletParameter

  • I'm using the great Firefox 5.o. What happened to the "Bookmark All Tabs" feature that used to be found under Bookmarks? I love Mozilla Firefox!!!! :-)

    I've looked under the Bookmarks heading as well as History. What happened to the extremely useful "Bookmark All Tabs". Loved that feature of Firefox. Thank you!!!!!!

    Right-click '''on''' a Tab to see that menu item or use {Ctrl + Shft + D}.
    In conjunction with the new Firefox button in Firefox 4.0 and with the addition of some new features that added a number of new menu items, many of the older menu items were moved around or only appear under certain conditions. It can be a bit confusing until you get used to the changes, but beyond adding new menu items in the future for new features, I don't think there will be major changes like that for awhile.

  • I cannot remember the name of a certain feature that use to be available. This feature would allow you to set up your homepage with different websites. It kind of resembles the look Cooliris has.

    Where is the feature that would allow you to set up your homepage with different websites.

    Before you do anything, go to Help | Check For Updates and install v3.6.16. There was a security breach at Comodo which is an SSL certificate provider whereby a number of fraudulent certificates were inadvertently issued. This allows a hacker to impersonate any site including online banking and your browser will not display a warning. The latest update in the 3.6.x series blacklists those certificates.
    On the subject of the homepage you asked about, it's probably this add-on: https://addons.mozilla.org/en-US/firefox/addon/homepage-randomizer/

  • Dynamic Page that uses javascript to run an executable on the client's pc

    I have an .exe file on a shared network that has to be called and executed from portal. The below code works as standalone but not from a dynamic page or an HTML portlet. Any ideas?
    <html>
    <script language="javascript" type="text/javascript">
    function runApp()
    var shell = new ActiveXObject("WScript.shell");
    shell.run('"c:/CstatsWeeklyreport.exe"',1,true);
    </script>
    <body>
    <input type="button" name="button1" value="Run Notepad" onClick="runApp()" >
    </INPUT>
    </body>
    </html>

    Thanks D, but that's not what I'm looking for. That changes which application a file opens with when you download it. That's not what I need for this situation. Here's a little more detail.
    The clients will have an application on their hard drive; it can be any application, even a custom application that they developed themselves. Then, they open a web page with a listbox full of items. Depending on which item they select, a query will return a file path to the .exe file itself. The .exe file resides on the client's hard drive, not on the server. So they're not downloading anything. Depending on the filepath returned by the query, the browser needs to start the process and open the .exe file for them.
    So let's say I have developed a simple text editor called Tedit. I have a file on my hard drive - "C:\TextEditor\bin\debug\TEdit.exe". When they click the open button, that file path is returned from the database. Then the javascript is called to start the process and open that program.
    Again, nothing is getting downloaded, the application resides on the user's hard drive and there is no file to associate it with.
    This can be done in IE using an ActiveX control. And it used to be possible in Firefox using the nsIFile or nsIProcess objects. But since FF15 that's not available anymore, so the javascript throws an error telling them that their permission is denied.
    What I need, is a javascript that will launch the .exe file from the user's hard drive without downloading anything.

  • Validating forms in jsp using javaScript

    Hi all i'm trying to validate this form with javeScript. i was testing it with just the <input type=text name= file> first. it works but after the alert message it still posts to writeXML......
    i tried putting the fuction valid() after the <form> tag but it still posts it to writeXML.jsp.......can anyone help me please........What i want to do is make sure that something is typed in all the forms befor posting to writeXML..Thanx
    <html>
    <head> <title>Create MultipleChoice Questions</title> </head>
    <script language="JavaScript">
    function valid(form) {
         if(form.file.value == "")
         alert("Please enter the file name")
    </script>
    <body bgcolor="#cccccc">
    <% int count = 0;
    String number = request.getParameter("nOfq");
    int qNumber = Integer.parseInt(number); %>
    <form action="writeXML.jsp" method="POST">
    <center>
         <table bgcolor="silver" border="1" width="75%">
         <tr align="center"><td><b>Type in the Name of your Questionnaire here eg. BlackHistory.      Dont leave any spaces between letters</b><br>
         <textarea name="file" rows="1" cols="25"></textarea><br>
         </td></tr>
    <% for(int i=1;i<qNumber+1; i++) { %>
    <%count++;%>
         <tr align="center" bgcolor="#336699"><td><b>QUESTION <%= count %>: </b><br>
         </td></tr>
         <tr align="center"><td><b>ENTER QUESTION:</b><br>
         <textarea name=<%="questionText"+i%> rows="5" cols="65"></textarea><br>
         </td></tr>
         <tr align="center"><td><b>CHOICE 1:</b><br>
         <textarea name=<%="choice_1"+i%> rows="2" cols="50"></textarea><br>
         </td></tr>
         <tr align="center"><td><b>CHOICE 2:</b><br>
         <textarea name=<%="choice_2"+i%> rows="2" cols="50"></textarea><br>
         </td></tr>
         <tr align="center"><td><b>CHOICE 3:</b><br>
         <textarea name=<%="choice_3"+i%> rows="2" cols="50"></textarea><br>
         </td></tr>
         <tr align="center"><td><b>CHOICE 4:</b><br>
         <textarea name=<%="choice_4"+i%> rows="2" cols="50"></textarea><br><br><br>
         </td></tr>
         <tr align="center" bgcolor="#679995"><td><b>CORRECT ANSWER:</b><br>
         <textarea name=<%="cAnswer"+i%> rows="2" cols="50"></textarea><br><br><br>
         </td></tr>
    <% } %>
    <tr>
    <td align="center"><input type="submit" name="next" value="NEXTT" onClick="valid(this.form)">
    <td align="center"><input type="hidden" name="qCount" value="<%=count+1%>">
    </td></tr>
    </table>
    </center>
    </form>
    </body>
    </html>

    this Corrected code works perfectly
    <html>
    <head> <title>Create MultipleChoice Questions</title> </head>
    <script language="JavaScript">
    function valid(form) {
    if(form.file.value == ""){
    alert("Please enter the file name");
    frmValid.file.focus();     
    }else{
         frmValid.action="writeXML.jsp";
         frmValid.submit();
    </script>
    <body bgcolor="#cccccc">
    <% int count = 0;
    int qNumber=-1;
    String number = clearNull(request.getParameter("nOfq"));
    if(! number.equals(""))
    qNumber = Integer.parseInt(number);
    %>
    <form name="frmValid" method="POST" >
    <center>
    <table bgcolor="silver" border="1" width="75%">
    <tr align="center"><td><b>Type in the Name of your Questionnaire here eg. BlackHistory. Dont leave any spaces between letters</b><br>
    <textarea name="file" rows="1" cols="25"></textarea><br>
    </td></tr>
    <% for(int i=1;i<qNumber+1; i++) { %>
    <%count++;%>
    <tr align="center" bgcolor="#336699"><td><b>QUESTION <%= count %>: </b><br>
    </td></tr>
    <tr align="center"><td><b>ENTER QUESTION:</b><br>
    <textarea name=<%="questionText"+i%> rows="5" cols="65"></textarea><br>
    </td></tr>
    <tr align="center"><td><b>CHOICE 1:</b><br>
    <textarea name=<%="choice_1"+i%> rows="2" cols="50"></textarea><br>
    </td></tr>
    <tr align="center"><td><b>CHOICE 2:</b><br>
    <textarea name=<%="choice_2"+i%> rows="2" cols="50"></textarea><br>
    </td></tr>
    <tr align="center"><td><b>CHOICE 3:</b><br>
    <textarea name=<%="choice_3"+i%> rows="2" cols="50"></textarea><br>
    </td></tr>
    <tr align="center"><td><b>CHOICE 4:</b><br>
    <textarea name=<%="choice_4"+i%> rows="2" cols="50"></textarea><br><br><br>
    </td></tr>
    <tr align="center" bgcolor="#679995"><td><b>CORRECT ANSWER:</b><br>
    <textarea name=<%="cAnswer"+i%> rows="2" cols="50"></textarea><br><br><br>
    </td></tr>
    <% } %>
    <tr>
    <td align="center"><input type="submit" name="next" value="NEXTT" onClick="valid(this.form)">
    <td align="center"><input type="hidden" name="qCount" value="<%=count+1%>">
    </td></tr>
    </table>
    </center>
    </form>
    </body>
    </html>
    <%!
    private String clearNull( String sField ) {
    return ( sField == null ) ? "" : sField;
    %>

  • Need ability to generate a list of reports/queries that use each universe

    Hi ,
    When we make changes to a universe, I need to be able to identify which queries / reports use that universe.   Would also like to be able to get the name of the person who created the query / report and, if possible, the names of the peple who ran them.
    Thanks & Regards
    Venkat

    You have to fire query in the Query Builder tool.
    The following query will give you the list of IDs of the webi report built on top of the universe.
    select si_webi from ci_appobjects where si_name='Universe_Name'
    Hope this will help you out.

  • Links that use Javascript don't work after I updated Java; can I revert to earlier version?

    I use private messaging to communicate with my doctor. I've always clicked a link ("Private Messaging") which opened a Java (Javascript?) window that displayed my messages and allowed me to write a message. A couple of days ago a message popped up saying that an update was available. I installed the update, now that link won't work. It is very important that I be able to access those messages, making this problem urgent. If anyone has any suggestions, I would greatly appreciate it!
    (I did the Java check recommended on the Mozilla website, and it shows that Java is working and up to date)

    You can try basic steps like these in case of issues with web pages:
    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 the cookies 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 > 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 > Firefox uses the about: protocol to access built-in about: pages that you can open via the location bar just like you open web pages.
    *http://kb.mozillazine.org/About_protocol_links).
    *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

  • List of major websites that use applets?

    I keep hearing and reading that applets are obsolete and were used in the 90's mostly. Do any 'major' websites still use them? Is there a list of such websites?
    Also, have applets been replaced by JavaFX?
    thanks,
    William

    wwuster wrote:
    I keep hearing and reading that applets are obsolete and were used in the 90's mostly. Where do you 'keep hearing' that? URLs to blogs, chat sites, forums or other net based sources, please.
    Note that 95% of the jobs in Java seem to have gone primarily 'server side' - from my viewing of job ads on the east coast of Australia. It is more 'client side' development in general (and media handling in particular) that Sun has had any lapse in.
    One thing that has significantly affected applet deployment rates (if I have anything to do with it) is that a lot of deployers choose a JFrame launched using [Java Web Start|http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp] in preference to an applet embedded in a web page.
    As to applet advances specifically, there were new (JWS based) functionalities introduced in 1.6.0_10 and new security constraints added in 1.6.0_19, so applets are certainly not a forgotten technology in the view of Sun/Oracle.
    ..Do any 'major' websites still use them? Is there a list of such websites?Your Google is as close as mine. Report back.
    Also, have applets been replaced by JavaFX?No.

  • How to search for the list of portal components that use a certain LOV?

    hi,
    does anyone know how to search for all of those portal components which use a certain other component?
    let's make it specific. how can i know which of the portal components (portal reports and forms, content folders, etc) are using any certain LOV?
    will really appreciate any hints.
    naqvi

    Please ask this question in the Oracle Text forum (formerly interMedia text). You will get the experts that work with it every day there.

  • Hyperlinks that use javascript won't redirect to their website

    When I click on hyperlinks that have this type of format
    javascript:__doPostBack('ctl00$ContentPlaceHolderMainContent$ctl00$ServiceProviderRepeater$ctl09$linktosp','')
    nothing happens. I don't even get an error message. This happens on different web sites.
    Hope someone can help! Thanks

    Work here.<br />
    If I paste Санкт-Петербург in the input field then a drop down list with two entries appears.
    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

  • How to list ABAP programs that uses a SAP script form?

    Hello everybody.
    Can you please tell me how to list all ABAP programs that uses a particular SAPscript forms? That is, given a form name, I can then list all programs that uses that form.
    Thanks in advance. I'm trying to Google this same info but I'm having a hard time formulating my search terms.
    Thanks.
    -- Carl

    Hi Carl,
      You can get them from table TNAPR,
      Give the FORM NAME and all the programs are listed
    check this table also TTFXP ,   TTXFPT
    Message was edited by: Chandrasekhar Jagarlamudi
    Message was edited by: Chandrasekhar Jagarlamudi

  • Using JavaScript to Determine a Form's Folder Name

    We have an awful lot of forms, and in many cases, our custom JavaScript applies to all forms in a given folder. We would like to determine the form's folder name so that we don't have to list each and every form in a giant "IF" statement.
    Has anyone figured out how to determine a form's folder using JavaScript?
    Thanks!
    - Jake

    Jake_Turrell wrote:
    I think the only solution to the "refresh" issue would be to somehow query the hsp_object table and grab the parent_id (which for a form is the folder ID). If anyone figures out how to query the application repository from JavaScript,that would be very, very cool.
    As the database is server side and javascript is client side you would have to use something like an ajax call that passes the form id into an jsp script, the jsp script would query the repository and return the value to javascript.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • How to setup FaceTime so I can send and receive calls?

    I'm having issues setting up my mac to make outgoing and receive incoming calls. I've opened Facetime preferences on my mac and I don't see where I can toggle the option to "allow iphone cellular calls" (See attached ScreenShot). Any suggestions / ti

  • Ack.. plug-in incompatible

    Posted this but got zero answers, so here's a repost with sample code.... I am using the MultiList component from VCafe, but it has problems with the Java plug-in (on both IE and NS) I want to stick with AWT and JDK 1.1.8 for various reasons, e.g. ru

  • Severe proxy configuration bug preventing mail access

    Hello, the proxy configuration options for LAN / WIFI networks have a major bug: if a proxy server is set manually, it prevents e-mail accounts from working while being connected to that proxy-enabled network! Interestingly, if the proxy is configure

  • Problems with battery life on idea Tab A2109A

    I have retuned my idea pad twice to lenovo for repair due to long battery charge time and short battery life, received it back yesterday,charged it, downloaded my kobo library,around 10 minutes this morning it is now 55% wifi.bluetooth tec was switch

  • Outlook 2010/Shared calendar showing as busy/no detail

    Hi, user has editor access to another user's calendar yet only free/busy information is showing. The primary user's profile also has a second exchange account on it. Thought this account might be limiting things so gave it editor access as well. Stil