‎2010 Mar 18 9:21 AM
Hi all,
I'm displaying a ALV grid using a custom container. That custom container has a border while displaying.
How to display the container without border..
Kindly help me in this.
Regards,
Senthil
‎2010 Mar 18 9:57 AM
you should provide a shellstyle
m_style = ws_visible + ws_child + ws_thickframe.
the constants values are stored into attributes of class
shellstyle is defined by parameter STYLE in method CONSTRUCTOR of CL_GUI_CUSTOM_CONTAINER
‎2010 Mar 18 10:32 AM
Hi François,
I have given the value accordingly, but still border is coming..
can u pls explain with code..
Regards,
Senthil
‎2010 Mar 18 10:59 AM
try
m_style = ws_visible + ws_child
maybe the thickframe is the reason
then you could try several combinations in order to find the style you need
‎2010 Mar 18 11:56 AM