Problem with filling the forms in Nokia browser af...

Hello,
 I updated my Nokia 808 to FP2 successfuly. But i realized one problem in web browser and the new keyboard. For example when i want to write into a form box i can only see virtual keyboard. I cannot see what i type. If you want to test this, please open your local nokia website and click on support / e mail us. You will see a form which will ask your phone model and OS etc. Try to type into the boxes. Yesterday i failed to write anything. Also reaction is very slow. You can see what i m talking about in the attachments.
  Also with the new update, videos are not working correctly. Sometimes video player is crashing. Sometimes i see strange and colourful images while it is trying to play the video. Then it turns to normal and i see the video clearly.
  Im satisfied with some new things in the update but there are problems and slow downs. Some features are not working such as Nokia Social. I hope Nokia Team will find a solution. Thank you.
Attachments:
Fotoğraf0001.jpg ‏183 KB
Fotoğraf0150.jpg ‏179 KB

HI ilkerol,
Welcome to Nokia Support Discussions!
Thanks for the feedback! I tested the support form with the same results, the page was slow and kept on moving up to the top when I was typing in the textbox.  I tried it with a Lumia device, and even though I was able to fill the textbox without problems, the drop down menus did not work. Based on that experience, it seems that the form is meant to be used with a personal computer, not a mobile device. I will, however, escalate this issue in case there is a possibility of a quick fix. 
As for the video issue, does this happen with all videos or just certain ones? Colorful images etc. usually mean that the video file encoding is somehow broken and the player cannot read it properly.
Hope this helps!
Puigchild
If you find this post helpful, a click upon the white star at bottom would always be appreciated.
If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

Similar Messages

  • Problems with Submitting the form

    Hey Guys,
    I have a form with 7 different fields. my form is connected with the database. once the user fills out the information and clicks on submit the entry should be saved in the database.
    Everything is working fine. i can establish connection with the database. my only problem is that when i click on submit its not adding the entry in the database. I think i have problems with this command
    <form method = "post" > . Any helpo will be really appreciated. I am posting some part of the code.
    <%!
      public void jspInit() {
        try {
          Class.forName("org.apache.derby.jdbc.ClientDriver");
          System.out.println("JDBC driver loaded");
        catch (ClassNotFoundException e) {
          System.out.println(e.toString());
    <body>
    <%
    String name, unit, title, supervisor, region, dept, date;
    %>
    <p align="center"><b><font size="5" face="Arial">LOGIN REQUEST FORM </font></b>
    <form method="POST">
    <p align="left"><b><font size="2">                           
         </b>Name:<b> <input type="text" name="name" size="20">   </b>Title   <b>
         <input type="text" name="title" size="20">         </b> Dept <b>         
         <input type="text" name="dept" size="20"></b></font></p>
         <p align="left"><font size="2"><b>                 
         </b>Supervisor: <b> <input type="text" name="supervisor" size="20"> </b>Region<b> 
         <input type="text" name="region" size="20">  </b>Business Unit<b>
         <input type="text" name="unit" size="20"></b></font></p>
         <p align="left"><font size="2"><b>              </b>
         Effective Date:<b> <input type="text" name="date" size="20"></b></font></p>
         <input type = "reset">
         <input type = "submit">
         <%
         name = request.getParameter("name");
         unit = request.getParameter("unit");
         title = request.getParameter("title");
         supervisor = request.getParameter("supervisor");
         region = request.getParameter("region");
         dept = request.getParameter("dept");
         date = request.getParameter("date");
         boolean error = false;
         String message = null;
         try {
              Connection con = DriverManager.getConnection("jdbc:derby://localhost:1527/sample");
              System.out.println("Connection Established");
              Statement s = con.createStatement();
              String sql = "SELECT name FROM users" +
              "WHERE name='" + name + "'";
              ResultSet rs = s.executeQuery(sql);
              if(rs.next()) {
                   rs.close();
                   message = "The username <B>" + encodeHtmlTag(name) + "</B> has already been taken. Please select another name.";
                   error = true;
              else {
                   rs.close();
                   sql = "INSERT INTO user" +
                   "(name, unit, title, supervisor, region, dept, date)" +
                   "VALUES" +
                   "('" + name + "'," + " '" + unit + "'," + " '" + title + "'," + " '" + supervisor + "',"
                   + " '" + region + "'," + " '" + dept + "'," + " '" + date + "')";
                   int i = s.executeUpdate(sql);
                   if(i==1) {
                        message = "User Added";
              s.close();
              con.close();
         catch(SQLException e) {
              message = "Error " + e.toString();
         catch(Exception e) {
              message = "Error" + e.toString();
              error = true;
         %>
    </form>
    </body>
    </html>

    Even if there was an exception being thrown, you wouldn't see it because you're catching it but not doing anything with the message:
    catch(SQLException e) {
              message = "Error " + e.toString();
         catch(Exception e) {
              message = "Error" + e.toString();
              error = true;
         }Try changing this part to:
    catch(SQLException e) {
              message = "Error " + e.toString();
                    e.printStackTrace();
         catch(Exception e) {
              message = "Error" + e.toString();
              error = true;
                    e.printStackTrace();
         }

  • Problem with filling out forms

    When I enter text into a form field and press tab, the text disappears. The text is saved, so when I click back to the box the text reappears, but it doesn't print. Previous threads regarding this topic has not resolved the issue.
    The form works just fine when I press view in gmail and it opens the document in my browser, but the problem occurs when I open it in Adobe Reader XI.
    Please help. Thanks.

    George,
    Thanks for the reply. Although I have a third party PDF Editing tool I have tried this with other PDF editable forms and they all seem to be exhibiting the same behavior. For example I went out on the internet tonight and found a UCSB Order Form on http://www.grafikart.com/order/ucsb.htm. When I open this form and type in text the displayed text is always black but when I print the form the entered text is always dark green. Note that I contacted my third party PDF editor tool about the problem they suggested that I run the unedited form thru their software and set all existing fields to be editable and then re-save the form after insuring that the text color for the editable fields was black. I did all that and again, the color of displayed text is still dark green. Note that when I'm talking about the text being green I want you to understand that the form itself prints in black text however any text that I enter into the form always prints dark green.

  • Problems with generating the form

    Hi there,
    I'm trying to create an interactive form for print in ABAP. So, I created an interface and a form. I've generated the interface, it worked properly. So i've checked the syntax of the form, there was no error and i clicked the button to generate it. Although there's no error, it stays inactive, that's the first problem.
    The second problem ist the menu-tree. Expanding the node of my inactive form, there's another node 'used interface' and under it appears another node with my inactive form. This funny behaviour doesn't stop, and i assume it's a GUI problem, but i'm not sure.
    Do you have any ideas to solve my problems.
    thanks a lot, greetings, Stefan

    Hi Stefan
    also, have a look at this post ADS: unable to activate a new adobe form where the issue was that the ADS is not even installed and configured. To go through all teh right steps, get the ADS Configuration Guide from the Service Marketplace at http://service.sap.com/adobe -> Media Library -> Documentation.
    Best regards,
    Markus

  • Problems with filling out PDF forms

    We have problems with filling out PDF-forms. Aotomatic filling of forms is deactivated and we use the Adobe Reader 11.0.05. The problem is: After some time the inputs are wrong put down in the form. For example: I write 120 and in the form stands 125. We have already extinguished the cache. Thanks for your help in advance.

    You will get that first message when the document has been changed in a way that invalidates the internal digital signature that's applied when a document is Reader-enabled. Certain changes are allowed (e.g., filling fields, commenting, signing) and will not invalidate the signature, but others are not. The exact cause of the change is often hard to track down, but it can be due to font problems, some type of file corruption, or something that Acrobat/Reader attempts to correct when the file is opened/saved. You will also get the message if the users system time is not correct and is currently set to some time before the document was Reader-enabled. It seems best to use the most recent version of Acrobat to enabled the documents and recent versions of Reader to work with them.
    It problem is probably not related to the user using anything in the Sign pane.

  • Problems with software the update with Nokia 6233

    Problems with software the update with Nokia 6233
    Hello,
    I have so far some-paints tries my software to update.
    Each time the update procedure begins, sometime stands then on the telephone “test mode”.
    On the computer wars I the reference in the update manager “connection to the telephone broken off” and wants the update to again start.
    If I change my profile attitudes since that for example, then after a telephone restart again deleted.
    What there can I make?
    GreetingsMessage Edited by adisaily on 24-Aug-2007 09:03 AM

    It sounds like your 5800 has the earpiece fault that was common with 5800's made before February.
    You need to take it to a nokia care point for repair under warranty.
    Care points/service centres and repair info:
    UK • Europe • Asia-Pacific • USA •
    Canada • Middle East and Africa
    Elsewhere: Click here, select your country, go to the support section, then select repair.

  • Hello! The new version of Firefox I have a problem with opening the site VKontakte. The browser displays the following error: "Firefox has determined that the s

    Hello!
    The new version of Firefox I have a problem with opening the site VKontakte. The browser displays the following error: "Firefox has determined that the server redirects the request for this address in a way that it will never end." How to solve this problem? Please excuse me for my English.
    Sincerely, Vsevolod.

    You're welcome

  • Num Lock Pad Doesn't Work With Fill In Forms

    I have Adobe XI, running Windows * and IE 11. Num Lock key pad does not work with fill in forms.  Can anyone help?

    Sounds like you are using a third-party keyboard: the new Apple keyboards do not have a Num Lock key and the numeric keypad always functions as such.
    If you're using a third-party keyboard, and if you installed vendor-provided software to customize the keyboard, check its preferences and also check the vendor's Web site to see if there is an updated version of the software for your keyboard.
    I cannot reproduce the problem using the latest model of Apple Pro keyboard (the one that came with my computer, which is the same as your computer).
    2. You might also want to state the specific keyboard and version of Excel you are using in case someone else has the same configuration and can try to reproduce the problem. I tried it with Excel from Office v.X.
    3. You wrote: "* Deleted Excel Preferences"Both of them, yes?
    - Home > Library > Preferences > com.microsoft.excel.plist (you may or may not have this one).
    - Home > Library > Preferences > Microsoft > Microsoft Excel
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Problem with filling nodes of a context with data

    hi,
    i've got the following problem with filling a controller context:
    the context of the controller looks like:
    Context
    |-Node1             0..n singleton
      |-Subnode1        0..n singleton
      | |-SubVal1.1
      | |-SubVal1.2
      |-Subnode2        0..n singleton
      | |-Subval2.1
      | |-Subval2.2
      |-Val1.1
      |-Val1.2
    that means every Element of Node1 should have its own Subnode-Elements & Val1-Values
    in wdDoInit() of the controller I fill the context like this:
    Collection Node1, SubNode1, SubNode2
    for (Iterator iter = Node1.iterator(); iter.hasNext;) {
       newNode1NodeElement = wdContext.createNode1Element();
       newNode1NodeElement.set... //setting the values
       wdContext.nodeNode1().addElement(newNode1NodeElement);
       for (Iterator iter2=Subnode1.iterator(); iter2.hasNext;) {
          newSubnode1NodeElement = wdContext.createSubnode1Element();
          newSubNode1NodeElement.set... // setting the SubVal1.x
          wdContext.nodeSubnode1.addElement(newSubnode1NodeElement);
       for (Iterator iter3=SubNode2.iterator(); iter3.hasNext;) {
          newSubnode2NodeElement = wdContext.createSubnode2Element();
          newSubNode2NodeElement.set... // setting the SubVal2.x
          wdContext.nodeSubnode2.addElement(newSubnode2NodeElement);
    i've got the impression, that <b>all</b> my SubNodes are filled in the <b>first</b> Node1-Element. is there an error in the code above? because in the first place, i see every values in the first Element of Node1-views and if i navigate to the next Element of Node1, every views are empty.
    for every Node (Node1, Subnode1, Subnode2) i've got an own view, that maps its context to the corresponding Node of the controller context, e.g for the SubNode1-View:
    Context                  Context
    |                        ....
    |- ViewNode      --->    ..|- Subnode1
      |- SubVal1.1   --->    ..   |-SubVal1.1
      |- SubVal1.2   --->    ..   |-SubVal1.2
    in these views, i navigate through the nodes via
    wdContext.nodeViewNode().move...()
    in the SubNode1-View i see the SubVal1.1, SubVal1.2 (that's what i want) <b>and</b> additional SubVal2.1, SubVal2.2 (that's what I don't want...)
    kind regards, achim
    ps: i've studied the Master/Detail-Tutorial and i think the choice for cardinality 0..n and type singleton is correct in my case.

    hmm, let's look at the code:
    for (Iteration Node1) {
      newNode1NodeElement = wdContext.createNode1Element();
      wdContext.nodeNode1().addElement(newNode1NodeElement);
      for (Iteration SubNode1) {
         newSubNode1NodeElement = wdContext.createSubNodeXElement();
         newNode1NodeElement.nodeSubNode1().addElement(newSubNode1NodeElement);
         for (Iteration SubNode1.1) {
            newSubNode1.1NodeElement = <b>wdContext</b>.createSubNode1.1Element();
            newSubNode1NodeElement.nodeSubNode1.1.addElement(newSubNode1.1NodeElement);
       for (Iteration SubNode2) {
          newSubNode2NodeElement = wdContext.createSubNode2Element();
          newNode1NodeElement.nodeSubNode2.addElement(newSubNode2NodeElement);
    is there an error in creating the SubNode1.1-Node (bold line)?
    if the code is correct, perhaps it's only a viewing problem:
    i use views that point on every node and display the values in that node. if i move in the view for Node1 to another node, the values for SubNode1 point to the correct values too, but the values for SubNode1.1 still stay on the old values. is the move of a grandfather node not correctly propagated to his first child?
    kr, achim

  • Problem with navagation of forms

    Hi everybody
    I have a problem with navigation of forms
    I have two forms say a and b.In form a i have a button and i want, when i press that button the form b should open.I wrote when_button_pressed trigger for that button in form a as open_form('b'); Raise form_trigger_failure;
    When i run form a and press the button form b is not opening.It is giving me a message as 'form b cannot be opened'
    Can somebody tell me where i am wrong.I have compiled b.
    TIA
    Prajakta

    Why are you using Raise form_trigger_failure;
    You don't need it.
    Try doing open_form('b.fmx');
    If this doesnt work
    I think your problem is that the fmx file for form b is not in the path to be found.
    make sure to include the direcoty in the forms60_path or have it in the same directory as form a.

  • Creating Worksheets with Fill-In Form Fields

    What is the best application for creating worksheets with fill-in form fields?  The worksheets will be emailed to my clients for completion.  Once completed they need to be able to save them to their computer and/or email them back to me.  What application will they have to have in order to fill in and save the PDF?

    In short, you will need Acrobat to create the forms. They only need the free Reader to fill them in and save them.

  • Issue with filling out form fields in Safari?

    Hello,
    Has anyone noticed any issues with filling out form fields (specifically text boxes) in Safari 6.0.2 on Mac OS 10.8.2?  When I attempt to test forms I've created, there is a delay when typing values into text boxes.  Other types of input controls (check boxes, drop down lists, etc.) appear to work fine.  As far as I can tell, this only occurs with Safari 6.0.2 in Mac OS 10.8.2.  Prior versions of Safari do not have this issue, nor does Firefox in the same OS environment.  When I refresh the form, the delay is not as noticeable.  I'm searching the WebKit bug reports as well, but nothing seems to point to this issue.  Any hints would be greatly appreciated.

    From the menu bar, select
    Edit ▹ Substitutions
    and uncheck Text Replacement.

  • Very big problem with JSF about FORM and "id=" for HTML form's elements and

    I have discovered a very big problem with JSF about FORM and "id=" for HTML form's elements and java instruction "request.getParameterNames()".
    Suppose you have something like this, to render some datas form a Java Beans :
    <h:dataTable value="#{TablesDb2Bean.myDataDb2ListSelection}" var="current" border="2" width="50%" cellpadding="2" cellspacing="2" style="text-align: center">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name"/>
    </f:facet>
    <h:outputText id="nameTableDb2" value="#{current.db2_name_table}"/>
    </h:column>
    </h:dataTable>
    Everything works fine...
    Suppose you want to get the name/value pairs for id="nameTableDb2" and #{current.db2_name_table} to process them in a servlet. Here is the HTML generated :
    <td><span <span class="attribute-name">id=<span class="attribute-value">"j_id_jsp_1715189495_22:0:nameTableDb2">my-table-db2-xxxxx</span></td>
    You think you can use the java instructions :
    Enumeration NamesParam = request.getParameterNames();
    while (NomsParam.hasMoreElements()) {
    String NameParam = (String) NamesParam.nextElement();
    out.println("<h4>"++NameParam+ "+</h4>);
    YOU ARE WRONG : request.getParameterNames() wants the syntax *name="nameTableDb2" but JSF must use id="nameTableDb2" for "<h:outputText"... So, you can't process datas in a FORM generated with JSF in a Servlet ! Perhaps I have made an error, but really, I wonder which ?
    Edited by: ungars on Jul 18, 2010 12:43 AM
    Edited by: ungars on Jul 18, 2010 12:45 AM

    While I certainly appreciate ejb's helpful responses, this thread shows up a difference in perspective between how I read the forum and how others do. Author ejb is correct in advising you to stay inside JSF for form processing if form processing is what you want to do.
    However, I detect another aspect to this post which reminds me of something Marc Andreesen once said when he was trying to get Netscape off the ground: "there's no such thing as bad HTML."
    In this case, I interpret ungar's request as a new feature request. Can I phrase it like this?
    "Wouldn't it be nice if I could render my nice form with JSF but, in certain cases, when I REALLY know what I'm doing" just post out to a separate servlet? I know that in this case I'll be missing out on all the nice validation, conversion, l10n, i18n, ajax, portlet and other features provided by JSF".
    If this is the case, because it really misses the point of JSF, we don't allow it, but we do have an issue filed for it
    https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=127
    If you can't wait for it to be fixed, you could decorate the FormRenderer to fix what you want.
    I have an example in my JSF book that shows how to do this decoration. http://bit.ly/edburnsjsf2
    Ed

  • Sudden problem with fill layers

    I use Adobe Photoshop Elements 11.  Until recently, I've had no problem with fill layers.  I'd make a selection from the photo, then I'd make a layer of the selection, then I'd go to edit, fill layer, fill with background/foreground color.  Then the selection only would be filled.  Now, all of a sudden, I make the selection, make a layer of the selection, go to edit/fill layer/fill with background/foreground color, and the whole photo becomes filled with the fill color, and not just the selection.  I'm always on the selection layer, not the background or any other layer.  I've reset all the tool defaults, and I've even deleted the defaults file, but to no avail.  What's happening here?  How do I fix this?
    Thanks,
    Sue

    Sue and MichelB
    MichelB
    When I tried to help Sue with the inquiry, I was doing so based on what was written and my interpretation of it
    then I'd go to edit, fill layer, fill with background/foreground color.
    For me that Photoshop Elements 11 Full Editor, Edit Menu/Fill Layer and the issue did not fit.
    But if the route were as you have suggested Photoshop Elements 11 Full Editor, Layer Menu/New Fill Layer/Solid Color then everything would fall into place, centering around that option in the New Layer dialog "Use Previous Layer to Create Clipping Mask" being checked or unchecked.
    Sue
    We look forward to your follow up.
    Thank you both.
    ATR

  • Has anyone experience problems with loading the latest Flash Play?

    Has anyone experienced problems with loading the latest Flash Player?  I have done this several times and the same results come up - Install the latest Flash Player.  I run Microsoft Vista.

    What is your browser?  If IE see
    http://forums.adobe.com/thread/885448
    http://forums.adobe.com/thread/867968

Maybe you are looking for

  • 9i report services need info. on CGI and RWSERVLET

    We are trying to use the reports 9i against forms 6i. I need to info. on how we can differentiate the two types of service(whether it is CGI or rwservlet). Setup1: 1. Run rwserver -install server=TESTCGI 2. This creates the service and the testcgi.co

  • How to restore my time machine data

    well apparently it restored my applications and took up almost 40GBs but my mac still doesnt look like my previous one which i just replace today , so how do i restore my computer back to its old time machine data and get my GB's that were wasted bac

  • Safari opening pdf files in Quicktime

    All of a sudden I cannot download pdf files. When I click to download Quicktime opens and only the first page of the document is viewable. This is downright frustrating! can anyone tell me why this is happening and how I can revert to the previous ar

  • Desktop Manager 4.3 fails to Launch

    Hi all Just upgraded to DTM 4.3, and it fails to show any icons on the screen just a blank white box. Currently running XP SP2 on my PC, had no problems with the older versions of DTM. I've tried removing it and installing it again, but the same prob

  • Checkbox field in a jsp

    How to associate a checkbox to a group of fields... For example a row contains >a check box > a textfield ,an image etc how to associate the whole row to the checkbox on that particular row,such that when it is checked and applied for delete ,the who