我正在开发一个列出员工的Coldfusion应用程序。每当我点击“编辑个人资料”时,都会打开<cfwindow>
,可以对其进行编辑并保存到数据库中。
保存后,当用户关闭窗口时,我希望重新加载父页面。
我正在使用cfwindow
这种方式
<cfwindow x="0" y="100" width="400" height="400" center="true"
name="#empname#2" title="Employee details" modal="true"
closable="true" draggable="true" resizable="true" initshow="false"
source="http://localhost:8500/tasks/task1/details.cfm?empname=#empname#"/>
<cfform name="form1">
<cfinput type="button" name="#empname#" value="Edit Profile" onClick="javascript:ColdFusion.Window.show('#empname#')" >
</cfform>
答案 0 :(得分:1)
改编this example from the documentation为我工作。我将此代码添加到父页面:
<script language="javascript">
function test(name) {
ColdFusion.Window.hide(name);
window.location.reload();
}
</script>
...以及子页面中的此代码:
<cfinput name="button" value="Hide Window"
type="button"
onClick="javascript:test('window name')"/>