Mouly Kumaraswamy

Greenhorn
+ Follow
since Apr 17, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Mouly Kumaraswamy

I have a form having static fields (displayed when page loads) and dynamic fields. The dynamic fields are displayed depending on the value chosen for a static property field. The code snippet to add the dynamic fields:


Problem: When the user is in the last static field and hits TAB the focus needs to go to the first dynamically loaded text box. But when I try to change focus to the dynamic field using document.[form name].[element name].focus() I'm getting an error in IE that the object is null or doesn't exist; while this is working in Firefox. When I gave document.getElementById('tblPrp').rows[0].cells[1] the value returned was <Input value="prp1value">

Any ideas as to make it work in IE?

[ September 30, 2006: Message edited by: Mouly Kumaraswamy ]
[ September 30, 2006: Message edited by: Mouly Kumaraswamy ]
I am working in AIX.

cd ~- and cd - worked

This was something I was searching for a long time.

Thank you all.
17 years ago
Is there a command to move to the previously visited directory in a session.
For example, if I am in "/tmp" and then I go to "/home/name" then is there a command that will take me to "/tmp". (Discounting of course cd /tmp ).
I'm looking for a command analogous to browser back/forward buttons.

I using Korn shell, but commands from other shells are also welcome.
[ September 22, 2006: Message edited by: Mouly Kumaraswamy ]
17 years ago
1. Exam 1Z0-007 - Introduction to Oracle9i: SQL
2. Exam 1Z0-001 - Introduction to Oracle: SQL� and PL/SQL�
3. Exam 1Z0-147 - Program with PL/SQL

To become a OCA you have to give Exam 3 and [Exam 1 or Exam 2]
It is working as I expected, thank you.

You have to give the form an id, append it to the page, and then call document.getElementById("someId").submit();.



How do I append the form to the page? I couldn't identify the DOM function to do it.
The java.sql.Date has a constructor that accepts a long value (epoch), you need to use it.
You can do a self-study. But I think you need to pass both SQL and PL/SQL to become a OCA and then pass Forms to become OCP.

I empathize with you, clearing Forms to become an OCP really sucks. I have decided not to do Forms and stop with an OCA.
Hi Barry,

Recently I bought the Sybex study guides for 1Z0-007 (Biju Thomas). Albeit I've read only the first chapter, I think it is sufficient to take a good shot at the exam. I chose this book over the offical study guide because I felt it had better reviews.
I use the following code to create a dynamic form and submit it




Nothing happens after the form.submit() is called. Is something amiss in the code?
How can I find the number of rows returned by a SQL query without iterating through all the rows? One way would be to add rowcount column in the select clause and order it - but this is very expensive and clumsy.

Also can is it possible to identify upfront if zero rows have been returned?
17 years ago
I use Notepad++. Offers syntax highlighting for many languages including JS and, best of all, is a freeware.
I don't about Eclipse, but WSAD (based on Eclipse 2.1) comes with a graphical editor for web.xml. Use it if Eclipse come with a DD editor.
PageContext is a subclass of JSP Context. It is used to get/store attributes from all scopes, get handle to the writer, and few other functions.

One ServletContext is defined for one web application per JVM. It is primarily used to hold application level attributes.
17 years ago