A BorderContainer is primarily used to allow anchoring views to the top,
bottom, left, or right of the container and usually allows the use of a
splitter to resize child views. Since we don't use any of that and don't
need such a control, it was apparrently just luck that it worked at all.
Using a plain ContentPane instead allows the page to render as expected.
Thanks to Galen Charlton for tracking this down and finding the fix.
Signed-off-by: Jason Boyer <JBoyer@eoli.info>
Signed-off-by: Jason Stephenson <jason@sigio.com>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
[% WRAPPER base.tt2 %]
[% ctx.page_title = l('Configure Monograph Parts') %]
- <div dojoType="dijit.layout.BorderContainer" design="headline" >
+ <div dojoType="dijit.layout.ContentPane" layoutAlign="client">
<div dojoType="dijit.layout.ContentPane" layoutAlign="top" class='oils-header-panel' region="top" style="height:30px;">
<div>[% l('Monograph Parts') %]</div>
</div>
<script type="text/javascript">
- dojo.require('dijit.layout.BorderContainer');
dojo.require('openils.CGI');
dojo.require('openils.Util');
dojo.require('openils.widget.AutoGrid');