Hello,
I cannot get copy&paste working in an PopUp Window in WebUI. I added a Button to the WebUi which opens a PopUp window which shows an external Webpage. The PopUp works and the webpage is displayed correct but in the PopUp I cannot use copy&paste (STRG+C or STRG+V)
For PopUp creation I am using this code:
GV_CALL_POPUP_FOR_DWF = me->comp_controller->window_manager->create_popup(
iv_interface_view_name = 'POPUP_URL/MainWindow'
iv_usage_name = 'CUPopup'
iv_title = 'Popup' ).
GV_CALL_POPUP_FOR_DWF->set_window_width( iv_width = 1200 ).
GV_CALL_POPUP_FOR_DWF->set_window_height( iv_height = 900 ).
GV_CALL_POPUP_FOR_DWF->set_display_mode( if_bsp_wd_popup=>c_display_mode_plain ).
GV_CALL_POPUP_FOR_DWF->set_on_close_event( iv_view = me iv_event_name = 'EH_ONRETURN').
GV_CALL_POPUP_FOR_DWF->open( 'OPENURL' ).
In the component POPUP_URL/MainWindow I use the following code to open the Webpage:
runtime->server->response->redirect( url = lv_url ).
navigation->response_complete( ).
Does anyone know this Problem and can provide a solution or a hint what might be the reason?