tab change [message #641061] |
Mon, 10 August 2015 06:30 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/162e216f329427776c437d2638523b1d?s=64&d=mm&r=g) |
sanodani
Messages: 98 Registered: October 2014
|
Member |
|
|
Hallo Forum,
I would like to share my Problem about tab changed.
I have two Tabs in my forms, and i would like to have them, when i changed the tab, the respective fields should be enter_query mode.
I have When-Tab-page-changed Trigger at form Level:
declare
new_tab varchar2(30);
begin
if (:System.mode = 'ENTER_QUERY') then
new_tab := get_canvas_property('tab_canvas', topmost_tab_page);
if new_tab = 'tab1' then
go_item ('block1.id');
enter_query;
elsif new_tab = '_tab2' then
go_item('block2.id');
enter_query;
end if;
end if;
end;
But it did not work :/ can anyone please suggest me, how i can do this?
|
|
|
|
|