Question

Reload TAB

Hello Creatio Community !

Is it possible to reload the contents of an active TAB from Front-End ?

 

Like 0

Like

3 comments

Hello, 

 

There is a way to refresh the active page from UI with this marketplace plugin -  https://marketplace.creatio.com/template/refresh-active-page-process-el…. This can be implemented with the new process action.

 

Best Regards, 

Igor

No, I don't believe there's any way to reload only a specific tab and the contents of the tab. If the tab contains field groups, you'll need to use

this.reloadEntity();

If the tab contains only details, you can reload the specific details using: 

this.updateDetail({detail: "TheDetailIdOnThePage"});

Note, if the tab contains both details and field groups, there's no need to refresh the details independently since using this.reloadEntity() will reload both the field groups and the details on the page.

See https://customerfx.com/article/refreshing-a-page-or-detail-sections-on-…

Ryan

Thanks Ryan

Show all comments