Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Custom container without border

Former Member
0 Likes
773

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

4 REPLIES 4
Read only

franois_henrotte
Active Contributor
0 Likes
605

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

Read only

0 Likes
605

Hi François,

I have given the value accordingly, but still border is coming..

can u pls explain with code..

Regards,

Senthil

Read only

0 Likes
605

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

Read only

0 Likes
605

Still i'm facing the problem François..