‎2006 Jan 10 6:28 AM
Hi,
I have a subscreen with 3 tabstrips.
Out of those three, I want to keep one tabstrip hidden(not shown to the user). I want it to be shown only on passing a certain condition.
How do I hide(and unhide) a tabstrip?
Thanks,
Ravi
‎2006 Jan 10 7:11 AM
Hi,
Tabstrip is nothing but the screen element, so what you can do is
in PBO of the screen give some module to modify the screen.
module moify_screen.module modify_screen.
loop at screen.
if screen-name = 'TAB3' and <b>some condition</b>."decide
screen-invisible = 1.
modify screen.
endif.
endloop.
endmodule.Regards
vijay
‎2006 Jan 10 7:11 AM
Hi,
Tabstrip is nothing but the screen element, so what you can do is
in PBO of the screen give some module to modify the screen.
module moify_screen.module modify_screen.
loop at screen.
if screen-name = 'TAB3' and <b>some condition</b>."decide
screen-invisible = 1.
modify screen.
endif.
endloop.
endmodule.Regards
vijay
‎2006 Jan 10 7:29 AM
Hi vijay,
What I require is that 2 tabs should be seen by the user and only on passing certain condition should he be able to see the third tab.
All the three tabs shall be using the same subscreen area.
Regards,
Ravi
‎2006 Jan 10 7:34 AM
Hi Ravi,
Try to loop the screen and make the third tab invisible when the condition not met, when the condition is met it will not modify the screen.
based on the condition you modify the screen(tab)
Regards
vijay