gpt4 book ai didi

cuba-platform - CUBA 平台 : invalid window height for editor opened as dialog from a table action

转载 作者:行者123 更新时间:2023-12-04 03:43:05 25 4
gpt4 key购买 nike

我有一个带有表的屏幕,该表处理与实体(简单,2 个字段)的多对多关系,其中还定义了 1 个单条记录。

我为关联实体创建了标准浏览器屏幕,并为前一个屏幕的“添加”操作表定义了 openType = DIALOG。

然后对话框窗口的高度太紧凑了(见下面的截图),我想这是因为没有足够的实体来显示所以高度计算是错误的。

dialog height wrong

如果我在对话窗口上执行“分析布局”,我会收到以下警告:

[WARN] Nested component 'contactEmailsTable'
Nested component has relative height 100.0% inside window with undefined height

作为一种解决方法,我尝试在工作室中手动设置 table 高度,但没有机会。

在工作室中没有看到手动设置窗口高度的位置,所以我尝试通过覆盖 init 方法(见下文)重新定义它,没有机会。
@Override
public void init(Map<String, Object> params) {
super.init(params);
int unit = getHeightUnits();
float height = getHeight();
switch(unit) {
case UNITS_PIXELS:
setHeight(""+height * 1.10f+"px");
case UNITS_PERCENTAGE:
setHeight(""+Math.min(100, height + 0.10f)+"%");
}
}

以下是上述对话框的 xml。
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<window xmlns="http://schemas.haulmont.com/cuba/window.xsd"
caption="msg://browseCaption"
class="com.busy.busyapp.gui.contactemail.ContactEmailBrowse"
focusComponent="contactEmailsTable"
lookupComponent="contactEmailsTable"
messagesPack="com.busy.busyapp.gui.contactemail">
<dsContext>
<collectionDatasource id="contactEmailsDs"
class="com.busy.busyapp.entity.ContactEmail"
view="_local">
<query>
<![CDATA[select e from busyapp$ContactEmail e]]>
</query>
</collectionDatasource>
</dsContext>
<layout expand="contactEmailsTable"
spacing="true">
<filter id="filter"
applyTo="contactEmailsTable"
datasource="contactEmailsDs">
<properties include=".*"/>
</filter>
<table id="contactEmailsTable"
presentations="true"
width="100%">
<actions>
<action id="create"/>
<action id="edit"/>
<action id="remove"/>
<action id="excel"/>
</actions>
<columns>
<column id="label"/>
<column id="email"/>
</columns>
<rows datasource="contactEmailsDs"/>
<rowsCount/>
<buttonsPanel id="buttonsPanel"
alwaysVisible="true">
<button id="createBtn"
action="contactEmailsTable.create"/>
<button id="editBtn"
action="contactEmailsTable.edit"/>
<button id="removeBtn"
action="contactEmailsTable.remove"/>
<button id="excelBtn"
action="contactEmailsTable.excel"/>
</buttonsPanel>
</table>
</layout>

最佳答案

以下示例显示了如何管理对话框窗口尺寸。

打开一个屏幕作为具有定义宽度和高度的对话框:

openEditor(entity, OpenType.DIALOG.width(480).height(320));

在其 Controller 中设置屏幕的宽度和高度:
@Override
public void init(Map<String, Object> params) {
getDialogOptions().setWidth(480).setHeight(320);
}

在 XML 描述符中相同:
<dsContext/>
<dialogMode width="480" height="320"/>
<layout/>

指定屏幕应始终作为对话框打开:
@Override
public void init(Map<String, Object> params) {
getDialogOptions().setForceDialog(true);
}

在 XML 描述符中相同:
<dsContext/>
<dialogMode forceDialog="true"/>
<layout/>

关于cuba-platform - CUBA 平台 : invalid window height for editor opened as dialog from a table action,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39000172/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com