content in the form url

Hi all

Im trying to make a widget who access my site web application (all I want is a mode full-screen without url bar)

Here is my configuration

a folder with icons files and config.xml file


http://www.w3.org/ns/widgets ".
"xmlns:RIM ="http://www.blackberry.com/ns/widgets"
version "2.0.0.0" = >

Mobile CAM


An example application to demonstrate some of the possibilities.
 

RIM: allowInvokeParams = "true" / >


 

When I pack my widget with ripple and try it in my blackberry Simulator I have a white screen and nothing else

Thanks in advance and sorry for my bad English

Hi, Freddy.

You work behind a proxy server?

http://supportforums.BlackBerry.com/T5/Web-and-WebWorks-development/issues-with-RIpple-behind-a-PROX...

Tags: BlackBerry Developers

Similar Questions

  • Save the contents of the form elements in a txt file


    Hello

    I am trying to save the contents of the form to a text file by clicking on a button. For example, in my form, I have 4 text boxes

    1. client code

    2 Subscriber

    3. customer name

    4. customer name

    There is a backup button in the page. Once I click on save button, I get a download prompt to save the file (txt file). The txt file must contain the values of the fields in each line. Can we achieve using Apex?

    Thank you

    TJ

    Hi TJ.

    Yes, its possible. For this you must use a bit of PL/SQL Code.

    In the page, you create a branch;

    Branch point = to present: after the treatment (after calculation, Validation and treatment);

    Type branch = branch of PL/SQL procedure

    And the branch code, you have to have something like this:

    declare

    CLOB v_clob;

    v_blob blob.

    dest_offset NUMBER: = 1;

    offset NUMBER: = 1;

    amount INTEGER: = dbms_lob.lobmaxsize;

    blob_csid NUMBER: = dbms_lob.default_csid;

    lang_ctx INTEGER: = dbms_lob.default_lang_ctx;

    caveat INTEGER;

    V_LENGTH NUMBER;

    Start

    DBMS_LOB.CREATETEMPORARY (v_clob, true);

    DBMS_LOB.CREATETEMPORARY (v_blob, true);

    v_clob: = ' ID: ' | : PXX_ID | »

    Geographical area: ' | : PXX_LOCATION | »

    First name: ' | : PXX_LAST_NAME | »

    First name: ' | : PXX_FIRST_NAME;

    DBMS_LOB. () CONVERTTOBLOB

    v_blob,

    v_clob,

    amount,

    dest_offset,

    offset,

    blob_csid,

    lang_ctx,

    (caveat);

    V_LENGTH: = dbms_lob. GETLENGTH (v_blob);

    --

    -set up the HTTP header

    --

    owa_util.mime_header ("application/octet ', FALSE");

    -set the size so that the browser knows how to download

    HTP.p ("Content-length: ' |") v_length);

    -the name of the file will be used by the browser if users only one save as

    HTP.p ('Content-Disposition: attachment; filename = "download.txt" ');

    -close the headers

    owa_util.http_header_close;

    -Download the BLOB

    wpg_docload.download_file (v_blob);

    end;

    See you soon

    Carlos Pereira

  • Prevent users from cut and paste content in the form fields (form data)

    Hello

    I have a requirement where there are two fields: "Enter the email address" and "Re-enter E-mail address. The form should not allow the user to copy - paste the email address in the field enter again. It must be entered manually. Is it possible through javascript? Or by setting the properties of the form with LiveCycle Designer? I use the version of the Es4. I am aware that I can restirct user copy the content in the form. Solution for bonding of retrict will be highly appreciated.

    Thanks in advance,

    Radhika

    Hello

    You can check if the Ctrl key is pressed while the new value is entered in a field.

    If you can at least avoid pasing via Ctrl + V key combination.

    if (xfa.event.change.length > 1 || xfa.event.modifier === true ) {
        xfa.event.change = "";
    }
    
  • How can I send an auto-reply with the contents of the form to the sender?

    Hai!

    I am new to building websites, but I came a long way

    I made a form and I want to send an AutoReply with the content of the form (if it is not too hard) to the person who completed.

    What I did is in PHP (coding I copied in part by a person of the internet .)

    You can see the of to: http://vinddit.nl/vindditnu%20php%20version.php

    So far my PHP coding

    <? PHP

    Variables Set email

    $email_to = ' [email protected] ';

    $email_subject = "request - VINDDIT NU!"

    Set required fields

    $required_fields = array('Voornaam','email','Achternaam','Plaats');

    Set error messages

    $error_messages = array)

    "Chairwoman" = > "John yesterday uw Chairwoman in NL.

    'email' = > ' John yesterday een geldig e-mail adres in NL.

    "Achternaam" = > "John yesterday uw achternaam in NL.

    'Place' = > ' John yesterday uw spend in NL.

    );

    Status of form

    $form_complete = FALSE;

    Configure the validation table

    $validation = array();

    check form submission

    {if (!) Empty($_POST))}

    Clean up the POST table

    foreach ($_POST as $key = > $value) $_POST [$key] = remove_email_injection (trim ($value));

    Loop in the required fields and make sure that they fit our needs

    foreach ($required_fields as $field) {}

    the area has been submitted?

    If (! array_key_exists ($field, $_POST)) return ($validation, $field);

    check the information in the field?

    If ($_POST [$field] == ") return ($validation, $field);

    validate the e-mail address provided

    If ($field == 'email') if (! validate_email_address($_POST[$field])) return ($validation, $field);

    }

    result of the basic validation

    If (Count ($validation) == 0) {}

    Prepare our content string

    $email_content = "new website comment: '. '\n\n';"

    the simple e-mail content

    foreach ($_POST as $key = > $value) {}

    If ($key! = 'submit') $email_content. = $key. ': ' . $value. "\n";

    }

    If the success of the validation ok then send e-mail

    mail ($email_to, $email_subject, $email_content);

    Switch to update form

    $form_complete = TRUE;

    }

    }

    function validate_email_address ($email = FALSE) {}

    return (preg_match ('/ ^ [^@\s] + @([-a-z0-9]+\.) + [a - z] {2}, $/ i', $email))? TRUE: FALSE;

    }

    function remove_email_injection ($field = FALSE) {}

    return (str_replace (array ("\r", "\n", "0%", "% 0 d", "Content-Type:", "bcc:","to:","cc:"), ", $field));

    }

    ? >

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > ""

    " < html xmlns =" http://www.w3.org/1999/xhtml "XML: lang ="fr"lang ="fr"> ".

    < head >

    form < title > < /title > request

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < link href = "style.css" rel = "stylesheet" type = "text/css" / > "

    " < script type =" text/javascript"src =" https://AJAX.googleapis.com/AJAX/libs/MooTools/1.3.0/Mootools-YUI-compressed.js "> < / script > .

    < script type = "text/javascript" src = "validation/validation.js" > < / script >

    < script type = "text/javascript" >

    var nameError = ' <? PHP echo $error_messages ['fullname'];? > ';

    var emailError = ' <? PHP echo $error_messages ['email'];? > ';

    var commentError = ' <? PHP echo $error_messages ['comment'];? > ';

    function MM_preloadImages() {//v3.0

    var d = document; If (d.images) {if(!d.MM_p) d.MM_p = new Array();

    var i, j is d.MM_p.length, a = MM_preloadImages.arguments; for (i = 0; i <.) Length; i ++)

    If (a [i].indexOf("#")! = 0) {d.MM_p [j] = new Image; d.MM_p [j ++] .src = a [i] ;}}

    }

    < /script >

    < style type = "text/css" >

    < / style >

    < / head >

    < body onload = "MM_preloadImages('icons/x.png')" >

    < p > < / p >

    < p >

    <? PHP if($form_complete === FALSE)?: >

    < /p >

    < form action = "vindditnu php feed.php" method = "post" enctype = "application/x-www-formulaires-urlencoded" name = "Form" id = "commentsform" >

    < h1 > < img src = "icons/vinddit3.gif" width = "220" height = "80" alt = "logo" / > < / h1 > "

    < h1 > Wat u zoekt? : < / h1 >

    < table width = "690" border = "0" >

    < b >

    < td > in welke category zoekt u? * < table >

    < td colspan = "3" > < select name = "Ophalen_verzenden" id = "Ophalen_verzenden" >

    < option selected = "selected" > Meubels < / option >

    Witgoed < option > < / option >

    < option > Accessories Woon < / option >

    Kleding < option > < / option >

    Shoes < option > < / option >

    < option > Mode accessories < / option >

    Speelgoed < option > < / option >

    Boeken, / tɛjd.sχɾɪft /, papierwaren < option > < / option >

    < option > Overig < / option >

    < / select > < table >

    < /tr >

    < b >

    < td > Kleur: * < table >

    < td colspan = "3" > < select name = "using" id = "using" >

    Blauw < option > < / option >

    Rood < option > < / option >

    WIt < option > < / option >

    Zwart < option > < / option >

    Beige < option > < / option >

    Bruin < option > < / option >

    < option > Geel < / option >

    Oranje < option > < / option >

    Rood < option > < / option >

    < option > metal (great. REFLECTOR, Goud, Brons, Koper < / option >

    < option > Meerkleurig < / option >

    < option selected = "selected" > Overig / nadège < / option >

    < / select > < table >

    < /tr >

    < b >

    Merk < td >: < table >

    < td colspan = "3" > < input name = "Me" type = "text" id = "Merk5" value = "<?" PHP echo isset($_POST['Merk'])? $_POST ['Merk']: "?; ">" / >

    <? PHP if (in_array ('Brand', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['Merk'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    < td > design: < table >

    < td colspan = "3" > < input type = "text" name = "type" id = 'type' value = "<?" PHP echo isset($_POST['type'])? $_POST ['type']: "?; ">" / >

    <? PHP if (in_array ('type', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['type'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    Art < td >: < table >

    < td colspan = "3" > < input name = "Art" type = "text" id = "Case" value = "<?" PHP echo isset($_POST['Materiaal'])? $_POST ["art"]: "?; ">" / >

    <? PHP if (in_array ('Art', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ["art"];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    Maat < td >: < table >

    < td colspan = "3" > < input type = "text" name = "Maat" id = "Maat" value = "<?" PHP echo isset($_POST['Maat'])? $_POST ['Maat']: "?; ">" / >

    <? PHP if (in_array ('Maat', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['Maat'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    < td > condition *: < table >

    < td colspan = "3" > < select name = "condition" id = "condition" >

    Zo goed als nieuw < option > < / option >

    < option > Nieuw < / option >

    < option > Bebruikt < / option >

    < option selected = "selected" > Geen information < / option >

    < / select > < table >

    < /tr >

    < b >

    < td > collect/question: * < table >

    < td colspan = "3" > < select name = "collect" id = "collect" >

    Collect < option > < / option >

    < option > question < / option >

    < option > n < / option >

    < option > Geen information < / option >

    < / select > < table >

    < /tr >

    < b >

    < td > Prijs Min: < table >

    < td > < input name = "prijsmin" type = "text" id = "prijsmin" size = "10" value = "<?" PHP echo isset($_POST['prijsmin'])? $_POST ['prijsmin']: "?; ">" / >

    <? PHP if (in_array ('prijsmin', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ["prijsmin"];? > < / span >

    <? PHP endif;? > < table >

    Max de Prijs < td >: < table >

    < td > < input name = "Price" type = 'text' id = "Prijs" size = "10" value = "<?" PHP echo isset($_POST['Prijs'])? $_POST ['price']: "?; ">" / >

    <? PHP if (in_array ('Prijs', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['price'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < /table >

    < h1 > unstable: < / h1 >

    < table width = "690" border = "0" >

    < b >

    < td = "25" height > unstable: < table >

    < td rowspan = "2" > < textarea name = "Unstable" cols = "67" lines = '10' id = 'Unstable' > <? PHP echo isset($_POST['Opmerkingen'])? $_POST ['unstable']: "?; > < / textarea >

    <? PHP if (in_array ('Unstable', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages 'unstable'?; > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    < td = "78" height > < table >

    < /tr >

    < /table >

    < h1 > Uw Gegevens: < / h1 >

    < table width = "690" border = "0" >

    < b >

    < td > Chairwoman / Voorletters *: < table >

    < td > < input type = "text" name = "Chairwoman" id = "Chairwoman" class = "invul" value = "<?" PHP echo isset($_POST['Voornaam'])? $_POST ['Chairwoman"]:"?; ">" / >

    <? PHP if (in_array ('Chairwoman', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ["Chairwoman"];? > < / span >

    <? PHP endif;? > < table >

    < td > Achternaam: * < table >

    < td > < input type = "text" name = "Achternaam" id = "Achternaam" class = "invul" value = "<?" PHP echo isset($_POST['Achternaam'])? $_POST ["Achternaam"]: "?; ">" / >

    <? PHP if (in_array ("'Achternaam", $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ["Achternaam"];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    Straatnaam < td >: < table >

    < td > < input type = "text" name = "Straat" id = "Straat" class = "invul" = value "<?" PHP echo isset($_POST['Straat'])? $_POST ['Straat']: "?; ">" / >

    <? PHP if (in_array ('Straat', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ["Straat"];? > < / span >

    <? PHP endif;? > < table >

    Huisnummer < td >: < table >

    < td > < input name = "Huisnummer" type = "text" id = "Huisnummer" class = "invul" size = "10" = value "<?" PHP echo isset($_POST['Huisnummer'])? $_POST ['Huisnummer"]:"?; ">" / >

    <? PHP if (in_array ('Huisnummer', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ["Huisnummer'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    Code postal < td >: < table >

    < td > < input type = "text" name = "PostalCode" id = 'postal Code' class = "invul" value = "<?" PHP echo isset($_POST['Postcode'])? $_POST ['postal code']: "?; ">" / >

    <? PHP if (in_array ('Postcode', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['postal code'];? > < / span >

    <? PHP endif;? > < table >

    < td > place: * < table >

    < td > < input type = "text" name = "Place" id = "Place" class = "invul" value = "<?" PHP echo isset($_POST['Plaats'])? $_POST ['place']: "?; ">" / >

    <? PHP if (in_array ('Place', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['place'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    < td > email Adres: * < table >

    < td colspan = "3" > < input type = "text" name = "email" id = "email" class = "invul" = value "<?" PHP echo isset($_POST['email'])? $_POST ['email']: "?; ">" / >

    <? PHP if (in_array ('email', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['email'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < b >

    Number < td >: < table >

    < td colspan = "3" > < input name = "Categories" type = "text" id = "Categories" class = "invul" value = "<?" PHP echo isset($_POST['Telefoon'])? $_POST ['categories']: "?; ">" / >

    <? PHP if (in_array ('Téléphone', $validation)):? >

    < span class = "error" > <? PHP echo $error_messages ['categories'];? > < / span >

    <? PHP endif;? > < table >

    < /tr >

    < /table >

    < p >

    < label for = "Straat" > < / label >

    < label for = "Huisnummer" > < br / >

    < / label >

    < input type = "submit" name = "Submit" id = "Submit" value = "Verstuur" / >

    < input type = "reset" name = "Reset" id = "Reset" value = "Wissen" / >

    < /p >

    < / make >

    <? PHP else:? >

    < div class = "fresh" >

    < p > Bedankt voor uw request! < /p >

    < p > Wij zullen uw request zo mogelijk processing soon. Meestal if said 2-3 werkdagen. < /p >

    < p > < img src = "icons/vinddit3.gif" width = "220" height = "80" alt = "logo" / > < / p > "

    < / div >

    < p >

    < script type = "text/javascript" >

    setTimeout ("ourRedirect ()", 5000)

    function ourRedirect() {}

    }

    < /script >

    <? PHP endif;? >

    < / body >

    < / html >

    and. JS

    window.addEvent ('domready', function() {}

    Get the form

    var form = $('comments_form');

    If the form is...

    If {(form)

    get the error fields

    var name = $('fullname');

    e-mail var = $('email');

    Var comment = $("commentaire");

    Set the default state

    var isValid = true;

    function of input for the error messages error

    addError var = function (field, msg) {}

    field.addClass ('error'); Add the error class to the field

    var error = field.getParent () .getElement ('span') | new element ('span', {'class': 'error'}); Add error message if not already placed

    Error.Set ("text", msg); error text msg

    Error.Inject (field, 'after'); Insert the error message after field

    };

    detach the function of error used to remove the error messages and remove the error class

    removeError var = function (field) {}

    field.removeClass ('error'); Remove the error of form fields class

    var error = field.getParent () .getElement ('span'); find the existing error messages

    destroy if error message

    If {(error)

    Error.Destroy ();

    }

    };

    Insert the form submit event

    form.addEvent ("submit", function (e) {}

    Length of the name of test

    If (name.get('value').length = 0) {}

    isValid = false;

    addError (name, nameError);

    } else {}

    isValid = true;

    removeError (name);

    }

    check the length of e-mail

    If (email.get('value').length = 0) {}

    isValid = false;

    addError (e-mail, emailError);

    check the validity of the email

    } else if (! email.get('value').test (/ ^ ([a-zA-Z0-9 + Zinsou-] +) (\.))) [a-zA-Z0-9\+_\-]+)*@([a-zA-Z0-9\-]+\.) + [a-zA-Z] {2, 6} ($/)) {}]

    isValid = false;

    addError (e-mail, emailError);

    } else {}

    isValid = true;

    removeError (email);

    }

    check the length of the comment

    If (comment.get('value').length = 0) {}

    isValid = false;

    addError (comment, commentError);

    } else {}

    isValid = true;

    removeError (how);

    }

    If the invalid form then stop occurrence of the event

    If (! isValid) {}

    e.Stop ();

    }

    });

    }

    });

    If the success of the validation ok then send e-mail

    mail ($email_to, $email_subject, $email_content);

    Only, you should be able to add automatic response php code before "mail" works in your existing php code (marked in red below). Then add another function of mail after the function of main e-mail as shown below.

    build the auto answer

    $reply = $_POST ['email'];

    $replysubject = "auto-Reply: name of the Web site;

    $replyfrom = "from: [email protected]\r\n";

    $replymessage = 'your request has been sent successfully. A member of the staff is reviewing your request and is soon in contact. Thankyou.\r\n\r\n ';

    $replymessage. = 'yours Sincerely, \r\n ";

    $replymessage. = 'Position in society - society Name\r\n ';.

    $replymessage. = "this email is automated, so please NO reply.\r\n;

    If the success of the validation ok then send e-mail

    mail ($email_to, $email_subject, $email_content);

    mail ($reply, $replysubject, $replymessage, $replyfrom);

  • pass the content of the form dreamweaver field...

    Hello my script below:

    < script type = "text/javascript" >

    function OnSubmitForm()

    {

    If (checked document.myform.operation [0] == true)

    {

    document. MyForm.action = "https://webtrace.etdatacenter.com/webtrace.aspx?accesstype=autologin & cust = id_015 & user = temp lateuser."

    }

    on the other

    If (checked document.myform.operation [1] == true)

    {

    document. ' MyForm.action ='https://carrierconnect.etdatacenter.com/Default.aspx?accesstype=autologin & cust = id_015 & user = user name";

    }

    Returns true;

    }

    < /script >



    < form name = "myform" target = "_blank" method = "post" action = "" onsubmit = "return OnSubmitForm()"; > "
    < fieldset >
    < legend > < font color = "#FFFFFF" > CONNECTION < / police > < / legend >
    user name: < input type = "text" name = "user name" / > < br / > < br / >
    password: < input type = "password" name = "password" / > < br / >
    < input type = "radio" name = value 'operation' = '1' checked = "checked" / > < font size = "-1" > customer < / police >
    < input type = "radio" name = value "operation" = "2" / > < font size = "-1" > booking Web < / font >
    < input type = "submit" name = "submit" value = "submit" / >
    < / fieldset >

    < / make >

    The user fills their username and Word of past and then selects either "customer management" or "web booking" box... Based on radio button selected, they are directed to

    https://webtrace.etdatacenter.com/webtrace.aspx?accessType=autologin & cust = id_015 & User = user name if 'followed customer' or

    https://carrierconnect.etdatacenter.com/Default.aspx?accesstype=autologin & cust = id_015 & user = username if 'web booking '.

    How to pass the user content where I currently have "username", which corresponds to the form field, but I need to move the content.

    Thank you

    If (checked document.myform.operation [0] == true)

    {

    document. "MyForm.action ="https://webtrace.etdatacenter.com/webtrace.aspx?accesstype=autologin&c ust = id_015 & user = templateuser. "

    }

    on the other

    If (checked document.myform.operation [1] == true)

    {

    document. MyForm.action ='https://carrierconnect.etdatacenter.com/Default.aspx?accesstype=autolo gin & cust = id_015 & user ="+ document.myform.username.value;

    }

  • URL of the form values

    I write trying to pass the content of the form through the url when the form is submitted. But it does not work
    The validations work, but when it comes to display the values of the form

    Got, it works. A modified method to get

  • How we can print the page numbers for the shape of the TABLE OF CONTENTS when her excluded from the form page count?

    Hi Experts,

    We have the TABLE OF CONTENTS, followed by 100 forms totally 215 pages.

    We checked in the exclusion of the option of number of form page SUMMARY form at the level of the group.

    Followed forms of TABLE OF CONTENTS forms all use FORMSETPAGENUM rule at the bottom of page.

    the first form followed by TABLE OF CONTENTS form the number starts page 1 of 215 and the last form closes at 215 215.

    Now, I want to print the Page number of SUMMARY form only.

    How can do us?  Any thoughts?

    Kind regards

    RAMAN C

    Hello Raman,

    I guess that you included "Exclude the number of pages" option in the form of table of content (TOC).

    There is a limitation in the studio. The functions of page number (PAGE NUM OF FORM / FORMSET PAGE OF NUM) will be ineffective when we choose the option "Exclude the number of pages" in the form of table of contents. Therefore, you was not able to print many pages of form as a table of contents.

    The only way to print the number of pages is to deselect the option "exclude the number of pages. Then you can print the number of pages in the table of contents in the form of table of contents normally. However, this number of pages in the table of contents will add to the Total number of pages form set. The number of pages all forms can be controlled by Postransdal using the script [FORMSET PAGE NUM = TotalPages() - 1]

    Kind regards

    Mahesh

  • Can I change the image on the same URL in the component library?

    Hello

    I want to change an image in content at the same URL eloqua library and it will change the image on all the places?

    Hi Pooja,

    Yes there is a way, and it's "do right click on the image--> click Open" in the opened window, there is an "update Image", it gives you access to the replacement image. It will update the image in all the places where ever the given URL is used. In addition remember that you must also have permission all (edit, delete, view...) on the image.

    I hope this helps.

    Concerning

  • Not available in the form/triggers section GETFORMATTRIB()

    Hi all

    I wonder why the DAL - GETFORMATTRIB() function returns nothing when used in a trigger / image of the form.

    Attribute values are defined on all forms well in advance and why they cannot be made available before Gendata()? Any reason?

    Thank you!

    Navin

    The shape attributes and metadata are part of the content of the form stored in the library resource. The trigger process is not actually load the form of the library resource and therefore doesn't have access to the content in the form. The normal procedure is that trigger decide to register the form based on your data extract and then the form is loaded in the library. After you add the form, you can then check the attributes and metadata assigned to the form.

    I guess - with a few improvements - there may be some attributes that are defined in the file list form (Group) for a given form that could be accessed during the firing process, but as a general rule, no one wants that the drop in performance of the loading of the library forms that may not become part of the transaction. Therefore, all the attributes defined in the form itself will be unavailable before the outbreak.

  • required solution: how to put some text on account of the position of the last page in the form?

    Hi friends,
    I need your suggestions of urgency the problem described below. Long story somehow. Appreciate your interest & suggestions.
    ==============Clip==============
    I have a requirement of form design some text content to appear only on a fixed position of the last page.
    The form will be multi-page.

    Here's the way I tried

    (1) on the master page:
    Add text object lblEnding (w = 176mm, h = 45mm)
    Wrap lblEnding in subform (frmEnding)
    Do frmEnding on on-call position (x = 20 mm, y = 200 mm, l = 176 mm);


    (2) on bodypage:
    Add text object lblBlank; (without border & transparent). He used to occuping the area of the page to the bodypage flow
    Wrap lblBlank in the frmBlank subform, sank, from top to bottom.

    (3) Note: The last mandatory content of the form template is a subform, called frmInfoBlock.

    OK, so for my part script here.
    ---------------------------------------------------
    (1) on the master page:

    For configuration frmEnding only appear on the last page
    To control the presence of frmEnding based on pageCount()
    use of scripts on frmEnding
    //
    FormDeliveryNoteNotification.. mstMasterPg1.frmEnding::ready:layout #pageSet [0] - (JavaScript, client)
    If (xfa.layout.page (this)! = xfa.layout.pageCount ()) this.presence = "hidden";

    (2) on Bodypage:
    To control the presence of frmBlank based on its position (property 'y')
    use of scripts on frmBlank
    //
    FormDeliveryNoteNotification.bdyPage1.frmBlank::ready:form - (JavaScript, client)
    var y1 = this.y;
    var y2 = frmInfoBlock.y;
    H2 var = frmInfoBlock.h;

    var yNum1 = parseInt (y1);
    var hNum2 = parseInt (h2);
    var yNum2 = parseInt (y2);

    This.Presence = "visible";
    If (yNum1 < = "200")
    {
    If (yNum2 + hNum2 < "200")
    This.Presence = 'hidden ';
    }

    ---------------------------------------------------

    Later, I found that it worked as expected.
    With regard to the property 'y '.
    > > > >
    Specifies the y of the anchor point of a container compared to the upper left corner of the parent
    container of when placed with square layout.
    Container whose content has flowed do not use contact information.
    > > > >

    As subforms Inc. frmBlank & frmInfoBlock that all are flowed, variable above scripts, always have value as below (according to my result of debugging)
    Y1 = 0 in
    Y2 = 0 in
    H2 = 0 in

    As a result, yNum1 Inc., yNum2, hNum2 are always 0.

    As a result:

    frmBlank will be always hidden

    If only 1 page, bodypage County can be superimposed with the page master frmEnding.

    ==============Clap==============
    Hope I described things clearly. : PEI

    Can you give your suggestions as another suggestion.

    -VickyX

    Hi Vicky,

    See if this helps you: https://acrobat.com/#d=Qjw-* ATV-gNdWjP * rlx2HA

    Find the line that serves as a marker for coordinates. The script is located in the spacer subform.

    Good luck

    Niall

  • Using forms to the content of the portal

    I recently had a request to create landing pages to support various leasing programs representing my company. Landing pages would contain frequency data, i.e. potentially sensitive information, especially when it comes to competitors. All programs have different tolerances for rate data sharing - some see as a risk while others do.

    A solution that we are looking at is door simply rate with form data. The user could provide some basic information, submit and move to a landing page containing the tariff.

    The concern is, a user might be able to get directly to the landing page, bypassing the form (eg - someone sharing the link to the page of rates directly, rather than the link that comes in front of it that contains the form). What guarantees we could implement to minimize this risk?

    The best way to is to host content 'Pages of Confirmation' microsite in Eloqua.  On the Confirmation page landing pages do not have the URL static and accessible only through "redirect to Webpage" treatment step on a form Eloqua.

  • View the contents of the URL

    Hi all

    Currently I am developing an application in which I need to view the contents of the data from the URL to the screen. I mean I don't want to open the URL in the default browser of BB. I want to display the field that is added to the screen.

    Is it possible to view the contents of the URL without using browser...? Please give some suggestions.

    Thank you best regards &,.

    Craig

    Hello

    Thanks a lot for your valuable response. Now, I got the universal application. In fact, I want the limited functionality. So now reference that I can change my request.

    Thank you again...

    Kind regards

    Craig

  • I made a form for my clients, I did this form with a button "submit" button, the button will save the form and send it, I did the URL to go to a different (different to mine) e-mail address but when I distribute the form and it is complete

    I made a form for my clients, I did this form with a button "submit" button, the button Save the form and send it, I did the URL to go to a different (different to mine) e-mail address but when I distribute the form and it is supplemented by my clients it send to my email address not the URL how to change this.

    No matter how you have configured the Send button when you use the feature distribute the form. There are some e-mail address is in your identity preferences (Edit > preferences > identity) and use it. If you can change the email address it or not to use distribute the form and the button send the value you want.

    One thing that happens when you use the feature to distribute the form is the form is enabled Reader, you can do separately, but you really shouldn't do if the form must be used by others. The dispenser a form must activate using their copy under license of Acrobat Reader.

  • Oracle Forms URL not accessible outside the server

    Dear all,

    I am facing problems of access to the URL of Forms under Oracle Forms 11 g when you access from the server.

    Intended to test, I created a new Oracle Forms on a VMWare Server environment.

    Details on my environment

    Windows 2008 R2 64-bit Server

    Oracle Web Logic Server 11g R1 64-bit

    Oracle 11 g R2 64-bit forms and reports

    Oracle Database 11 g R2 64 bit

    Virtual machine network connection works fine. I am able to Remote Desktop, sqlplus and access the Admin of WebLogic Console (port 7002) from my local system.

    But when connecting to the URL of the form it does not connect. It gives me the following error. Forms URL works fine when accessing the server.

    It seems you're connected to the Internet, but you might want to try to reconnect to the Internet.


    By using the following URL format to access the Forms http://formsserver:7007/forms/frmservlet? config = < appname >


    Please let me know if anyone has the solution.

    Thank you

    Mohamed Yusuf Salih

    Be careful when you make changes.  If you are not familiar with the operation of the listeners, you can easily make a problem worse.  Assuming that you have installed using the "Deployment" installation option, the default non - ssl ports must be as follows:

    OSH - 8888

    Server administration WLS - 7001

    WLS_FORM - 9001

    WLS_REPORTS - 9002

    Once configured correctly, calling the forms or reports occurs through the same port of OSH.  Thus, for example:

    http://server:8888/forms/frmservlet ...

    http://server:8888/reports/rwservlet ...

  • I document for which the security of the document does not allow me to assemble documents, copy of content, page extraction, form filling, signature &amp; creating the model. Buy adobe acrobat won't solve all?

    I document for which the security of the document does not allow me to assemble documents, copy of content, page extraction, form filling, signature & creating the model. Buy adobe acrobat won't solve all?

    The result is that Adobe does not provide any software to defeat the security of a PDF file. If the creator of the PDF file set to this level of security, intentionally or not, that's what it is! The solution to your problem is to go to the creator of the document and ask the password or an unprotected PDF file version.

    -Dov

Maybe you are looking for

  • Error: "could not create a new partition or locate a" when installing Windows via Boot Camp 10

    This error occurs on my 2012 15-inch MacBook Pro. I have 2 hard drives. One dedicated to OSX and one for Windows. This is my first install bootcamp. I let bootcamp create partitions, but to the partition/disk screen hard to choose, I get a message sa

  • Installation upgrade value package

    Belatedly, for various reasons (mainly the uncertainty and concern that I would mess up the computer at an inopportune time), I have round for a second attempt to install the published Package value update January 9, 2008 (with various other latest d

  • OfficeJet premium 6700: ADF Assembly

    I jumped the cover of the automatic document feeder and the entire assembly to clear a jam, and it does not come off back down into place... What is the thing...?

  • Add/Remove window has a big empty space (hole)

    XP Pro SP3. When I opened the Add/Remove window, and after that it populates the list of programs, there is a large white space (hole). It will give the list of the first 10 programs, so I almost have to scroll to the bottom of the window to see all

  • Uninstall media Player

    How can I uninstall Media Player?  I uninstalled from Coontrol Panel but the files are still there.  If I remove them, they reappear in a minute or two?