Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar committed Sep 7, 2014
1 parent a8a1cc1 commit d93f8bc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/versions.rst
Expand Up @@ -6,6 +6,7 @@ Improvements and Bug fixes on 0.10.6

- (TODO) New, Support for multiple actions, included mass delete.
- (TODO) New, PluginModule implementation.
- (TODO) New, extra_args property, for injecting extra arguments to templates.

Improvements and Bug fixes on 0.10.5
------------------------------------
Expand Down
7 changes: 7 additions & 0 deletions flask_appbuilder/static/appbuilder/js/ab_actions.js
@@ -0,0 +1,7 @@
var AdminActions = function() {

$('.actions_check_all').click(function() {
alert("check all");
});

};
Expand Up @@ -17,7 +17,6 @@
{% endblock %}
{{ lib.panel_end() }}


{% endblock %}


1 change: 1 addition & 0 deletions flask_appbuilder/templates/appbuilder/init.html
Expand Up @@ -31,6 +31,7 @@

<script src="{{url_for('appbuilder.static',filename='js/jquery-latest.js')}}"></script>
<script src="{{url_for('appbuilder.static',filename='js/ab_filters.js')}}"></script>
<script src="{{url_for('appbuilder.static',filename='js/ab_actions.js')}}"></script>

{% endblock %}

Expand Down

0 comments on commit d93f8bc

Please sign in to comment.