Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

discriminate "partial reload" or "reload"

Hello,

Is it possible to discriminate "partial reload" or "reload" in load scripts?

I would like to skip some lines in load scripts if it is partial reload,

and would like to skip some other lines if it is reload.

thanks in advance.

1 Solution

Accepted Solutions
sunny_talwar

You can use If IsPartialReload() statement. For example:

If not IsPartialReload() then //When you want something to be reloaded during only regular reload

If IsPartialReload() then //When you want something to be reloaded during only partial reload

View solution in original post

3 Replies
sunny_talwar

You can use If IsPartialReload() statement. For example:

If not IsPartialReload() then //When you want something to be reloaded during only regular reload

If IsPartialReload() then //When you want something to be reloaded during only partial reload

Not applicable
Author

Thank you, Sunny.

It worked perfectly!

sunny_talwar

No problem

I am glad it helped.

Best,

Sunny