• Fabrik V4.4.1 is now available.

    This version corrects the Admin issue introduced by V4.4. V4.4.1 is available through the Joomla Updater or for download through your My Downloads area of our website.

    Turns out a code change intended for our 5.0dev branch inadvertantly got pushed to the 4.x branch (by me, duh!). The javascript structure in 5.0 will change considerably and part of that change took effect with the inadvertant code change.

    We have reverted the code change and released 4.4.1. V4.4 has been retracted.

    Sorry for any inconvenience.

  • A new version of Full Calendar is now available.

    See the details here

Masking areas whilst ajax updates

  • Views Views: 6,889
  • Last updated Last updated:
  • The fabrik loader object allows you to mask of sections of the page whilst they are being updated via an Ajax request.

    The loader object is found here:


    Fabrik.loader

    The 'start' method takes two properties, the DOM node's id that you want to place the loader over, and the loading message.

    to overlay on a div id="hideme":

    HTML:

    <div id="hideme">this will be masked out</div>

    You would use this code:

    Fabrik.loader.start('hideme', 'loading ....... ');

    To then remove the loader you use:


    Fabrik.loader.stop('hideme');


    to show a loading overlay that covers the whole page


    Fabrik.loader.start(null, 'loading msg ');
Back
Top