Skip to Content
0
Former Member
Dec 03, 2009 at 01:45 PM

Modal PopUp

51 Views

Hello Gurus,

I have a question regarding modal popup window.

Below is my code in ComponentController:

DATA window_manager TYPE REF TO if_wd_window_manager.

DATA window TYPE REF TO if_wd_window.

window_manager = wd_this->wd_get_api( )->get_window_manager( ).

window = window_manager->create_window( 'WIN' ).

window->open( ).

Here, i'm opening the new window. I have to open it with option RESIZABLE = FALSE.

Unfortunately i can't do it and my window can be resized via minimize/maximize buttons and via mouse.

How to prohibit such a possibility?

p.s. i can't use window->set_is_resizable()

Thank you,

Yury