Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {# parent #}
- {% block body_content %}
- <div>
- {{ jqgrid_html(gridView) }}
- <button id="button_new_project">New project</button>
- </div>
- {% endblock %}
- {% block stylesheets %}
- {{ parent() }}
- <link href="/bundles/yptjqgrid/css/ui.jqgrid.css" rel="stylesheet" type="text/css" />
- {% endblock %}
- {% block javascripts %}
- {{ parent() }}
- <script type="text/javascript" src="/bundles/yptjqgrid/js/i18n/grid.locale-en.js"></script>
- <script type="text/javascript" src="/bundles/yptjqgrid/js/jquery.jqGrid.min.js"></script>
- {{ jqgrid_js(gridView) }}
- <script type="text/javascript">
- $(function() {
- $('.ui-search-toolbar').hide();
- $('#button_new_project').button({ icons: { primary: 'ui-icon-plus' } }).on('click', function () { window.location.href = '{{ path('axtion_project_new') }}'; });
- });
- </script>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment