2015 Jan 12 6:14 AM
Hi experts,
I have designed a text editor in module pool by using custom control.
Is there any way by which i can hide the text editor based on certain conditions.
please reply urgently !!
2015 Jan 12 7:04 AM
Hi,
for SCREEN-GROUPs are not available for custom controls, either you can try to make the control invisible by its name (LOOP AT SCREEN WHERE name = 'YOUR_EDITOR_CONTROL') at PBO.
Or you can try to solve your issue with a docking container outside your normal screen and show this container depending on your conditions.
Regards,
Klaus
2015 Jan 12 7:20 AM
Did you check methods of your container, most container classes carry the method "set_visible". Else a class as CL_GUI_TEXTEDIT also carries this method.
Regards,
Raymond
2015 Jan 12 7:20 AM