Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Web application - Call Error page in Script

Avatar

Level 4

Hi,

 

In web application, I have added code in script and want to call error page message(location- web application properties>Error page tab) in script.

tejashriw155148_0-1594387942716.png

 

 

Example:

code in script like

 

if (condition==true)

{

}

else{

//display error page message

}

 

Any suggestions?

 

Regards,

Tejashri

 

 

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
Instead of initializing the error in error page just create the ctx variables for the error and when the error happens then you can redirect the page to the display error by printing the ctx variable related to that error.

     Manoj
     Find me on LinkedIn

View solution in original post

3 Replies

Avatar

Community Advisor

Hello @tejashriw155148,

 

Error page comes in action when there is some issue with the page and the error page content is displayed.

 

If you want to show error then you can store that error in content variables like 

ctx.vars.line1="ERROR_2_CONTENT HERE";
ctx.vars.line2="ERROR_2_CONTENT_HERE";

 

and then you can print the error like this.

<%if (condition==true){
your logc here
}else{
%>
<%= ctx.vars.line1 %>
<%
}
%>

 

Let me know if that works.


     Manoj
     Find me on LinkedIn

Avatar

Level 4

Hi @Manoj_Kumar_ 

 

Using alert I'm able to show the message but I want to display same which I have defined in Error page like below

tejashriw155148_0-1594390487433.png

Is it possible to call it in script?

 

Regards,

Tejashri

 

 

Avatar

Correct answer by
Community Advisor
Instead of initializing the error in error page just create the ctx variables for the error and when the error happens then you can redirect the page to the display error by printing the ctx variable related to that error.

     Manoj
     Find me on LinkedIn