Shantha - Friday, December 13, 2013 5:28 AM:
Hi,
I'm trying to create a alert dialog window which has particular data in tabular format and shows for particular user group login's ARAS.
I'm checking the default.aspx,setup.aspx but don't know exactly where to embed so that it checks the login crendentials and leads to alert dialog window .
How to do and Where to embed the code to achieve this particular task.
Thanks,
Shantha.
Amit Nawale - Wednesday, January 1, 2014 2:52 AM:
Hi Shantha,
You have to write your code in login.aspx page .
You can find login.aspx in Innovator --> Client-->scripts folder.
In login.aspx page there is function name submitLogin().
In that function you can find below lines code:
main_container.style.visibility = "hidden";
document.body.style.backgroundImage = "url(../images/animated/ProgressSmall.gif)";
document.body.style.backgroundPosition = "center center";
.onSuccessfulLogin('<%=Client_config("setup_qs")%>');
write your code after .onSuccessfulLogin('<%=Client_config("setup_qs")%>'); line number 392
Thanks,
Amit