JavaScript on PDA

Hello.
I need to install a JAVA Plugin for the pocket ie.
I already synced my SIEMENS LOOX with active sync.
right now i have the problem that i don't find any working java VMs.
i downloaded j2sdk, j2me, personal java..
nothing fits for the pda.
which javapackege do i have to install?
i need only simple java script to run on the pda.
rightnow, when I start a CGI page on the pda, there's only displayed the html text not the java script.
please could anyone help me, i don't know anything about pdas.
thanx

I used eclipseME to develop a midlet suite. The jad runs on the default emulator. My problem, posted elsewhere, is finding an EASY way to convert the jad file to the prc format that the Tungsten E requires.
I there are a couple of decent outlines on installing the EclipseME plugin if you are interested.
Take care!
JD

Similar Messages

  • Application not working on PDA.

    Hi All,
    I am facing a strange problem.I have made one applicationwhere i am inserting the data in to the backend.when i am doing it from Desktop mi client and Mobile 5 data is getting inserted but when i am using imate PDA windows 2003 all fileds are getting inserted except one. I m using CrEme327a_AX_CE42_PPC_minimal.CAB this version of creme. I am not getting any error as such.Can any one help me in this regard.
    Regards
    Devendra Phate

    Buddy,
    JavaScripts are not supported in PIE (your IE on the PDA). You need to enable it.
    Go to Microsoft Downloads. Get IETOOLS.EXE from the same. Install that software using ActiveSync into your PDA. Then you'll have the option to enable the JScripts. After which your JavaScripts will work.
    Regards
    Ak.
    PS: Is that a date field that's not getting updated?

  • Some javascript code does not work out in a .jspx page

    To the experienced:
    I am trying to improve some pages in my application. In one of the pages, there are only two elements in the form: an input box (for user to put in his username) and a submit button. What I am trying to do are:
    1. Make the input box be in focus when the page is loaded, so that the user can start typing right away without having to fumble for the mouse and than click the input for it to get focus.
    2. After the user has typed the username, pressing the Enter key to submit the form instead of fumbling for the mouse again and click hte submit button.
    These are not difficult to do. I wrote a test page, and the following are the snippets from the test page:
    <pre>
    &lt;body <b>onload="document.getElementById('username').focus();"</b>&gt;
    &lt;form method="post" action="http://host.domain.edu/pages/staffLogin.jspx"&gt;
    &lt;table&gt;
    &lt;tr&gt;&lt;td&gt;UID:&lt;/td&gt;&lt;td&gt;&lt;input <b>id="username"</b> type="text" name="LoginName"&gt;&lt;/td&gt;&lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;input type="submit" value="Submit"&gt;&lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;
    &lt;/form&gt;
    &lt;/body&gt;
    </pre>
    This page does the two things that I want to accomplish, in both Internet Explorer and FireFox. I do not need to add any code for the Enter key to act for the submit button - it behaves that way by default.
    But not in the page of my application, with the snippets here:
    <pre>
    &lt;f:view&gt;
    &lt;afh:html ...&gt;
    &lt;afh:head ...&gt;
    &lt;script type="text/javascript"&gt;<b>self.resizeTo(900,1000);</b>&lt;/script&gt;
    &lt;meta .../&gt;
    &lt;/afh:head&gt;
    &lt;afh:body binding="#{staffLogin.body1}" id="body1" <b>onload="document.getElementById('inputText1').focus();"</b>&gt;
    &lt;af:inputText binding="#{staffLogin.inputText1}" secret="true" <b>id="inputText1"</b>
    required="true" requiredMessageDetail="Password required."
    value="#{staffLogin.submittedPassword}"
    <b>onkeydown="if(event.keyCode == 13) document.getElementById('commandButton1').click();"</b>/&gt;
    &lt;af:commandButton text="Submit"
    binding="#{staffLogin.commandButton1}" <b>id="commandButton1"</b>
    action="#{staffLogin.commandButton1_action}"/&gt;
    </pre>
    What do I do not right? Is DOM recognized in .jspx? Note that the <code>self.resizeTo(900,1000);</code> part works.
    Many thanks!
    Newman

    Hi,
    use af:document instead of afh:html (etc.)
    http://download.oracle.com/docs/cd/B25221_05/web.1013/e18745/tagdoc/core/document.html
    initialFocusId       
    the id of the component to which you want the focus to be when the full page renders. The accessibility-mode must be set to "inaccessible" for this feature to be on. This attribute is not supported on the following agent types: pda, phone, voice.
    Use af:form to define the form
    http://download.oracle.com/docs/cd/B25221_05/web.1013/e18745/tagdoc/core/form.html
    defaultCommand       
    The id attribute of the command button whose action would be invoked by default for form submit on hitting enter on any of the input fields of the form.
    You don't need JavaScript at all!
    Frank

  • JavaScript assign a APEX variable

    I have the following javascript code in my page header:
    <script language="JavaScript" type="text/javascript">
    <!--
    function insert_submit()
    var x = '&P66_INSERT_FLAG.';
    confirm(x);
    doSubmit( );
    //-->
    </script>
    Can anyone tell me how to assign a value to :P66_INSERT_FLAG in this routine. If there is more than one way to do it, I would appreciate if you could list them all.
    I have a very finicky PDA that will run some javascript and not others. Thanks!
    Sharon

    Hello,
    Unfortinally there is not an 'exact' answer for you as different PDA's/phones have different inital setups and features.
    The important thing is what versions of Internet Explorer is running. The mobile versions of Internet Explorer have stripped down versions or some have no javascript functionality at all and some mobile devices turn it off by default.
    OS 4.20.0.3.What's this?
    Your going to go through each js command on each PDA and see exactly what works and what doesn't on each one, it sounds like javascript might be shut off on one of them, and sometimes you can turn it on. I seem to remember on some versions of mobile IE document.getElementByID() doesn't work and you need to form item notation.
    Are you setting just the flag value or do you need to do a full page submit?
    If you just need to set the flag value you can use a link that sets the value.
    Or make the flag value into checkbox.
    Your original code doesn't really do anything other than a submit, can you post the entire code.
    function insert_submit()
         var x = '&P66_INSERT_FLAG.';
         confirm(x);
         doSubmit( );
    }Finally an working mockup on http://apex.oracle.com would make it much easier to help you out.
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Problems to run an aplication over a PDA

    Hi there,
    I have made a program to catch some information, this page has three text input boxes and one button, my problems is that the program run good over my desktop browser version, but it not working good when is running over a PDA it does not working, becouse it not accepting some javascript sentences
    anybody has expereice with this kind of problems?

    Yes - When I built an LV Express VI the amplitude coming out of the FFT made sense.
    Problem 1 - I am getting buffer errors that I have so far solved by doing a start/acquire/stop/analyse inside the while loop.
    Problem 2 - for some reason, the FFT in express always gives positive values, in PDA it has real & complex, real goes negative.
    I use power spectrum and the max intensity seem a bit unrelated. Also - even on inserting a better waveform, my freuency is a bit out.
    Attachments:
    CFA2.vi ‏80 KB

  • Use Shared Local Object with Javascript

    Hi to everybody!
    I have to make a javascript component that have to take some
    data from a Shared Local Object;What I have to do in order to use
    the Shared Local Object in javascript? It maybe that I have to
    create an ActionScript file in which I use the Shared Local Object
    and than import that file in Js?
    Furthermore, do you know if it possible to lanch a waba
    application (is a java application for pocket pc and pda ) from a
    flash application?
    And if yes, What I hava to do?
    Thanks

    Have you downloaded and read the Acrobat SDK yet?  That's your starting point.

  • How to disable a submit button on click using javascript

    Hi,
    We have built custom pages for mobile device (PDT) using OAF.
    The application is running on mobile IE 6.12 browser. In mobile platform, the cursor style is not changing to hour glass upon clicking.
    Due to this, user is able to click the same button multiple times before the operation is complete and it is getting submitted multiple time. But the same is working fine in Desktop browsers.
    We have tried with ((OABodyBean)body).setBlockOnEverySubmit(true); But the API documentation states that
    "Sets If set to true, user input will be blocked after EVERY submit (not just PPR submits). This attribute is not supported on the following agent types: pda, phone, voice."
    Hence, I am trying with javascript to disable the submit button after the first click. The issue is, even in the desktop browser
    I am not able to get the button disabled after first click. Please help me.
    I have tried the following statments in PR. But none of them seems to be working.
    //Try 1: directly using id
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("document.getElementById('UpdateBN').disabled=true;document.getElementById('UpdateBN').submit()");
    //Try 2:
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("javascript:this.disabled=true;this.form.submit();");
    //Try 3:
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("this.disabled=true;this.form.submit();");
    //Try 4: using a function
    static final String JS_MULTI_CLICK = "<Script LANGUAGE=\"JavaScript\"> "
    +" function DisabSub(btn)"
    + "{"
    + "btn.disabled = true;"
    + "}"
    +" </Script>" ;
    OARawTextBean rawMultiClick = (OARawTextBean)webBean.findIndexedChildRecursive("JSMultiClick");
    rawMultiClick.setText(JS_MULTI_CLICK);
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("javascript: var obj =disable(this);return DisabSub(obj);");
    Can any one please help.
    Thanks in advance.
    Regards
    Saravanan

    Hi,
    Create two submit buttons A and B adjacent to each other.
    On page Load ,make A as rendered false and disabled true and B as rendered true. using SPEL.
    now on click of button B make button A as rendered true and Button B as rendered false through SPEL.
    In this way on button click the button will become disabled without the use of any javascript.
    Try it if it helps you...
    Thanks,
    Gaurav

  • Nokia 8800 & HP Ipaq PDA

    I have connected via bluetooth my 8800 to my ipaq using Windows Mobile v5.0 so am able to sent email & surf web pages over GRPS on Vodafone.
    Everytime I visit a web page on the PDA I keep getting Packet Data Connection Ended appear on the phone anything from 30 secs up to 2 mins after connecting & the GRPS connection is lost.
    Has anyone any idea whats causing this.
    Thanks
    Darren

    HI. I have also install Flashplayer 7 for pocket PC and it is
    also not working. I tried to access website like youtube and it
    says either you javascript is not enabled or you do not have the
    latest flashplayer.

  • APEX on a PDA

    Hi All,
    Im starting to develop a production level system in Application Express v3.0.1 on Oracle 10g. For certain screens i need to use PDAs so i was wondering if anyone here has done this and could provide some pointers on any specific things i need to watch out for, ive read that javascript and css should be avoided (which is what APEX is all about on the interface side).
    And what is the best way to format the screen so the displays are small enough the fit on the 3.5 inch screen.
    The PDAs are 3.5 inch screens running Windows Mobile 5 and IE 5.
    Many Thanks.
    Graham.

    And what about the iPhone???
    It's right IE Mobile is impossible to circumvent on PDA today, but some folks have the new Apple iPhone, with Safari on it: and it's really a nice smartphone and should have a great success in a very near future.
    I'm going to decline an APEX application for iPhone (and also playable on the iPod Touch), following all the good advices given by Apple and on the Google group iPhone-webdev...
    First i should work on CSS and Javascript (to support the landscape mode of the iPhone).
    I will begin to skin a static application using Aptana IDE (supporting iPhone projects) , then reinclude all the resources in an APEX application Theme....
    I should be able to switch transparently (by Javascript or server side) between theme for iPhone and Theme for computers.
    If some people already have (young) experience to develop optimized applications for the iPhone (with APEX), or are interested in, let me know...

  • Can JSP pages run in a Palm OS PDA

    Has anyone been able to run it? How though?

    Just remember that the JSP is going to render HTML output (usually) when you access them. Provided the PDA browser can render the HTML your fine. As mentioned, applets may be out of the question so might other extras. If your developing for PDA browsers I would recommend using plain HTML with little enhancements (javascript, plugins etc) as possible or use straight XHTML which is usually better suited to PDA's.
    You can also tell what type of device is requesting the page through the header fields (request.getHeader(String headerName)) and take action based on that value.
    Regards,
    Anthony

  • Cell Phone Javascript?

    My shopping cart uses javascript to validate forms and other
    functions. Recently I have started to receive strange orders. My
    guess is these people are ordering from their cell phone or PDA and
    the javascript is not catching the form errors. Anyone have
    experience with this? Any way to check for cell phone and not allow
    the order to be submitted.
    I remember reading somewhere that cell phones do not support
    all the javascript commands. Do you think this is what I am
    encountering?
    Any help would be appreciated,
    David

    You must do server-side validation for any such application.
    Do you?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Triplets" <[email protected]> wrote in
    message
    news:f29kek$p69$[email protected]..
    > My shopping cart uses javascript to validate forms and
    other functions.
    > Recently I have started to receive strange orders. My
    guess is these
    > people are
    > ordering from their cell phone or PDA and the javascript
    is not catching
    > the
    > form errors. Anyone have experience with this? Any way
    to check for cell
    > phone
    > and not allow the order to be submitted.
    >
    > I remember reading somewhere that cell phones do not
    support all the
    > javascript commands. Do you think this is what I am
    encountering?
    >
    > Any help would be appreciated,
    >
    > David
    >

  • Forms && JavaScript on Pocket PC 2.0

    I have an application developed in Acrobat. Heavy use of forms and JavaScript. From what I've read, the forms should work in Acrobat Reader Pocket PC Version 2.0. Will the JavaScript work, too? TIA

    Supongo que desde la PDA no has podido desinstalarlo, descargate este porgrama "SpbPocketPlus3" es gratuito e intenta quitar el programa con el desinstalador que trae.

  • Javascript  - is there something like an "active row count" property??

    Lets say I have a tabular form. Every time I use the form, the # of rows returned by the query will vary. Maybe first time I go to the page, the select statement returns only 5 rows, but the next day it returns 25 rows.
    Is there some type of system variable to stores the # of rows visible on the page at a given time within this tabular form?
    I realize that if I have an tabular form item with an id of f03 for example, then on each row it will be referenced as f03_0001, then f03_0002 on the next row and then f03_0003 on the next row etc...
    In pseudocode, here is what I want to do:
    For i = 1 to ACTIVE_ROW_COUNT (assuming this is the # of rows in the HTML table)
    perform some operation on 'f03_000' + ACTIVE_ROW_COUNT
    Do you see what I'm after? I checked the APEX api, but I couldn't find such a property. It seems like you can't do much if you can't figure out this current index # or the max on the page.
    Also, I tried playing around with the "this" keyword in hopes of finding a pointer to the "current item" that would have triggered the onchange event, but no luck either.
    Thanks in advance.

    Hi:
    Within javascript you can reference the columns of the tabular form as
    <script>
    col1 = document.forms0.f01;  // the first updateable column of your report
    alert (col1.length) ;   //  number of rows
    </script>varad
    Edited by: varad acharya on Dec 8, 2008 5:53 PM

  • Problem with JavaScript in my PDF Form buttons

    I am trying to have my user click on a button in my form on my website and e-mail the form data to me.
    I am using the following JavaScript with my form button:
    this.mailForm(false, "[email protected]", "", "", "Subject", "Message Body");
    Protected mode is off.
    When I use the above statement (whether the 1st parameter is set to true or false), nothing happens – no email gets sent and no mail dialog box appears. If I change from this.mailForm(...) to this.mailDoc(...), I get a mail dialog box but, as expected, it sends the blank form without the filled-in data due to low user privileges.
    How can I send the form data with this.mailForm(...)? (Note that I prefer to use this.mailForm(...) rather than mailto:(...) because this.mailForm(...) supposedly allows me to e-mail the form without user interaction.)
    -- Don

    Thanks for responding.  I have been using “Submit a form” in the Mouse up event.  I had that operation do a mailto: and it worked, but required user interaction on the part of the web page visitor.  I have successfully created an equivalent JavaScript including:
        var url = "mailto:[email protected]?subject=mySubject&body=MyMessage"; 
        this.submitForm(url, true);
    The above sent the FDF file successfully, but again, it required user interaction.
    Then I tried this JavaScript - as I mentioned in a previous post - after you said to use doc.submitForm():
        var url = "http://mydomain.com/submit_notice.php";
        doc.submitForm(url, false);
    The above script seemed to do nothing (with no error message). Shouldn't it bring up the PHP file in the web browser?
    I have that php file, submit_notice.php, created, but I have not written any PHP scripts to e-mail the FDF file.  I have never written a PHP script to take the posted FDF data and email it, but I have used the PHP mail() function and posted variables.
    As for what I want to happen on the client side after the submit takes place: I simply want the FDF file to go to an e-mail that I specify.  Additionally, I need it to happen without any client interaction on the part of the web page visitor.  I can expect that visitor to have Adobe reader, but no add-ons or protected mode requirement.
    Please give me an example that emails the FDF file without any user interaction.
    Thank you.
    -- Don

  • Open and Close Popup With Javascript

    Using Apex 3.2
    I have probably done this loads of times in my old job, but do not have access to the code and today I just can't get it to work properly.
    I have opened a pop up window with javascript
    Now I need to close it and refresh the calling page, but only if it passes the validation on the popup.
    I have a hidden item on my pop up called P7_FLAG.
    I have a page process after validation that sets P7_FLAG to (only set to 1, if passes validation).
    I also have a SUBMIT button.
    So once I click my SUBMIT button the page should look at the validations, if ok, set P7_FLAG to 1, then close the popup and refresh the calling page.
    My current javascript look like this
    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    var test = $x('P7_FLAG').value;
    if(test == '1')
    window.close();
    window.opener.doSubmit('REFRESH');
    </script>On my button
    javascript:saveChanges();The problem is that I need to click the SUBMIT button twice.
    First time it sets P7_FLAG
    Second time it closes page and refreshes.
    I have probably made some basic error, but today I cannot see it.
    Cheers
    Gus
    Edited by: Gus C on May 10, 2012 12:48 AM

    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    var test = $x('P7_FLAG').value;
    if(test == '1')
    window.close();
    window.opener.doSubmit('REFRESH');
    </script>javascript does not wait for the current action to complete and then perform the next line.
    means in your function call
    doSubmit('SUBMIT');is triggered and it carry on's to next line that is
    $x('P7_FLAG').value;this will not be set because you are setting the value of P7_FLAG to 1 in plsql and trying to check in javascript, which will not work.
    what you need to do is amend your js function like below
    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    </script>create a page branch to procedure and make it conditional to when P7_FLAG = 1
    and set the branch source to below
    htp.p('window.close();');
    htp.p('window.opener.doSubmit(''REFRESH'');');

Maybe you are looking for

  • How do you get more free effects to use in Final Cut pro x?

    I am looking for a safe free place to download more effects that I can use on my videos in Final cut pro x that include effects that aren't just limited to the colors of the video. I also hope that the place will have clear instructions on how to dow

  • Moving Objects from Quality to Producton

    Hi, whts the process used to move BO Objects from Quality to Production system. Regards, Shiva Kumar G.C

  • Row height

    hi, I'm new with java. I have a JTable with small rows I used the setRowHeigth method to change the heigth for my rows, but I don't know how to change the height of the header row need help

  • How to disable .mac information

    when i open iWeb, the ".Mac Information" sign in page appears, since i am not a member is it possible to 'disable' this and just proceed to iWeb's main page?

  • Interactive report - French language character problem

    Hi, I made an Interactive Report with this table : CREATE TABLE "DEPT" (     "DEPTNO" NUMBER(2,0),      "DNAME" VARCHAR2(14),      "LOC" VARCHAR2(13),      CONSTRAINT "DEPT_PK" PRIMARY KEY ("DEPTNO") ENABLE I have two rows in my table insert into dep