Replace “_all_” with “All” in Input Parameters

Hello Team,

I am using Helical Insight EE and created dashboard. On the dashboard, I want to replace filter value _all _ with “All”. How can this be done? There is no option.

Thank You

1 Like

Hello Lero,

Open the report in the editor mode and use the following JS in the JS Editor:

hi_container.set("postExecution", function () {
$('.form-control option:contains("_ all_")').text('ALL');
});

You can replace text ‘ALL’ with any text that you want to display.
Please note that this function will work only when you use “Select” type of input parameter. It will not work in case of “Select2” (searchable select) or “checkbox

NOTE: Even though we are adding the above code at the report edit mode, but the changes are visible at the dashboard level only.

Thank You
From Team Helical