on 2020 Jun 27 10:42 PM
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?
Request clarification before answering.
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();
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
78 | |
12 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.