Hi,
I have a BSP application in which I need to show up certain information in a small popup screen on user click on a button.
How to create a BSP page with certain dimensions (like in ABAP - window starting at x..) and open it up as a popup from a BSP screen user click??
Kindly suggest.
Thanks,
Krish
here is a sample code to open a window:
sample1:
<HTML>
<TITLE>TESTTTTT</TITLE>
documents_todo.htm',window.name + 'x','width=600,height=700')">
</BODY>
</HTML>
sample2:
OnClick="window.open(this.href,'_blank',
'width=500,height=500,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1');
return false;"
Message was edited by: manasa
Add a comment