Current flexmonster component allow to create own modals and customize styling of pivot. but I can't find possibility to fully customize loading of data. For example, what if we want to show process of loading at the top of the page . So we need pivot prop like "loadingPopup: boolean" - it can hide loading popup. And maybe we need access to different loading events. It can be prop onStateChange which accepts function. this function can get status of loading and then change app state . With different state data it will be possible to create progress bar because loading of data can be slow and skeleton on top of pivot - not the best solution.
Hi Oleg,
Thank you for posting your question.
Currently, Flexmonster does not support native loading popup customization.
Nevertheless, you can always change its appearance with your custom CSS configurations. For example, to hide the pop-up, you can do the following:
#fm-pivot-view > div.fm-ui-element.fm-ui.fm-ui-container.fm-ui-window.fm-ui-popup.fm-preloader-view {
display: none !important;
}
As for the loading-related events, here are a couple that you might find helpful when loading data with custom data source API:
Hope this helps!
Best regards,
Mykhailo