我的对话框定义为document:
def send(input):
#here i need to reopen the pipe
proc.stdin.write(input)
proc.stdin.close()
假设此对话框有许多Input / Select / ComboBox等,用户输入,关闭,导航到另一个主项和详细页面,再次打开此对话框实例,信息仍在此处。如果我想在每次用户关闭时清除信息/输入怎么办?
关闭解决此问题的唯一方法是销毁此对话框吗?
答案 0 :(得分:1)
Dialog XML
<Dialog afterClose="dialogAfterclose" >
<beginButton>
<Button text="yes" press="confirmOk"/>
</beginButton>
<endButton>
<Button text="no" press="confirmCancel"/>
</endButton>
</Dialog>
创建对话
if(!this._oDialog){
this._oDialog = sap.ui.xmlfragment("idFragment","Path_to_your_Dialog", this);
}
您需要使用destroy()
的{{1}}。
sap.ui.core.Element
根据您的代码
dialogAfterclose: function(oEvent) {
this._oDialog.destroy();
}
答案 1 :(得分:1)
我发现我的错误是由两个原因引起的:
1。 在destory()
之后忘了设置undefinedconfirmCancel = function() {
this._oAddAssignDialog.destroy();
this._oAddAssignDialog = undefined;
}
2。 此对话框用于在不同视图中重用的表中,tableview id应设置为不同。
//view 1
<mvc:XMLView id="modifyTableView" viewName="xxx.view.AssignTable"/>
//view 2
<mvc:XMLView id="detailTableView" viewName="xxx.view.AssignTable"/>
因此oView.getId()
不会在不同的控制器中生成相同的ID。
答案 2 :(得分:0)
/***********************************/
onOpenAddEmployeeDialog: function () {
var oView = self.getView()
var oDialog = oView.byId('addEmployeeFragment');
if ((oDialog = !null)) {
var oDialog = sap.ui.xmlfragment(oView.getId(), 'sap.ui.view.AddEmployeeFragment'
oView.addDependent(oDialog);
}
var dialogModel = new JSONModel();
oDialog.setModel(dialogModel, 'dialog');
oDialog.open();
},
/***********************************/
/***********************************/
dialogAfterClose: function () {
var oView = self.getView()
var oDialog = oView.byId('addEmployeeFragment');
//clear dialog Data
var oDialogData = oDialog.getModel('dialog').getData();
Object.getOwnPropertyNames(oDialogData).forEach(function(d) {
oDialogData[d] =
});
dialogModel.setData(oDialogData);
oDialog.close();
oDialog.destroy();
},
/***********************************/
<强> * AddEmployee.fragment.xml 强>
<core:FragmentDefinition
xmlns:core="sap.ui.core" xmlns:m="sap.m"
xmlns="sap.ui.layout.form"
xmlns:l="sap.ui.layout">
<m:Dialog id="addEmployeeFragment" afterClose="dialogAfterClose" title="Add Employee" contentWidth="500px" contentHeight="600px">
<m:content>
<Form editable="true">
<FormContainer>
<FormElement label="Actual Entrance Time">
<fields>
<m:TimePicker
id="empAEDTP1"
value="{dialog>/actualStartTime}"
valueFormat="HH:mm"
minutesStep="5"
displayFormat="HH:mm"
change="handleChange"/>
</fields>
</FormElement>
<FormElement label="Actual Exit Time">
<fields>
<m:TimePicker
id="empAEDTP2"
value="{dialog>/actualEndTime}"
valueFormat="HH:mm"
displayFormat="HH:mm"
minutesStep="5"
change="handleChange"/>
</fields>
</FormElement>
<FormElement label="Note">
<fields>
<m:Input value="{dialog>/note}"></m:Input>
</fields>
</FormElement>
</formElements>
</FormContainer>
<layout>
<ResponsiveGridLayout/>
</layout>
</Form>
</m:content>
<m:endButton>
<m:Button type="Accept" text="Save" icon="sap-icon://add" press="onSaveEmployee" />
</m:endButton>
<m:beginButton>
<m:Button type="Reject" text="Cancel" icon="sap-icon://cancel" press="dialogAfterClose" />
</m:beginButton>
</m:Dialog>
</core:FragmentDefinition>