django-ajax-loading-overlay

Uses JS to add/remove a loading overlay during Ajax calls
Download

django-ajax-loading-overlay Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Publisher Name:
  • Jonny Gerig Meyer
  • Publisher web site:
  • https://github.com/jgerigmeyer/

django-ajax-loading-overlay Tags


django-ajax-loading-overlay Description

Uses JS to add/remove a loading overlay during Ajax calls django-ajax-loading-overy uses JavaScript to add/remove a loading overlay to a target element during Ajax calls. It can be called on any element that should receive the loading overlay, and accepts options for class selectors and loading overlay text.InstallationIn your Django project settings, add "ajax_loading_overlay" to your INSTALLED_APPS.UsageLinking the JS:< script src="{{ STATIC_URL }}ajax_loading_overlay/jquery.ajax-loading-overlay.js" >< /script >Calling the plugin:$('#target').loadingOverlay();Removing the loading overlay (usually upon success of the Ajax call):$('#target').loadingOverlay('remove');Options can be passed to override the default loading class ('loading'), overlay class ('overlay'), and/or loading text('loading...'):$('#target').loadingOverlay({ loadingClass: 'myLoadingClass', overlayClass: 'myOverlayClass', loadingText: 'Loading. Please Wait.'});If options are passed when initializing the loading overlay, the same options must be passed when removing that overlay (though loadingText is not used by the remove method):$('#target').loadingOverlay('remove', { loadingClass: 'myLoadingClass', overlayClass: 'myOverlayClass'}); Requirements: · Python · jQuery · Django What's New in This Release: · JS cleanup; added JSLint options.


django-ajax-loading-overlay Related Software