Today I discovered that Firefox crashes when I started up an Oracle Forms application using JInitiator. One thing I noticed that two JVM's were started (two icons showed up in the taskbar). After switching off Java inside Firefox (via Tools->Options->Content) everything works fine. So no need for IE anymore...
If you created your own "updatable reports" or your custom version of tabular forms in Oracle Application Express, you'll end up with a query that looks similar to this one: then you disable the " Escape special characters " property and the result is an updatable multirecord form. That was easy, right? But now we need to process the changes in the Ename column when the form is submitted, but only if the checkbox is checked. All the columns are submitted as separated arrays, named apex_application.g_f0x - where the "x" is the value of the "p_idx" parameter you specified in the apex_item calls. So we have apex_application.g_f01, g_f02 and g_f03. But then you discover APEX has the oddity that the "checkbox" array only contains values for the checked rows. Thus if you just check "Jones", the length of g_f02 is 1 and it contains only the empno of Jones - while the other two arrays will contain all (14) rows. So for ...
Comments
i am vista user. can u tell me i can i make my PC work for Oracle application without useing JInitiator
Amit
JInitiator is known to not work with Vista and Sun is not planning to support 1.3 on Vista. Oracle therefore have no plans to certify JInitiator with Vista.Vista users should be steered towards Sun's plug-in 1.5 once it is certified. That is planned for 10.1.2.3.
So you should try using Suns JVM instead of JInitiator (I didn't try it yet, because I don't have Vista).
HTH
Ganesh
You have to modify the formsweb.cfg file. See this for the details.
HTH
Roel
I Managed to get JVM to work for Vista by editing formsweb.cfg and change the settings of the forms server to auto download the correct plugins. My article is in dutch, you can read it here. Fot the non-dutch readers: at the bottom of the document there are some links to english articles.
Good luck!