Strange behavior of letters/characters in text fields

I've created a form in Livecycle Designer ES2 for a government company.
The form contains several pages with text fields, radio buttons and check boxes.
Also javascripts to enhance the form.
I've used their company font for static text and Verdana for the textfields.
My customer uses Windows XP (SP3) and Adobe Reader 10.1.x on all of their computers.
When they open the form and start typing text in the formfields something strange happens.
It looks like that if the first key they hit on the keyboard, directly after opening the form, acts strange in the entire form.
For example:
If the hit a letter "a" as the first key, after opening the form.
The letter "a" will be followed with one or several spaces through the entire form.
Also some letters shows on top of each other.
I've tested the form on several other Windows XP computers with Reader 10.1.x and the problem didn't show.
The test where made on different locations and companies.
The problem only seems to exist on all of the computers of my customer.
Is there a known problem dat looks like this?
Maybe a third application is cousing this problem, but i don't know what it can be.
Anyone seen this behaviour before??
I recently upgraded to ES4 and exported the form using ES4, but the error seems to stay.

Experts,
Thank you for your quick replies.
Our environment...
-JDeveveloper 11.1.1.5
-WLS 10.3.5
Browser is IE8 on WindowsXP and Windows7.
As you mentioned, I don't think using popup in table is good either.
Popup is reusable component and it should be shared in a page.
My customer created a page fragment that has a icon button and popup to search items.
When a user click the icon, popup opens and available options are displayed.
It was designed initially to use outside table, but it's useful so they tried to use it in table.
But what I am really confused is why each initially rendered pages contain different popup client id if it is located in table.
Anyway I will tell my customer your suggestions and not to use popup in table.
Thanks again,
Atsushi

Similar Messages

  • Problem with characters in text field

    hi all
    i am missing a few characters, once i load text into a dynamic text field. chars are not missing per say; they are being replaced with empty squares.
    characters like the euro sign and accentuated german a letter.
    whats is weird is that other accentuated german letters do appear. so only a few selected are missing.
    How ive set up the fla:
    1) i've added 4 text fields to the stage in the font im using, Arial, one for each font style: normal, italic, bold and bold italic, and in all 4 fields ive embedded all latin characters (to include the german accentuaded characters and im guessing it's in the punctuation group that holds the euro sign, so that one is also embedded), besides lowercase, uppercase, numerical, and all the default groupd to include basic text.
    2) i've got a dynamic text field, created with createTextField, and setup the following ActionScript (2):
    this.createTextField("T_text",1,0,10,Stage.width-60,50);
    var myFmt = new TextFormat();
    myFmt.size = 12;
    myFmt.leading = 3;
    myFmt.font = "Arial";
    T_text.html = true;
    T_text.autoSize = "left";
    T_text.multiline = true;
    T_text.wordWrap = true;
    T_text.selectable = false;
    T_text.embedFonts = false;
    T_text.textColor = "0x666666";
    T_text.htmlText = _global.gallery_1_image_text_1; // this holds the text im displayed, called in from a database.
    T_text.setNewTextFormat(myFmt);
    now, im calling text from a database.
    when calling the text from the browser  url bar, there's no chars missing.
    its just when i make this call from flash and load the text into the dynamic text field, that characters go missing.
    below is a link to a print screen of the faulty text that is displayed in flash's dynamic text field.
    http://img210.imageshack.us/img210/340/utf8.png
    any ideas? i mean, it seems that the arial font is missing a few accentuated characters! because the code i have setup loads other accentuated characters.
    anyone has seen this issue before and know how to solve it?
    regards

    no.
    you assigned your embedFonts property to be false.
    look, you can test if you've embedded fonts correctly by using:
    T_text._rotation=3;
    if you see no text, you're not embedding fonts correctly.
    so, use:
    T_text.embedFonts=true;
    and then test.  if you see no text, use:
    click on the upper right of your library panel > new Font > select Arial and tick the symbols you need to embed > tick export for actionscript and assign a linkage id (eg, ArialID). click ok.  then use:
    this.createTextField("T_text",1,0,10,Stage.width-60,50);
    var myFmt = new TextFormat();
    myFmt.size = 12;
    myFmt.leading = 3;
    myFmt.font = "ArialID";
    T_text.html = true;
    T_text.autoSize = "left";
    T_text.multiline = true;
    T_text.wordWrap = true;
    T_text.selectable = false;
    T_text.embedFonts = true;
    T_text.textColor = 0x666666;  // no quotes here.  this is a number
    T_text.htmlText = _global.gallery_1_image_text_1; // this holds the text im displayed, called in from a database.
    T_text.setTextFormat(myFmt);  // to format the above text, use setTextFormat().  if you want to format text added after this line, use setNewTextFormat()

  • Not seeing all letters in dynamic text fields

    I think that I have properly embedded the Verdana font (see image below).  However, in my Flash game, dynamic text fields do not show certain letters, such as X and J.  What am I missing?  Is there a safer font that I should be using besides Verdana?

    First I dressed up as a ninja, then hung upside down from a chandelier by my legs while cradling my laptop with my left arm.  Then I produced the image shown below by accessing Text > Font Embedding.
    I also observed that the embedded font was added to my library (below).
    Roger

  • Is there a behavior that can swap a text field?

    I am creating a portfolio page for a client.  It currently has a 9 block of thumbs and another area where the thumb images appear enlarged when rolled over.  The client would also like to be able to add text beneath the large area telling about each project.  Is there a way to change the content in the text field on thumb rollover as well or is my only option to make the text part of the larger image?
    Thanks in advance for the help!

    Hi
    You could use a simple css rollover similar to -
    HTML -
    <div class="imagegallery">
    <a class="thumbnail" href="#thumb"><img src="../images/rosesthumb.jpg" width="100" height="68" border="0" /><span><img src="../images/roses.jpg" /><br />Simply beautiful.</span></a>
    CSS -
    .imagegallery{
    position: relative;
    /*Add a height attribute and set to largest image's height to prevent overlaying*/
    .thumbnail img{
    border: 1px solid white;
    margin: 0 5px 5px 0;
    .thumbnail:hover{
    background-color: transparent;
    .thumbnail:hover img{
    border: 1px solid blue;
    .thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    background-color: lightyellow;
    padding: 5px;
    left: -1000px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    .thumbnail span img{ /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
    .thumbnail:hover span{ /*CSS for enlarged image*/
    visibility: visible;
    top: 0;
    left: 230px; /*position where enlarged image should offset horizontally */
    z-index: 50;
    Replace the items in red with your values.
    If this is not the effect you wish, can you explain a little more.
    PZ

  • How do I get siri to put emoji characters in text fields?

    I'm not sure if this is possible, but it would certainły be very handy if it is.

    I know Siri can read emoji characters.  Do a test message and say insert happy face and see what happens.

  • Deleteing Characters from text fields indvidually

    Hi,
    i am in the middle of trying to create a GUI. However, i have a delete button and what i need it to do is delete the carachters individually for the last enterd digit but am really struggling to find the code!
    please can you give me some ideas! im reay finding this difficult!
    Thanks guys!
    CullenWales

    CullenWales wrote:
    Who the hell do you think you are?! i ask a simple question and throws a cocky comment back, so if i was you i would just stand aside.
    This forum is really helpful if you can find wat your ur looking for but christ as soon as you post something stuffed.
    You people really need toget a life and get to the pub and stop this bloody nerdy programming crap i thinks!
    Well, when you have 20+ years in the business and get a dickhead question from a wannabe, just see how you respond. Rember, this is not your HS board where you have 100's of other wannabe's all trying to copy from each other; many of the people you insult on here are and have been senior level programmers for longer than you've been around.
    Oh ya, one day you may be interviewing with one of these very people you're now insulting.

  • How To: Extract first three characters of a text field

    Greetings --
    What is the best method for extracting the first three
    letters of a text field?
    I need to extract the first three letters of a text field (in
    this case Last Name),
    so I add it to other components so as to create an
    identification number for
    a person.
    This identification number that needs to be created is
    comprised of the
    person's date of birth, last 4 numbers of the social security
    number and
    the the first three letters of the person's last name.
    Example:
    ==> Birthdate: 11/15/45
    ==> Last 4 SSN: 6654
    ==> Last Name: Smith
    ID Number would be:
    ==> 1115456654SMI
    Leonard B

    That should do the trick:
    I put your values in variable, just replace the names, as
    needed
    <cfset birthdate = "11/15/45">
    <cfset ssn = "41646562121216654">
    <cfset lastname = "Smith">
    This deletes all the / from your birthday string (if it is a
    string!) and puts it into the id variable:
    <cfset id = replace(birthdate, "/", "", "All")>
    This takes the last 4 letters/digits of your social security
    number string and adds it to the id:
    <cfset id = id & right(ssn,4)>
    This takes the first thre letters/digits from your last name
    variable, puts it in upper case and adds it to the id string
    <cfset id = id & ucase(left(lastname,3))>
    Hope it helps.

  • How do i detect am empty text field condition?

    Hi im a newbie with swing. I have a small problem. I have a text field. When user types some text into it i display a pane in the GUI. When the text field is cleared, i need to hide the pane. So basically i need to detect the condition when the text field is empty.
    I tried one approach in which i capture key press event. So when user presses the backspace key to clear the text field, the event is fired. In the keyPress method, i check if text field is empty using getText() method.
    So my keyPressed method is as follows:
    keyPressed()
    if(textField.getText().trim().equals(""))
         // make my pane invisible here
    This does work , however it requires one additional key press before detecting that the text field is empty. For ex if there are 3 letters in the text field, i require to press the backspace key 4 times to hide the pane. I think this is because the key presses event occurs first & is handled & after that the GUI is repainted with the new data.
    Any idea how i can tackle this? Or is there any other way in which i can detect the moment the text field becomes empty?

    Demo:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class DocumentListenerExample {
        public static void main(String[] args) {
            final JLabel state = new JLabel();
            final JTextField field = new JTextField(10);
            field.getDocument().addDocumentListener(new DocumentListener(){
                public void insertUpdate(DocumentEvent e) {
                    change();
                public void removeUpdate(DocumentEvent e) {
                    change();
                public void changedUpdate(DocumentEvent e) {
                private void change() {
                    String text = field.getText().trim();
                    state.setText(text.length()==0 ? "empty field" : "non-empty field");
            JPanel cp = new JPanel(new GridLayout(1,2,8,8));
            cp.setBorder(BorderFactory.createEmptyBorder(8,8,8,8));
            cp.add(field);
            cp.add(state);
            field.setText("enter your text here");
            JFrame f = new JFrame("DocumentListenerExample");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setContentPane(cp);
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • Strange behavior with hidden text field for drill down

    Hi All,
    I am pretty sure I know the cause, just not sure how to work around...
    I am trying to create a drill down report just like in the App Dev guide, and I have done everything the same as the example (2 times, once to follow the guide, and now on my app). The only difference is that I am using a text field rather than a numeric field as the link. This shouldn't be a problem (I wouldn't think) except that the text I NEED to use has '<==' in the middle. So when I check my session state var's, this is what I see:
    CHPAG0SC_MAILCDN_000000047_ CHPAG0SC_MAILCDN_000000047_ <==20060525101642
    When what I should see is:
    CHPAG0SC_MAILCDN_000000047_ <==20060525101642
    So I think that I am gettting duplication because of the characters, but again I don't know how to solve it.
    Any thoughts would be appreciated.
    Corey

    Hi Scott,
    I am trying to create a drill down report similar to the one in the app developers guide. I have a query on pg 1 that includes the required text field as the link. When I click the link, I get an error on pg 2 - which is trying to use the value from pg 1. I did check and saw that even though I set this value in session state (I thought that was what happened when I assigned the 'name' and 'value' in the column link), it is passed in the url, which is where I figured it was breaking. As stated, I need to use this text value as it is the only unique key for the data (currently - this is a data validation step (not an ApEx validation), where users are handling issues with data uploaded from a csv).
    My current process is as follows:
    1. User uploads 2 csv's
    2. Proc moves (from wwv_flow_files) and parses csv back into records and inserts into temp (all varchar2) table(s).
    3. User is displayed 3 'reports' - for each type of validation required - from the stage/temp table
    4. User would click on the 'Edit' link (like the drill down sample) to see more details about the record.
    5. Once the user is done with these reports, they would click another button to 'process' the data (move it into base tables)
    Because the text field is always unique, I figured I wouldn't create a sequence for this like I have for the 'base' (destination) tables.
    I didn't know that I was using a 'get' rather than a 'post', but of course it is a link, not a button - so I should ahve known better.
    Is there a way to do this without adding a sequence generated id for each, or is that just the quickest way?
    Thanks again,
    Corey

  • Strange behavior in Contacts 'Note' field

    I am getting strange behavior in the 'Note' fields of my contacts. I am sending out my Christmas cards and, in the process, making a lot of comments in the 'Note' field. Here is what has been happening.
    Notes disapper from one or many contacts.
    Text from one note gets inserted into the note of several other contacts, replacing whatever content was previously in that contact.
    The common thread here seems to be that the changes are being applied across all the notes in a Smart Group (I use a number of keywords to create Smart Groups).
    A few questions.
    Is my contact database corrupted in some way? If so, can how can I clean it up?
    Are other people experience erratic behavior in the 'Note' field?
    Is there any way that I can use the 'Note' field reliably?
    As it is, the 'Note' field is essentially useless to me … and the address book is increasingly frustrating.
    Many thanks,
    Heather

    Others are seeing this problem. I posted a reply to another link and was told to submit feedback to Apple.
    https://discussions.apple.com/message/20537471#20537471

  • Dynamic Text Field is not displaying foreign characters... HELP!

    I have a dynamic text field that is not displaying foreign characters properly. They appear as boxes.
    Here's what I've tried.
    Under properties for the text field, I clicked on the embed characters button. In there, I pasted all the special characters I would need and clicked okay. Shouldn't this be enough for the text to display properly? What am I missing? Please help...

    More info: I'm noticing that in the actual dynamic text field in my .FLA file, if I type a foreign character like é, it pops up as a block. My family font is set to New Caledonia... is it possible that New Caledonia doesn't have those particular glyphs? The thing that doesn't make sense to me though is, last year when I made this card, it worked fine with New Caledonia... Any help is greatly appreciated!!

  • How can I do field validation on the last two characters of a text field?

    I have a text field. The user is required to enter the last two characters as numbers. I want to apply validation on this field. How can i achieve the same?
    EX: If the user enter ABCDE, an error messgae stating the last two digit should be numeric.
    I tried using the below in the field validation which did not work.
    (0+Right([<ExternalSystemId>],2)) > 0 AND (0+Right([<ExternalSystemId>],2)) < 99.
    Any ideas would help?

    Try this-
    FindOneOf(Right([<Field1>],"2"),"abcdefghijklmnopqrstuvwxyz")=0
    rgds,
    Amit

  • Text fields special characters problem in forms created with ID

    Hi there,
    I'm creating form document with ID.
    The problem with special characters appears after exporting file to interactive pdf.
    When filling up text field, special characters (polish language specials in my case) are replaced by squares.
    I do not know if this is a ID problem (and I should set encoding during pdf creation somehow) or Acrobat/Reader problem (tried both and also in Polish or English versions).
    Some help would be appreciated.

    I am Creative Cloud User and downloaded fresh ID less than 2 hours ago.. And honestly the last thing I would think about was updating.
    But in fact - it was the problem.
    So thank you very much for help!

  • More than 255 characters in a table text field

    Dear experts,
    i am facing a problem (in WD Alv too) that i can not display more than 255 characters in a single text field.
    I want to display a table containing a description field without a limitation of its length. As soon as providing a (formatted) string longer than 255 characters of length, no interactive form is shown on screen.
    Debugging a while, the following error message occurs;
    ADS: com.adobe.ProcessingException: com.adobe.ProcessingException: XMLFM Exception - PDF render operation exception, reason code: 0 : InvalidXDPException: Xml parsing error: reference to invalid character number (error code 14) ...
    Does anybody have similar problems to mine?
    Did anyone resolve the issue to show more than 255 characters in a table in interactive form?
    Regards,
    Florian Royer
    Edited by: Florian Royer on Feb 11, 2010 2:48 PM

    CALL METHOD lr_service_manager->retrieve
            EXPORTING
              iv_bo_name       = 'cPro_Project' "lv_bo_name "cPro_Project
    *      iv_bo_name      = cl_dpr_api_co=>sc_bo_cprojects "
              iv_bo_node_name =  'Longtext.Root' "lv_bo_node_name "Longtext.Root
              it_keys         = lt_ltext_key
              iv_edit_mode    = '0' "iv_edit_mode "0
            IMPORTING
              et_data         = lt_longtext_mast
              et_failed_keys  = lt_ltext_key_fail.
          READ TABLE lt_longtext_mast INTO ls_longtext_mast INDEX 1.
          MOVE ls_longtext_mast-longtext TO ls_action_item-zz_description.
    This is how i get the text with format (line feeds).
    zz_description is type string.
    My table is on a page, wrapped in a subform. and zz_description is type text field.
    Yes, i maintained "allow multiple lines" and did not limit length somehow.
    The problem arises in portal, pressing the preview button of a zform. providing a string <255 characters of length, everything works fine.
    Edited by: Florian Royer on Feb 11, 2010 3:10 PM

  • Behavior:  Set Text of Text Field

    I have an onclick event that sets the value of a form element
    to "Hi there" using the Set Text of Text Field behavior. Works
    great. The reference book I have says you can also place valid
    JavaScript code in the box that appears by placing it in brackets {
    }. Anyone done this?
    What I am trying to do is to set the value of field2 to the
    value of field1 by using code like this:
    {document.form1.field2.value = document.form1.field1.value}
    Of course, can't get it to work

    Something like this
    <input type="text" name="field1"
    onchange="this.form.field2.value=this.value" />
    <input type="text" name="field2" />
    This will update field2 to field1's value when you tab out of
    the field - or
    you can alter onchange to onkeyup to have field2 updated as
    you type into
    field1
    Cheers,
    Jon
    "DreamerJim" <[email protected]> wrote in
    message
    news:gioo4k$cmb$[email protected]..
    >I have an onclick event that sets the value of a form
    element to "Hi there"
    > using the Set Text of Text Field behavior. Works great.
    The reference
    > book I
    > have says you can also place valid JavaScript code in
    the box that appears
    > by
    > placing it in brackets { }. Anyone done this?
    >
    > What I am trying to do is to set the value of field2 to
    the value of
    > field1 by
    > using code like this:
    >
    > {document.form1.field2.value =
    document.form1.field1.value}
    >
    > Of course, can't get it to work
    >

Maybe you are looking for

  • IMac freezing - using 10.5 with newest 24" Intel

    I've read a lot of posts about iMacs freezing and they seem to be mainly with the older gen's of them. In my case, my 24" Intel iMac freezes and the mouse will not move, the force quit won't work as the keyboard doesn't respond, nothing works, basica

  • Problem with font changes making video unrenderable

    Hi- I hope someone can give me some advice. I have been creating different language versions of a video and until now I merely duplicated the original sequence and then changed the individual titles to create a new language version ( there is no narr

  • Developer Needed

    Hey All, I hope this is the correct forum. I just started working with Flex in addition to my other duties. The learning curve has been pretty steep for me so far. I need to speed things along and I'm willing to compensate someone for their time. You

  • Want to code for call transaction and session method

    my requriment is i upload a data by call tran. but i want to error handling through  session method pls give the code and i want to flat file also.  asap. a.k

  • Deleted folder in workspace explorer still in repositry

    Hi, i deleted folder in workspace and trying to recreate the same one with same name. It says "Cannot delete,folder name with same name exists". I believe it is still in repository. Can anyone tell how to delete in repository. Thanks a lot.