Multiple Form submissions

2007-02-21 Thread kiran.gutta
Hi, If same form is submitted multiple times (by double clicking submit twice), my application is hanging. I need to restart the app server for it to work. Please let me know if there is any solution. I am using MyFaces1.1.1 with Tomahawk. Thanks Regards, Kiran The information

RE: Problems with Datascroller on Top of Datatable with t:buffer

2006-12-30 Thread kiran.gutta
Thanks Jeff, I am using PaginatedDateModle. Hence I was binding the scoller to the Page bean. I had to bind 2 scrollers in page to 2 different scrollers in the bean. After that using h:panelGroup is working like a charm. Regards, Kiran -Original Message- From: Jeff Bischoff

RE: Problems with Datascroller on Top of Datatable with t:buffer

2006-12-29 Thread kiran.gutta
Thanks Jeff. I tried the option given by you. If I display the scroller on top of data table, scroller works. I have to display the scroller in the bottom of the data table as well. If I put another scroller after t:dataTable, scroller is coming. ] However, the top scroller stops working.

Problems with Datascroller on Top of Datatable with t:buffer

2006-12-28 Thread kiran.gutta
I am using MyFaces 1.1.1 Tomahawk for my web application. I am displaying Data scroller on top of Datatable using t:buffer. But occasionally, the Datalist Scroller gets distorted. (i.e. Scrollers come multiple times or datatable not rendered at all etc.). It can be easily reproduced if the

Javascript Alert with Japanese characters (UTF-8)

2006-12-20 Thread kiran.gutta
Hi, I am developing a web application using MyFaces 1.1.1. I have to display Japanese Java script alert messages. I am reading the messages from resource bundle using h:outputText. e.g. alert('/f:verbatimh:outputText value=#{messages.res_alert1}/f:verbatim) The messages are displayed as

RE: Javascript Alert with Japanese characters (UTF-8)

2006-12-20 Thread kiran.gutta
Using escape=false also behaving in the same way. I believe escape=false escapes characters like , etc. Thanks, Kiran From: Anil Kommareddi [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 20, 2006 9:49 PM To: users@myfaces.apache.org Subject: RE:

Redirect with setViewRoot outputLinks

2006-11-21 Thread kiran.gutta
Hi, I have Error page with Back button. On selecting Back I navigate to the page in which this error has occurred by setting that page to View Root using following code snippet. FacesContext context = FacesContext.getCurrentInstance(); UIViewRoot newView =

Setting ViewRoot and Browser URL

2006-10-26 Thread kiran.gutta
Hi, I create new View Root and set it to Context in the following scenarios, bypassing faces config navigation. - User enters some URL in browser before authenticating. So, we take user to Login page and after successful login, we take user to requested page using set View Root. - If

RE: problem with using comandLink and navigation to 3rd party web site

2006-09-28 Thread kiran.gutta
You may use h:outputLink with its value set to the URL. Rgds, Kiran -Original Message- From: Legolas Woodland [mailto:[EMAIL PROTECTED] Sent: Thursday, September 28, 2006 1:56 AM To: MyFaces Discussion Subject: problem with using comandLink and navigation to 3rd party web site Hi Thank

RE: Refresh JSF Page

2006-09-26 Thread kiran.gutta
Hi David, Thanks for your support. Coincidentally, I have to provide Refresh (in all pages) Bookmark (in some pages that require parameters) feature in my JSF application. I have gone through the link provided by you. Could you provide some more information about how to use your

RE: Refresh JSF Page

2006-09-21 Thread kiran.gutta
Thanks Jeff, I will try the option suggested by you. Here are some more details about my requirement. Every page of my application has header. Header contains Refresh button. Selecting it, the page should fetch the data from back end. I foresee some problems with Refresh in JSF with the limited

RE: File Downloader

2006-09-12 Thread kiran.gutta
Title: Message Hi, In my JSF application, on selecting download button, I have to download an application (exe). When I navigate to the download page, and select the download button, It opens Open/Save dialog with file name as my pagename.jsf. If I select Open, then another Open/Save

Nested EL Expression

2006-09-06 Thread kiran.gutta
Title: Message Hi, I have to display weekday name (Sunday, Monday etc.), given weekday number which isavailable inbean. Please help me how to write EL _expression_ to get the weekday name from resource bundle. Any pointers in this regard are also highly appreciated. Thanks, Kiran The

Clearing/Resetting Session beans

2006-09-04 Thread kiran.gutta
Title: Message Hi, We defined some beans (related to tomahawk datatable) with session scope even though, they are supposed to be request scope. Otherwise, datatable is not working. We have to clear those beans after exiting the page. I saw On-load JSF component for PhaseListener. But it

Automatic Forwarding of Page

2006-08-07 Thread kiran.gutta
Title: Message Hi, I have to show a progress page after submitting a page. After the processing is over, I need to show another page. Please help me how I can do in JSF. I tried the following h:form . h:commandButton value="Create" f:actionListener type="Creater"/