Hi,
How to open small window when i click Command Button or Command link in a webpage.
Thanks,
Vinutha.
How to open small window when i click Command Button or Command link in a webpage.
Thanks,
Vinutha.
<h:commandButton id="save" value="Save" onclick="fun()" />
function fun() {
top.consoleRef=window.open('#{facesContext.externa lContext.requestContextPath}/main/patient/patient.jsf','myconsole',
'width=350,height=250'
+',menubar=0'
+',toolbar=0'
+',status=0'
+',scrollbars=1'
+',resizable=0')
top.consoleRef.document.close()
}
Comment