UI page (j:set)

Community Alums
Not applicable

Hi folks,

Where can i find this data in assessment_take2 UI page.

KhasimPathan_0-1722340848985.png

 

4 REPLIES 4

Rajesh Chopade1
Mega Sage

Hi @Community Alums 

 

In the Server Script sections, look for lines that retrieve parameters, typically using gs.getProperty or gs.getParameter.

I hope my answer helps you to resolve your issue, if yes mark my answer helpful & correct.

thank you

Rajesh chopade

Community Alums
Not applicable

@Rajesh Chopade1 ,

tried this already, i didn't find this in client, processing script

Hi @Community Alums 

the value of ${sysparm_hide_save} is likely coming from a query parameter or a variable passed to the UI page.

 

Check URL Parameters:

Check Client Scripts and UI Actions:

  • Client scripts or UI actions might be passing this parameter. Look for any scripts or actions that navigate to the UI page and append sysparm_hide_save to the URL.

 

Client Script Example:

 

 

function navigateToUIPage() {

    var url = '/your_ui_page.do?sysparm_hide_save=true';

    window.location = url;

}

 

 

 

UI Action Example

 

 

var url = new GlideURL('your_ui_page.do');

url.addParam('sysparm_hide_save', 'true');

action.setRedirectURL(url.toString());

 

 

 

Check Server-Side Scripts:

Server-side scripts such as Script Includes, Business Rules, or Processors might set this parameter.

 

 

var gr = new GlideRecord('your_table');

if (gr.get('sys_id', current.sys_id)) {

    gs.addInfoMessage('Navigating to UI page');

    gs.setRedirect('/your_ui_page.do?sysparm_hide_save=true');

}

 

 

 

I hope my answer helps you to resolve your issue, if yes mark my answer helpful & correct.

thank you

Rajesh chopade

Community Alums
Not applicable

@Rajesh Chopade1 ,

thanks for reply,

I tried looking where, it doesn't help

I posted here finally.