0

Hi i have a simple requirement but really confused to implement that. I have a portletvview.jsp and there's a link in that page. On click of that link i should open a pop-up page, which is my second jsp. How to implement this in JSR-286 Basic Portlet ? Would really appreciate any help..

Thanks, Harry

Harry
  • 1
  • 2

1 Answers1

0

I didnt get the complete question. But From what ever i understood you need something like this

Put this function in javacript file or in the header tag of your html page

 function myPopup() 
     {
            window.open( "place the link for the next jsp here" )
     }

<input type="button" onClick="myPopup()" value="POP!">
Hardik Mishra
  • 14,779
  • 9
  • 61
  • 96
Sanket
  • 393
  • 1
  • 3
  • 12