Re: Trinidad Event handling

2009-04-05 Thread alex01130
ling On Sun, Apr 5, 2009 at 12:27 PM, alex01130 wrote: > Hi, > > I'd like to handle an "onfocus"-Event of a trinidatd input text field. > > I tried this: > > partialTriggers="timer" onfocus="#{customerBean.stopUpdate}" columns="16&

Trinidad Event handling

2009-04-05 Thread alex01130
Hi, I'd like to handle an "onfocus"-Event of a trinidatd input text field. I tried this: public void stopUpdate(javax.faces.event.ActionEvent ae){ updateTimer = false; } It doesn't work, but renders rubbish on the page. How can I handle this event server side? Thanks in advance alex

trinidad request handling

2009-04-04 Thread alex01130
Hi, I'd like to handle an "onfocus"-Event of a trinidatd input text field. I tried this: public void stopUpdate(javax.faces.event.ActionEvent ae){ updateTimer = false; } It doesn't work, but renders rubbish on the page. How can I handle this event server side? Thanks in advance al

Re: How to reset an apache trinidad row selection

2009-02-25 Thread alex01130
at 4:36 PM, alex01130 wrote: My Problem is, I'd like to reset /uncheck the select radio button of a tr:table inside the selectionListener procedure. Any ideas how perform this? Thanks in advance alex01130

How to reset an apache trinidad row selection

2009-02-25 Thread alex01130
My Problem is, I'd like to reset /uncheck the select radio button of a tr:table inside the selectionListener procedure. Any ideas how perform this? Thanks in advance alex01130

Re: Trinidad1.0.10: How to refresh a table after rowSelection

2008-12-24 Thread alex01130
th behind it a link to the JavaDocs > > And yes I use the Trinidad 1.0.10 version. > > -Original Message- > From: alex01130 [mailto:alex01...@hotmail.com] > Sent: Tue 12/23/2008 17:21 PM > To: MyFaces Discussion > Cc: > Subject: Re: Trinidad1.0.10: How to refresh a table a

Re: Trinidad1.0.10: How to refresh a table after rowSelection

2008-12-23 Thread alex01130
ngen(); > } > > This picks up the selected row and gets the orders belonging to that row. The bold faced text is the relevant part. The bold-italic is also represented in the selection listener. > Actually you can leave out the ::, you just get a warning. The :: excludes this naming cont

Re: Trinidad1.0.10: How to refresh a table after rowSelection

2008-12-22 Thread alex01130
t syntax" or so. Do you have any suggestions whats wrong? Thanks in advance Alex Georg - Original Message - From: "René van Wijk" To: "MyFaces Discussion" Sent: Monday, December 22, 2008 9:18 AM Subject: RE: Trinidad1.0.10: How to refresh a table after row

Trinidad1.0.10: How to refresh a table after rowSelection #2

2008-12-22 Thread alex01130
Dear René, thanks for your quick response. Unfortunally I can't get a refresh trying your advise. Maybe I made some mistake. My complete page is: <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%> <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%> <%@ taglib uri="http://myface

Trinidad1.0.10: How to refresh a table after rowSelection

2008-12-20 Thread alex01130
Hi, I have a rather simple problem, but I don't how to fix it: I have 2 tables which are related and I need a refresh of the of the second one, if a user selects a row of the first :