cancel
Showing results for 
Search instead for 
Did you mean: 

Pop up Iview

Former Member
0 Kudos

Hello,

How would i go about to create an pop-up iview in an DynPage? I want to use it for picking values and filling an inputfield.

Thanks,

MAx

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

I use pop-up's for filling an inputfield (search help) by creating with the URLGenerator the url of an portal component that implements the search help funcionality, and then I put this url as a parameter of an window.open('<<url>>' , ...)

Former Member
0 Kudos

URL Generator service is not there in EP6. Does sap suggest any alternative service for url generator?.

Former Member
0 Kudos

Hi Jaume,

Can u send me some code for this. In my case I am trying to instantiate a popup when the user clicks on a image next to a company code input field. The popup contains the company codes and when the user selects a value it gets populated in the input field.

Thanks,

Sunil

Oliver5
Advisor
Advisor
0 Kudos

you can add normal javascript to your hmlb control onClick:

window.open("file.htm","window1","width=310,height=400,left=0,top=0");

but this is not a htmlb feature.

htmlb like is to have 2 iviews on one page. One for selection one for diplay or 2 controls in one iview.

Communictaion between 2 iviews via request handling in the server or ep client framework.

There are detailled tutorials in PDK.

BR,

OLiver

Former Member
0 Kudos

hi oliver,

assuming the approach you suggested, is it possible to dynamically hide the iview on a page or display as and when required? an example would be a generic search iview.

KR

erick