cancel
Showing results for 
Search instead for 
Did you mean: 

Remove Maximize button from popup window using Webdynpro ABAP

Former Member
0 Kudos

Hi,

Is there a way to remove the maximize button from a popup window using Webdynpro ABAP?

Thanks,

Jay

Accepted Solutions (1)

Accepted Solutions (1)

phanir_mullapudi
Active Participant
0 Kudos

Hi,

Yes, pls try to do this when you are triggering your Pop-up window.

Call window method SET_IS_RESIZABLE & set parameter IS_RESIZABLE = abap_false

& Also set some default window size using method below.

SET_WINDOW_SIZE to set Width & Height.

Hope it resolves your issue.

Regards,

Phani

Answers (2)

Answers (2)

Former Member
0 Kudos

IS_RESIZABLE = abap_false did not remove the maximize button, it only fixes the size of the popup widow to the specified height and width.

Thanks.

Former Member
0 Kudos

Hi Jayanth,

I think by setting is_resizable parameter pass abap_false. try this

lo_window = lo_window_manager->create_window(
window_name = 'POPUP'
title = 'Window'
close_in_any_case      = abap_true
message_display_mode = if_wd_window=>co_msg_display_mode_selected
message_type = if_wd_window=>co_msg_type_none
is_resizable    = ABAP_FALSE ).

Cheers,

Kris.