Re: Where can i find jar file for trinidad?

2007-01-19 Thread mathias °ö°
hi madhav Trinidad (or formal ADF Faces) refers to an open source code donation contributed by Oracle. for a stabile build look here: http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/index.html mathias °ö° Madhav Bhargava wrote: Hi All, My workplace

RE: Hibernate Object and JSF Bean Design

2007-01-19 Thread stormspire
Hi, That means action layer can't take advantage of lazy loading feature any more if detach the hibernate object and view object. It's also troublesome to copy value from entity to view object one by one, and it will decrease performance if using reflecting. Will this approach considered

RE: Hibernate Object and JSF Bean Design

2007-01-19 Thread stormspire
Hi, Right now we are using HibernateInView filter, normally won't have problem for transactions. However if we got some exception, the session may be lost (haven't gone to the detail, dunno why). If my managed bean consists two actions, one action retrieves object, another action update the

Re: Where can i find jar file for trinidad?

2007-01-19 Thread Matthias Wessendorf
Hi, check the wiki http://wiki.apache.org/myfaces/Trinidad that provides links to a maven repo (which contains nightly builds) -M On 1/19/07, Madhav Bhargava [EMAIL PROTECTED] wrote: Hi All, My workplace does not allow me to connect to external CVS/SVN repositories and therefore i will not

Re: Hibernate Object and JSF Bean Design

2007-01-19 Thread David Delbecq
I don't think there is a problem with using hibernate as JSF bean. However, the managed beans (those whose lifecycle is directly managed by jsf) should only be beans whose role is to fetch hibernate POJOs. There is no problem in having those hibernate objects referenced by JSF components, as long

Re: Hibernate Object and JSF Bean Design

2007-01-19 Thread Mario Ivankovits
Hi! Well, I work in an mid size project, approx 3000 java files and 300 jsps. No need for load balancing or failover, which makes things easier ;-) We moved (or currently move) from our own persistence to hibernate with all its problems (Lazy loading, detached objects, ...) Exceptions all

Memory leak

2007-01-19 Thread phtan
Hi, We have a memory leak problem when running MyFaces 1.1.3 on Websphere 6.1. We used a tool provided by IBM call Memory Dump Diagnostic to compare 2 heap dumps or when we get a core dump due to out of memory. The leak candidate shown by the tool is almost always the BeanInfoManager in apache

Re: HashMap and dataTable

2007-01-19 Thread mathias °ö°
hi maik thanks for your answer it works, but the jsf-page display this: table: [Frage1=Antwort1, Frage3=Antwort3, Frage2=Antwort2, Frage4=Antwort4] [Frage1=Antwort1, Frage3=Antwort3, Frage2=Antwort2, Frage4=Antwort4] [Frage1=Antwort1, Frage3=Antwort3, Frage2=Antwort2, Frage4=Antwort4]

Re: Hibernate Object and JSF Bean Design

2007-01-19 Thread Mario Ivankovits
Hi! Well, I work in an mid size project, approx 3000 java files and 300 jsps. No need for load balancing or failover, which makes things easier ;-) Oh, I forget, we directly use Hibernate Objects in our view too. Ciao, Mario

RE: How to submit a form using javascript

2007-01-19 Thread Rønnevik , Eivind
Hi! I can give you an example of how I use javascript to do a click on a button. :) You must remember that if your form id is myForm, and the button's id is myButton, the correct name of the button (element) in javascript is myForm:myButton (This changes is you use the tomahawk

Re: How to submit a form using javascript

2007-01-19 Thread Mario Ivankovits
Hi! I can give you an example of how I use javascript to do a “click” on a button. :) Please have a look at our tomahawk-sandbox submitOnEvent [1] component. Should already do what you want. Ciao, Mario [1] http://wiki.apache.org/myfaces/SubmitOnEvent

Re: HashMap and dataTable

2007-01-19 Thread Volker Weber
Hi, try: t:dataTable value=#{myHashMap.myhmEntrySet} var=entry t:column t:outputText value=#{entry.key} / /t:column t:column t:outputText value=#{entry.value} / /t:column /t:dataTable Regards, Volker 2007/1/19, mathias °ö° [EMAIL PROTECTED]: hi maik thanks for your answer it

Re: HashMap and dataTable

2007-01-19 Thread mathias °ö°
hi volker great! it works thanks Volker Weber-4 wrote: Hi, try: t:dataTable value=#{myHashMap.myhmEntrySet} var=entry t:column t:outputText value=#{entry.key} / /t:column t:column t:outputText value=#{entry.value} / /t:column /t:dataTable Regards, Volker

Re: download file breaks lifecycle

2007-01-19 Thread CarlHowarth
Hello, I posted a question previously relating to this that unfortunately has not had any replies - I'm hoping to get this resolved I have the same problem whereby the file's downloaded then any subsequent action on the page causes the file to re-download. I have added the saveSerializedView

t:inputDate

2007-01-19 Thread Alex . Trusler
Hello all, Does anyone know if you can programatically change the value of a t:inputDate field? I am trying to set the value of a t:inputDate component so that it displays the date on screen. I can only get it to display current date and time. I have the followng backing bean :- public class

[OT][ANN] JAVAWUG BOF 23 Video Available

2007-01-19 Thread Peter . Pilgrim
Hi Just a quick announcement that JAVAWUG BOF 23 video is available from Google Video. This was an Open Space Technology discussion of Java Web and Enterprise Futures. http://video.google.com/videoplay?docid=-354206984911965249hl=en -- Peter Pilgrim, JUG Leader, JAVAWUG (The Java Web Users

I need you opinion (suggestion)...

2007-01-19 Thread mario.buonopane
I know this is not a question usually we must send in this mailing list but i would like the opinion of someone of you for the following: I need to access to the HttpRequest object in a POJO with no parameters input. This POJO is executed in a servlet container because is a Front End component.

Re: t:inputDate

2007-01-19 Thread Volker Weber
Hi Alex, where did you call setTestDate()? 2007/1/19, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hello all, Does anyone know if you can programatically change the value of a t:inputDate field? I am trying to set the value of a t:inputDate component so that it displays the date on screen. I can

Re: unsubscribe

2007-01-19 Thread Ali Sakebi
Sorry wrong receiver! On 1/19/07, Ali Sakebi [EMAIL PROTECTED] wrote:

Re: rcfaces with myfaces

2007-01-19 Thread Mikael Andersson
Hi any success which getting rcfaces to work with myfaces yet? I've tried to create a simple webapp using myfaces (and facelets) myself, but without success. My stack trace: SEVERE: Error Rendering View[/index.xhtml] org.rcfaces.core.internal.renderkit.WriterException: RuntimeException

How to set the column with in dataTable?

2007-01-19 Thread Chen, Wei
Hi, My codes looks as follow. But it doesn't work. Any Tipps? t:dataTable id=dataError value=#{fileuploadBean.dataFormatErrorEntrySet} var=dataError border=1 t:column width=150 f:facet name=header h:outputText value=#{bundle.table_header_linenNumber} / /f:facet h:outputText

Re: t:inputDate

2007-01-19 Thread Alex . Trusler
I have a Drop down list and a valueChangeListener on the drop down list which calls setTestDate :- public void dropDownChanged(ValueChangeEvent event) { setTestDate(); } This is code just to test the theory that is why it is pretty basic but I cannot change the date programatically.

Re: rcfaces with myfaces

2007-01-19 Thread Madhav Bhargava
Unfortunately no. What is the configuration that you have used? On 1/19/07, Mikael Andersson [EMAIL PROTECTED] wrote: Hi any success which getting rcfaces to work with myfaces yet? I've tried to create a simple webapp using myfaces (and facelets) myself, but without success. My stack trace:

Calling

2007-01-19 Thread mario.buonopane
Is there a way to set NavigationMenuItem to call an url to another web application? i have to use externalLink? Thanks Mario Buonopane This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in

Clear all messages

2007-01-19 Thread Madhav Bhargava
I need to clear all the components in a form. According to the wiki http://wiki.apache.org/myfaces/ClearInputComponents there are many methods that given. I tried the first method. It works well in a simple JSF page. In my case I tried to use it in a page that has 2 tabs. Each of the tabs has a

Re: selectManyPicklist causes 'Validation Error'

2007-01-19 Thread rgarcia
I have a similar problem... Try using itemValue=#{product.id}'' it will force id to string. I beleive it's a conversion issue, not sure if the component needs to implement the code to use the standard converters explicitily. Regars, Renato Beelen, Marco wrote: Hello, I'm running into

Re: t:inputDate

2007-01-19 Thread Alex . Trusler
Thanks for your help Mario, I now understand why my problem has occured. Alex... Mario Ivankovits [EMAIL PROTECTED] 19/01/2007 13:44 Please respond to MyFaces Discussion users@myfaces.apache.org To MyFaces Discussion users@myfaces.apache.org cc Subject Re: t:inputDate Hi Alex! I

Access to param

2007-01-19 Thread [EMAIL PROTECTED]
Hello Can I set a request parameter in the action listener? Thanks for Your help. I tried it with a request attribute, but I think this does not work Urs h:commandLink id=Category action=category actionListener=# {overview.categoryActionListener} h:outputText

Does facestraces give the memory used as well?

2007-01-19 Thread Madhav Bhargava
Hi All, I have just started using facetraces to check the performance of the application. I am wondering if you can also get the memory footprint of the application as well. Is that possible as it would be really useful? If not then are there any other tools to check leaks or memory usage

RE: How to submit a form using javascript

2007-01-19 Thread Romanowski, Tim
Thanks for the sample; I tried it, and it looks like it works fine, but there is a snag…when I make the call to add a button to my dialog box, the ‘clickButton’ function is called immediately. That means when I click my “Search” button in my JSF page, instead of opening the dialog box, it

Re: Does facestraces give the memory used as well?

2007-01-19 Thread yigit darcin
Hi, Unfortunately FacesTrace does not show any data about performance. Nowadays we are planning to work on and add new features to it. Maybe we can add sth about performance issues. Thanks and Regards yigit. On 1/19/07, Madhav Bhargava [EMAIL PROTECTED] wrote: Hi All, I have just

RE: How to submit a form using javascript

2007-01-19 Thread Romanowski, Tim
Mario - thanks for the heads up, that is a very useful component. However, I don't think it helps me just yet, as I am trying to figure out how to get an event to take place when I click my dialog box's submit button--I just put the details in a response back to Elvind. If I could get the event

Re: Fisheye tomahawk-sandbox 1.1.4

2007-01-19 Thread Ajit.T
I have 2 sets of icons (for enabled disabled options) which i selectively render them (using rendered attribute )on say availability of documents under each menu. This worked fine when I was using version 1.1.4. but on switching to 1.1.5 many enabled icons were not rendered and for some

Re: Add to and remove from collection

2007-01-19 Thread lightbulb432
If it's not something that's possible (though I hope it is) could some of you please describe how you deal with such common cases of Collection manipulation from JSF form field values? lightbulb432 wrote: Can I add/remove an input field value to a collection using EL? e.g.

t:inputdate

2007-01-19 Thread Wojtek Kusch
Hi All! How can I change the string Today ist 11/10/2006 t:inputdate (at bottom of component) to an another language (locale). Thanks!

AW: Access to param

2007-01-19 Thread [EMAIL PROTECTED]
The request attribute works fine. I made a mess. But I am still interested how I can set a parameter und its value within a bean method. Ursprüngliche Nachricht Von: [EMAIL PROTECTED] Datum: 19.01.2007 15:51 An: users@myfaces.apache.org Betreff: Access to param Hello Can I set a

Re: AW: Access to param

2007-01-19 Thread Gary VanMatre
From: [EMAIL PROTECTED] [EMAIL PROTECTED] The request attribute works fine. I made a mess. But I am still interested how I can set a parameter und its value within a bean method. Consider: public void actionListener(ActionEvent event) { FacesContext context =

[Tobago] How to initial focus

2007-01-19 Thread H. Swaczinna
Hi, I want to set the initial focus when the page is loaded programmaticly, determined by a bean property. I've found no way to do this. The focusId attribute of tc:page doesn't allow value bindings (right?) So I set the focus via javascript in the onload attribute of tc:script. This sets the

Re: [Tobago] How to initial focus

2007-01-19 Thread Volker Weber
Hi Helmut, the focusId attribute supports valuebinding, but the value must be the clientId of the component. This means the id prefixed by the ids of namingContainers, at leas by the id of the page. This should be improved to be handled like for attributes, ge do a findComponent() to examine the

Re: AW: Access to param

2007-01-19 Thread Craig McClanahan
On 1/19/07, Gary VanMatre [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] [EMAIL PROTECTED] The request attribute works fine. I made a mess. But I am still interested how I can set a parameter und its value within a bean method. Consider: public void actionListener(ActionEvent

Re: Access to param

2007-01-19 Thread Volker Weber
Hi, afaik and according to the specs [1], [2], the parameterMap is immutable. so you can't do this. [1] http://java.sun.com/javaee/javaserverfaces/1.1_01/docs/api/javax/faces/context/ExternalContext.html#getRequestParameterMap() [2]

t:inputCalendar

2007-01-19 Thread Wojtek Kusch
Hi All! I have a problem wirth t:inputCalendar. When I press the calendar icon (in Firefox or IE,) to *open* the calendar, *nothing* happens. If I go to http://www.irian.at/myfaces/calendar.jsf , the calendar example works fine. Thanks for help! Wojtek

Re: Memory leak

2007-01-19 Thread Wayne Fay
Sounds like a bug for Apache Commons EL project... but it seems pretty dead. 12 bugs posted since 2003 and only 2 fixed. Realistically, it seems like you'll need to patch the EL code to eliminate this bug, as discussed in that Sun.com bug report. Wayne On 1/19/07, phtan [EMAIL PROTECTED]

Re: Memory leak

2007-01-19 Thread Mick Knutson
What can you use instead of commons EL? On 1/19/07, Wayne Fay [EMAIL PROTECTED] wrote: Sounds like a bug for Apache Commons EL project... but it seems pretty dead. 12 bugs posted since 2003 and only 2 fixed. Realistically, it seems like you'll need to patch the EL code to eliminate this bug,

Help with included jsp file Illegal to flush within a custom tag

2007-01-19 Thread Todd Nine
Hi all, I am constantly receiving this error message. and I can't figure it out. My parent page is index.jsp, my jsp include page is include/header.jsp. My index.jsp is as follows. %@ taglib uri=http://java.sun.com/jsf/html; prefix=h% %@ taglib uri=http://java.sun.com/jsf/core; prefix=f%

action listener is not executed

2007-01-19 Thread [EMAIL PROTECTED]
The action listener is not executed. What could be the reason? I already made an action in overview.jsp I get the url http://localhost:8080/troedel3/overview.jsf; jsessionid=C53F2E019B32424FC35F7682D18F2C46 category.jsp content will be shown. This link does not work.

Re: action listener is not executed

2007-01-19 Thread Gary VanMatre
From: [EMAIL PROTECTED] [EMAIL PROTECTED] The action listener is not executed. What could be the reason? I already made an action in overview.jsp I get the url http://localhost:8080/troedel3/overview.jsf; jsessionid=C53F2E019B32424FC35F7682D18F2C46 category.jsp content will be