396
Views
2
Comments
[How To - Lazy load] Full Screen Ajax
Question
lazyload-png
Web icon
Forge asset by Francisco Menezes

Is there a way to use this component in conjunction with the Full Screen AJAX (https://www.outsystems.com/forge/component/1278/fullpagefeedbackajax/) so that initially when the lazy load blocks are loading the full screen AJAX doesn't appear, but then once they're all loaded it will? 


2024-02-16 07-43-18
Amit Verma

Tom Ciullo wrote:

Is there a way to use this component in conjunction with the Full Screen AJAX (https://www.outsystems.com/forge/component/1278/fullpagefeedbackajax/) so that initially when the lazy load blocks are loading the full screen AJAX doesn't appear, but then once they're all loaded it will? 


Hi Tom,

you can use Feebback_AjaxWait web block for full page loading..PFA screen shot

add RunJavaScript function on preparation....use below code


 "$('.Feedback_AjaxWait').each(function()
      {
          $(this).children('img').attr('src', '/RichWidgets/img/loading.gif?18');
      });"

UserImage.jpg
Tom Ciullo

Right ok thanks i will try this!

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.