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

Alv grid (OOP) resizing doesn't work

Former Member
0 Likes
676

Custom container horizontal resizing doesn't work. Resizing vertical and horizontal attributes are set. What am I doing wrong?

Custom container horizontal resizing doesn't work. Resizing vertical and horizontal attributes are set. What am I doing wrong?

3 REPLIES 3
Read only

Former Member
0 Likes
613

Hi Cyrill,

Is your requirement to fit ALV grid to size of monitor ?

You need not use resizing technique.

Check my reply for a recent post:

Thanks,

Nisha Vengal.

Read only

aditya_niyogi
Participant
0 Likes
613

Hi ,

Try using the docking container instead of the custom container.

Sample code:

data: or_doc type ref to cl_gui_docking_container .

create object or_custom_container

exporting container_name = c_container.

create object or_grid

exporting i_parent = or_custom_container.

Then do normal OOP processing

Read only

0 Likes
613

Thanks for quick answer!!!

Edited by: Cyrill Colbinev on Nov 2, 2009 1:42 PM