cancel
Showing results for 
Search instead for 
Did you mean: 

SAP iRPA User Interface/PopUp not shown always

yilmazozkn
Participant
0 Kudos
372

Hi, I designed an user interface(POPUP) for selecting a file,
When I start the project in desktop agent, I see the user interface only when the cursor is over the corner which I setted position.

For example with define of POPUP in below, Interface is shown only when cursor on the Right Top corner;

popup = POPUPS.SelectFile = POPUPS.popup({ SelectFile: {
	template: e.popup.template.AppBar,
	url: "SelectFile\\popup.html",
	IEHost: false,
	X: e.popup.position.Right,
	Y: e.popup.position.Center, 
}});

How should appbar set to shown always?

Accepted Solutions (0)

Answers (1)

Answers (1)

jleonard
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi


I think that is due to your code instead of using the popup variable use your own variable.

Like this :

var myPopup = POPUPS.popup({ SelectFile: {
	template: e.popup.template.AppBar,
	url: "SelectFile\\popup.html",
	IEHost: false,
	X: e.popup.position.Right,
	Y: e.popup.position.Center, 
}});

myPopup.open();