popup « portlet « Java Enterprise Q&A





1. File upload in pop up window    coderanch.com

2. How to create a popup window in JSR-168 portlet    coderanch.com

Are you asking for a small popup window to be generated? You can do this through simple JavaScript. Are you asking for the entire portal to be redisplayed in a pop-up window? That's going to be a little trickier, and dare I say it, self-destructive. The portal represents an entirely new paradigm for thinking about your applications. Maybe if you describe ...

3. Problem with File uploading from popup    coderanch.com

Hi Guys, I was strucked with one problem in my application. My problem is,I have a button with name 'AddFile' in my porlet. When i click on the button, a pop up will be opened. From that popup window, i will choose a file(using form local drive, and i will click on 'file upload' button.I ...

4. Alternative of Pop up and 168 portlet ?    coderanch.com

I am developing Portlet which need to have popup calender ( We are moving our web app from non-portal to portal based on JSR-168. one of the requirement we got is look and feel need to have same so end user won't feel any change from old and new application.) Old application got Pop up Calender? What is the work around ...

5. Applet freezes browser and client certificate pop up error( JRE 1.5.0_13 , HTTPS)    coderanch.com

I have a Portal Application which has a link that will bring up the Web application within a new browser window. Web application is configured to use a custom SSO solution for login. All communication with all hosts is over HTTPS. I have provided in the server.xml of Tomcat the loctaion of the keystoreFile and keystorePass. When accessing Web application via ...

6. Popup problem in JBoss Portal    coderanch.com

The best way to avoid this problem is not to use pop-ups. Pop-ups are a serious problem in the portal. But they are also highly frowned upon. Most browsers block pop-ups, so your support desk will now be inundated with people asking why their portal page doesn't work. And pop-ups annoy users greatly. Pop-ups are typically a lazy solution to a ...

8. style for popups in the portlet    coderanch.com

Hi, I have a link in my portlet on click of which should open a popup. The pop up is getting opened and the data is coming. I have applied some styles to the content in the popup which is not coming. For the portal we have a framework which holds the styleclass. The same look and feel has to come ...

9. Display of popup screen in Portlets    coderanch.com

Hi, I have a web application, where we had to open a popup from parent page, search for users, select one user and click ok. The selected user will now be displayed on the parent page. The code used to open the popup window is as follows var url = "searchPage.xhtml"; var popUp = window.open(url,"POPUP","width=680,height=450,scrollbars=yes,menubar=yes,resizable=no"); This code works fine But now ...