Expand my Community achievements bar.

SOLVED

Just either MESSAGE or POPUP?

Avatar

Level 8

Hello

I am trying to give an INFORMATION message by using the below Java Script, but its giving ERROR message ('X' with RED circle) kind of popup/display

xfa.host.messageBox("You are all set - Good to Go");

I guess, below also will not work!

app.alert("You are all set - Good to Go")

Thank you

1 Accepted Solution

Avatar

Correct answer by
Level 2

Try using,

app.alert("You are all set - Good to Go",3);

It will display information icon

Thanks,

Anitha

View solution in original post

2 Replies

Avatar

Correct answer by
Level 2

Try using,

app.alert("You are all set - Good to Go",3);

It will display information icon

Thanks,

Anitha

Avatar

Level 8

Thank you, here number "3" making as INFO?

THank uo