Skip to content

Instantly share code, notes, and snippets.

Created January 4, 2013 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4452470 to your computer and use it in GitHub Desktop.
Save anonymous/4452470 to your computer and use it in GitHub Desktop.
django grappelli jquery actions undefined
<!-- jQuery, jQuery-UI -->
<script src="/static/grappelli/jquery/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="/static/grappelli/jquery/ui/js/jquery-ui-1.8.18.custom.min.js" type="text/javascript"></script>
<!-- Grappelli Main JS -->
<script src="/static/grappelli/js/grappelli.js" type="text/javascript"></script>
<!-- Grappelli jQuery Plugins, Widgets -->
<script src="/static/grappelli/js/jquery.grp_collapsible.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_collapsible_group.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_timepicker.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_related_fk.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_related_m2m.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_related_generic.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_autocomplete_fk.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_autocomplete_m2m.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_autocomplete_generic.js" type="text/javascript"></script>
<script src="/static/grappelli/js/jquery.grp_inline.js" type="text/javascript"></script>
<script type="text/javascript" src="/static/admin/js/core.js"></script>
<script type="text/javascript" src="/static/admin/js/admin/RelatedObjectLookups.js"></script>
<script type="text/javascript" src="/static/admin/js/jquery.js"></script>
<script type="text/javascript" src="/static/admin/js/jquery.init.js"></script>
<script type="text/javascript" src="/static/admin/js/actions.js"></script>
<script type="text/javascript" src="/admin/jsi18n/"></script>
<script type="text/javascript" charset="utf-8">
(function($) {
$(document).ready(function() {
$("tr input.action-select").actions();
});
})(grp.jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment