cancel
Showing results for 
Search instead for 
Did you mean: 

Hiding the message "On Result Set Changed"

Former Member
0 Kudos

Hi Raj,

Could you share the code that you used to hide the message in the "On Result Set Changed"? I have created a pop-up with similar message and used pop-up.close(); but trouble is, the pop-up gets closed before the end of execution.

Accepted Solutions (1)

Accepted Solutions (1)

former_member265529
Contributor
0 Kudos

Hi Adam,

The pop-up will get closed if you used it in that way, because the result set will be changed when we pass a filter or do something to datasource, but the loading time of that change takes time. Because it also include component loading time.

To achieve it you can use timer component to delay your code to close the pop-up widow.

You can add the timer in technical components list in your application and use it to delay the execution time of the script to an approximate time.

Thanks,

Poovarasan

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks a lot Poovarasan, your suggestion worked!