Skip to content

Commit

Permalink
修复看板编辑页面图表列表有时会出现表格列宽混乱的BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
datageartech committed Oct 29, 2021
1 parent 234c064 commit 443dbc3
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ readonly 是否只读操作,允许为null
</#if>
</div>
</form>
<div class="chart-list-panel minor-panel ui-widget ui-widget-content ui-corner-all ui-widget-shadow">
<div class="chart-list-panel togglable-table-panel minor-panel ui-widget ui-widget-content ui-corner-all ui-widget-shadow">
<div class="panel-content minor-dataTable pagination-light"></div>
</div>
</div>
Expand Down Expand Up @@ -386,9 +386,16 @@ readonly 是否只读操作,允许为null
$.setGridPageHeightOption(options);
po.open("${contextPath}/chart/select?multiple", options);
}
else
{
$.callPanelShowCallback(chartListPanel);
}
}
else
{
chartListPanel.hide();
$.setResizeDataTableWhenShow(chartListPanel);
}
});
}
</#if>
Expand Down

0 comments on commit 443dbc3

Please sign in to comment.