Re: [trinidad] ShowDetail not working properly inside tables?

2008-08-24 Thread Andrew Robinson
That is not what I said. There is only one component that is stamped. Each stamp changes the client ID, not the ID of the component. The index of the row is added to the client ID. For example, myForm:myTable:0:myInputText where 0 means the first row. On Sat, Aug 23, 2008 at 10:47 AM, Bruno Aranda

Re: Listener

2008-08-24 Thread Markus Mehrwald
Thank you very much for you help. Yes, this is what I wanted to do. Indeed I tried to set the attribute to the FacesContext because I did not know that the servlet context will lead to the application context. Nevertheless it is working now. Thank you again. Markus simon schrieb: Do you mea

Re: Listener

2008-08-24 Thread simon
Do you mean that you want code running within a request to be able to call FacesContext .getCurrentInstance() .getExternalContext() .getApplicationMap() .get("someKey") and get some object that you set up at webapp startup time? If so, then that's fairly simple. The getApplicationMap

Re: commandbutton action not being invoked if form contains programatically-defined selectitems

2008-08-24 Thread Volker Weber
Hi Cedric, 2008/8/24 Cedric Hurst <[EMAIL PROTECTED]>: > > I have an which contains two elements. These > elements are being populated programatically with a tied to > a JSF managed bean which returns List. Unfortunately, when I > attempt to click the to invoke an action, the action does > n

commandbutton action not being invoked if form contains programatically-defined selectitems

2008-08-24 Thread Cedric Hurst
I have an which contains two elements. These elements are being populated programatically with a tied to a JSF managed bean which returns List. Unfortunately, when I attempt to click the to invoke an action, the action does not get processed. I receive no error message, it just fails silent

Re: how remove the animated image at the right of commandButtonAjax?

2008-08-24 Thread xlr8tn
You could change the STYLECLASS_LOADER in AjaxRendererUtils.java to point to one that does not have a background image. Or you could leave that alone and just modify the image to make it blank instead of the blue circle. Lastly and cleaner solution would be to modify the renderer to not write th

CommandButtonAjax

2008-08-24 Thread xlr8tn
I am trying to use the CommandButtonAjax that is in the sandbox. I fixed the getter/setter TODO methods and now getting past those errors. I get into my backing bean successfully, and I also get into the success javascript inside of inputAjax.js. Here is the first thing that executes inside _

Re: Listener

2008-08-24 Thread Matthias Wessendorf
Even a servlet req listener is to early. Take a look at our MyFacesServlet how to decorate the FacesServlet. Sent from my iPod. Am 24.08.2008 um 01:34 schrieb Markus Mehrwald <[EMAIL PROTECTED]>: Hello, is there a Listener available which tells me when the FacesServlet is started? I want