Ramiz Tariq
Ramiz Tariq

Reputation: 387

how to set focus on textbox in oracle form?

I want to set focus with cursor by default on textbox when open or start the oracle form

how to achieve this target in oracle forms 11g?

Upvotes: 1

Views: 4686

Answers (1)

Littlefoot
Littlefoot

Reputation: 142958

If that item is the first navigable item in a form, you don't have to do anything.

If it is not, create the WHEN-NEW-FORM-INSTANCE trigger and put

go_item('block_name.text_item_name');

in there.

Upvotes: 3

Related Questions