Fix sequence of events re: grid component creation

somehow if the master view template had rows, the Delete Results
button was not working.  not clear when that problem started?! but
this seemed to be the correct fix
This commit is contained in:
Lance Edgar 2022-08-09 23:26:41 -05:00
parent ca5e2c1ff9
commit 0e8f383c14

View file

@ -122,7 +122,8 @@
${parent.render_this_page_template()} ${parent.render_this_page_template()}
</%def> </%def>
<%def name="make_this_page_component()"> <%def name="finalize_this_page_vars()">
${parent.finalize_this_page_vars()}
% if master.has_rows: % if master.has_rows:
<script type="text/javascript"> <script type="text/javascript">
@ -132,7 +133,6 @@
</script> </script>
% endif % endif
${parent.make_this_page_component()}
</%def> </%def>