farmer-duck

Untitled

May 3rd, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. {# parent #}
  2. {% block body_content %}
  3. <div>
  4. {{ jqgrid_html(gridView) }}
  5. <button id="button_new_project">New project</button>
  6. </div>
  7. {% endblock %}
  8. {% block stylesheets %}
  9. {{ parent() }}
  10. <link href="/bundles/yptjqgrid/css/ui.jqgrid.css" rel="stylesheet" type="text/css" />
  11. {% endblock %}
  12. {% block javascripts %}
  13. {{ parent() }}
  14. <script type="text/javascript" src="/bundles/yptjqgrid/js/i18n/grid.locale-en.js"></script>
  15. <script type="text/javascript" src="/bundles/yptjqgrid/js/jquery.jqGrid.min.js"></script>
  16. {{ jqgrid_js(gridView) }}
  17. <script type="text/javascript">
  18. $(function() {
  19. $('.ui-search-toolbar').hide();
  20. $('#button_new_project').button({ icons: { primary: 'ui-icon-plus' } }).on('click', function () { window.location.href = '{{ path('axtion_project_new') }}'; });
  21. });
  22. </script>
  23. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment