Reputation: 387
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
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