How can I view form details in a popup window?

Recently, something called Babylon assist took control of Firefox and I was forced to reset Firefox to get rid of this. As a consequence, I lost the ability to right click on a page and select from a list that allowed me to view form details in a pop-up window. I used this feature frequently in developing database driven applications that have lots of forms. Can anyone please tell me how to restore this lovely feature? I found something that opens a new tab with the form information in a large format that is rather ugly - I really want to get back to the nice little pop-up that displayed the basic form information.

THANK YOU - your clues led me to the correct add-on. It's called 'Links and Forms' and says that it adds back the links and forms tabs that were in the Page Info window of Firefox 2. I have found it to be very handy in debugging forms that I've created.

Similar Messages

  • How can I view the details of a pending plan change?

    I received a flyer saying I could probably save some money if I came in and changed plans. I went to my local Verizon store and met with an associate who set me up with a new plan to start next billing cycle. He didn't give me any paperwork and I can only find the details for the current plan. How can I view the details for the new one?

    Hello pitviper1091!
    I apologize that you did not receive a receipt in the store. You cannot view a future dated plan change on My Verizon, until the date that it goes into effect. It should go into effect on your new bill cycle. You could return to the store to request a copy of the paperwork, or we could assist you in checking your account to confirm what changes will occur.
    MichelleH_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • How can I view .pdf files in a Firefox window?

    When I click on a .pdf link, Firefox downloads the file to my desktop. This is fine.
    Sometimes, however, I would prefer that Firefox simply open the .pdf document in a new window. I know it used to work this way, but it stopped some time ago. How can I control this behavior?
    I looked in Preferences > Applications and selected on "pdf". Two entries showed up under "Content Type":
    "Preview.app Document (application/po..."
    and
    "Portable Document Format (PDF)".
    Both entries have the same "Action": "Use PDF Browser Plugin 2.4.4 (in Firefox)"
    Oops. I just figured it out. The PDF entry (only) has an extra pulldown option under Action: "Preview in Firefox". I tried it and it works!
    I guess the old PDF Browser Plugin 2.4.4 must've quit working some time ago.
    --Gil

    We're good here, thanks. I went ahead and posted in case someone else had the same problem.
    Although... if you know how I might clean out that now-obsolete PDF Browser Plugin 2.4.4, I'd appreciate the tip.
    --Gil

  • How can I show a textarea in a popup  window

    Hi,
    Thankyou for reading this post, but can I state from the outset that I don't want to show a whole page in a popup window - I have read lots
    of posts and googled-pages on that topic so please don't drive down that route.
    I have a table with a few columns in it. One of those columns is a varchar2(4000), and in there is a nicely formatted block of text.
    I want to create a report in an Apex page on the aforementioned table, but have it so that this block of text does not appear in the report but does appear in a modal popup area. So the popup will appear,
    and will have the text block in it, and will have some sort of "close" button too.
    The popup to be modal.
    It doesn't sound like a tricky thing to do, but various searches around the area seem to dredge up different variations that don't seem to be
    malleable enough for me to re-shape them into what I want.
    Any help gratefully received; thanks in advance.
    Mungo
    Edited by: MungoHenning on Oct 1, 2011 3:34 AM

    Hi Jari,
    Ta for the help.
    Anything negative I say might be misconstrued as being ungrateful, but I have sincere thanks for your efforts.
    The boxes on the web page at http://dbswh.webhop.net/dbswh/f?p=BLOG:READ:0::::ARTICLE:1631800346026542 have a limited width. This happens often on my screen - I have a wide screen monitor with two black vertical
    bands either side of useful space that never seems to be occupied with useful stuff. These bands are approximately three inches wide - please would all developer readers spare a thought for those with wide screens that want
    to use the blooming things!
    Because of the "horizontally-squashed" nature of the page, it's not that obvious that some boxes have additional text not shown to the far right. I can easily click, do control-A and then control-C. I wonder whether every other
    reader would be aware of this.
    It's a small point, but you don't really want to be snowed under with ten zillion replies of "I canny get this to work", only to have to get back with "there is more text hidden off to the far right of the box".
    Also, your instructions are "do this, do that" without a wee word of explanation. Again, I'm skating on thin ice here: I do appreciate your efforts and you've helped me on a few ocassions in the past, but others might like to be
    let in on the secret of what each steps involves.
    Part of your instructions involves changing one column in the report, and then you say "Add Link Column to report and set Link Text".
    What does this mean:
    1) Add a NEW column to the report
    2) Keep editing the CURRENT column since there's no "save the changes" instruction
    There's two mentions of setting "Standard Report Column", so does this imply there are two distinct columns?
    You say 'Create dynamic Action "Set Dialogs". Select Advanced' - I create a dynamic action, have to make a choice between Standard and Advanced and
    then am presented with the dialog asking for the name of this new dynamic action. How about rephrasing as 'Create a new Dynamic Action; select "Advanced", enter the name as "Set Dialogs" '.
    The sequence is important; if I have to re-read, re-parse and re-order a sentence then it becomes frustrating for us already struggling with the technology.
    The menu choice of "None" to "Selection Choice" is not visible to me.
    I followed your instructions but nothing seems to happen - I guess my choice of the "Add Link Column" was the wrong one, hence I will go back
    and play with that.
    Although you may not believe me, sincere thanks for your efforts. My comments above are meant to reduce the volume of follow-up feedback that you may experience from your work.
    Ta again Jari
    Mungo

  • How to open a form action in a popup window?

    I have a form that has a submit button and a email button.  The email button calls a javascript fuction that will execute a mailform script.  everything is working fine, but I would like the output window from the mail formscript to open in a popup, but currently is opening in a blank page.
    currently hte output from the mail script will open in a _blank window.
    Thanks in advance for your help
    Here is the html code:
    <FORM name="drop_list" action="<?php echo $editFormAction; ?>"" method="POST" >
        <input name="emailForm" type="button" id="emailForm" onClick="sendFormEmail()" value="Email">
        <input name="add_patient" type="submit" id="add_patient" onclick=document.drop_list.action='<?php echo $editFormAction; ?>' value="Add Patient">
    Here is my javascript code:
    function sendFormEmail() //email form
                        document.drop_list.action = "html_form_send.php";
                        document.drop_list.target = "_blank";
      document.drop_list.submit();            // Submit the page
                        return true;
    and here is the html_form_send.php
    <?php
    if(isset($_POST['patient_email'])) {
        // CHANGE THE TWO LINES BELOW
              $email_to = '[email protected]';
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
    //    validation expected data exists
        if(!isset($_POST['patient_name']) ||
                     !isset($_POST['patient_email']) ||
                                  !isset($_POST['textBox']) ||
                     !isset($_POST['doc_comment']))
        //    died('We are sorry, but there appears to be a problem with the form you submitted.');      
        $first_name = $_POST['patient_name']; // required
        $email_from = $_POST['patient_email']; // required
              $comments = $_POST['doc_comment']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Patient Email you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$first_name)) {
        $error_message .= 'The First Name you entered does not appear to be valid.<br />';
      if(strlen($comments) < 2) {
        $error_message .= 'The Comments you entered do not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
       function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
    // set subject line
        $email_subject = "referral form for " .$first_name ;
    // format message body
              $email_message = '<html><body>';
              $email_message .= '<table border="0">';
              $email_message .= "<tr ><td width='125' style='background: #eee;'><strong>Name:</strong> </td><td>" . strip_tags($_POST['patient_name']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Patient Phone:</strong> </td><td>" . strip_tags($_POST['patient_phone']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Side:</strong> </td><td>" . strip_tags($_POST['bodySideOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Area:</strong> </td><td>" . strip_tags($_POST['bodyPartOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Diagnosis:</strong> </td><td>" . strip_tags($_POST['subbodyPartOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Sub Cat:</strong> </td><td>" . strip_tags($_POST['subCatOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Injury2</strong> </td><td></td></tr>";
              $email_message .= "<tr><td><strong>Side2:</strong> </td><td>" . strip_tags($_POST['I2bodySideOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Area2:</strong> </td><td>" . strip_tags($_POST['I2bodyPartOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Diagnosis2:</strong> </td><td>" . strip_tags($_POST['I2subbodyPartOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Sub Cat2:</strong> </td><td>" . strip_tags($_POST['I2subCatOutput']) . "</td></tr>";
              $email_message .= "<tr><td><strong>Doctor Comment:</strong> </td><td width='125' style='background: #eee;'>" . strip_tags($_POST['doc_comment']) . "</td></tr>";
              $email_message .= "</table>";
       $email_message .= "</body></html>";
    // To send HTML mail, the Content-type header must be set
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    // Additional headers
    $headers .= 'From: '. $email_to."\r\n";
    //$headers .= 'CC: '. $email_to. "\r\n";
    //$headers .= 'From: '. $email_from. "\r\n";
    //$headers .= 'CC: '. $email_from. ',' . $email_to."\r\n";
    //send mail
    mail($email_from, $email_subject, $email_message, $headers);
    //mail($email_from, $email_subject, $email_message, $headers);
    ?>
    <!-- place your own success html below -->
    Email Sent
    <?php
    die();
    ?>

    Im currently trying to take all the validation out of the mail script and do it in the html page itself. 
    Bad choice.   Client-side form validation isn't secure  and it does not work if JavaScript is disabled.  A fair number of people turn off JavaScript or use one of the No-Scripts Add-ons in their browsers for perceived security reasons.
    Don't forget, spam bots don't use JavaScript either so they will penetrate your forms without missing a beat. 
    Server-side validation is very reliable.  And if your script is built properly, it can stop robot submissions and exploitation of your forms which is very important these days.
    Nancy O.

  • How can I view a completed form as the person filling it out sees it

    How can I view a completed form as the person filling it out sees it. The text that is a part of the form does not print when the record(from) is printed.

    We now support saving a response from the View Responses tab to PDF (that retains the form design shown on the Design tab). The PDF can be shared, archived or printed using Adobe Reader.
    You can read more about it here: http://forums.adobe.com/thread/1085672
    Please try it out and give us your feedback.
    Randy

  • How can i view all my messages i posted in this form?

    hello,
    how can i view all my messages i posted in this form?
    i can view only the recent message i sent.
    is thier any way to view all my message i posted
    thaks
    daya

    Do a forum Serach for your screen name.

  • How can I make a detailed form widget into TWO columns?

    how can I make a detailed form widget into TWO columns? I have a contact form with a lot of fields.

    Hi Whatsmyjam9999,
    You can place a blank composition widget then click tigger 1, click inside target 1 and from menu--> files--> place the image and adjust it's dimensions, you can repeat the same steps for trigger 2 and 3
    Here is a video link http://ghai2.worldsecuresystems.com/jing/2013-07-22_1442.swf

  • How Can I View Others Form?

    How can i view others form? How can i give my response to others made form?

    Hi;
    I am not clear on exactly what you are asking so I'll give a few answers. 
    You can "Distribute" the form:  To share a fillable form simply give anyone the forms URL from the Distribute tab, or get the URL from anyone else who's form you want to fill out. 
    You can also "Collaborate", share the design with another FormsCentral user and allow them to view the responses:  http://forums.adobe.com/docs/DOC-3351
    In addition you can "Publish Responses" which creates a link/URL that anyone can go to and view the responses in the Summary Report and/or Response Table.
    Hopefully one of those is what you are looking for, let me know if you need more info on any of them.
    Thanks,
    Josh

  • How can I view Artwork on iTunes for 1 or 3 songs per Album?

    So, I am on my iTunes. On the previous Version of iTunes, you can have the list of Albums and view at the same time the Artwork whether it was for 10, 20 songs or even just 1 song. With the new version, there are four icons on the Upper Right where you can view "Cover Flow", "Album Covers", "Detailed List", "Detail List with Album Artwork"...
    When I click on the "Detail List with Album Artwork" and I want to view the Artwork for those albums that I only have 1, 3, or just 5 songs, I cannot view the Artwork. I can only view the Artwork (if for example) those with more then 10 songs.
    How can I view the Artwork at the same time as with those that I am able to?

    I can only view the Artwork (if for example) those with more then 10 songs.
    iTunes menu View > Aways show artwork.
    iTunes defaults to show artwork for albums with 5 or more songs.

  • How can I get a detail block to requery after a database change?

    Hi, I have a master/detail form. When the status of the master record changes, I need to update a date in one of the detail records. If I use SQL to update the detail row in the database in the ON-CHANGE trigger of the master block, how can I get the detail block to requery to show the change? When I try doing a go_block from any of the ...UPDATE triggers, it says it is restricted.

    wjpenfold,
    Do you have a "Relationship" defined between your Master and Detail blocks? If so, you simply need to requery your master block and the detail block will automatically be requeried. If you can't use a relationship, then you can use can create a timer in the trigger that updates the database and then in the When-Timer-Expired (WTE) trigger you can go to the detail block and execute a query. For example:
    /* Sample On-Change trigger */
    DECLARE
       timer_id  TIMER;
    BEGIN
    ....your code here that performs the update....
       /* Now create an instance of a timer */
       timer_id := Create_Timer ('upd_detail',1,NO_REPEAT);
    END;
    /* Sample Form Level When-Timer-Expired trigger */
    DECLARE
       timer_id   TIMER;
    BEGIN
       -- Find the timer first
       timer_id := FIND_TIMER('upd_detail');
       IF NOT ID_NULL(timer_id) THEN
          GO_BLOCK('DETAIL_BLOCK');
          Execute_Query;
       END IF;
    END;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How can i view the data from Access DB in oracle

    pls tell me that how can i view the data of MS ACCESS DATABASE in ORACLE.i was use ODBC of ACCESS DATABASE AND THEN CREATE DATABASE LINK IN ORACLE BUT NOT YET SUCCEEDED.PLS TELL ME THE PROCEDURE.
    regard's

    hi,
    u nedd to use Oracle Hetrogeneous Services,,
    full details of the procedure u may fing on metalink
    Regards

  • After downloading a pdf from a website, how can I view the file in Safari 6.0.4 (just as I can in Safari 5.0.6)?  I bet that it's simple, but I've missed something, somewhere, and a solution will be greatly appreciated.

    After downloading a pdf from a website, how can I view the file in Safari 6.0.4 (just as I can in Safari 5.0.6)?  I bet that it's simple, but I've missed something, somewhere, and a solution will be greatly appreciated.

    Hello Kirk,
    Thank's for your efforts, and I just wish that this was the solution.  Unfortunately, it isn't because, after double-clicking on the pdf in the website, it simply "opens" in another Safari window as a black screen - the pdf is there, somewhere, but not visible (either as an icon, or as a document). 
    When I right-click in the black Safari window, where the file is supposed to be, the only option available to display the file is to "Open file in Internet Explorer" (which is not what I want to do).  Other options include saving or printing the pdf, which I don't want until I've confirmed that it's the form that I want.  The same options are offered if I right-click on the file icon in the website.
    Any other suggestions, please?

  • How can I view information about an image, such as the file name and exposure,  on the Ipad?

    how can I view information about an image, such as the file name and exposure,  on the Ipad?

    You can't with the built-in Photos app, but there are apps such as iPhoto which allow you to see the exposure details (aperture, shutter speed, focal length, ISO). PhotoMeta also shows you that info

  • How can I view submitted responses in their entirety?

    How can I view submitted responses to FormsCentral in their entirety?  The forms were created in Word, made fillable in Acrobat XI, and made submittable in  FormsCentral Plus via our company's website.  I'd like to receive the completed form in its original format rather than sorted by question.  Is this possible?

    For imported PDF files, you currently can not save a response into the original PDF. We will be adding this capability at the end of January (in a few weeks).
    Sorry to have to make you wait.
    Randy

Maybe you are looking for