Re: Error while saving state in 'client' - PLEASE HELP

2005-10-28 Thread PATRICIA GUEDES
yFaces JSF. > You'll have to ask for help on their support lists, or switch over to > MyFaces, at which point the problem will probably go away or change to > something else. > > > > On 10/28/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > > Thanks for your t

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-28 Thread PATRICIA GUEDES
be that you have the reference > implementation included somewhere, or that something in JDeveloper is > responsible for this. > > regards, > > Martin > > On 10/28/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > > Anyone please ... I really need this information.

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-28 Thread PATRICIA GUEDES
Anyone please ... I really need this information.. Thanks. Guedes > On 10/27/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > > I don't if the information is important, but if I take off the model > > inside my RowData class, the problem doesn't occ

Re: Listener Method is called too many times

2005-10-28 Thread PATRICIA GUEDES
click event? I´ve tested your sample and it > works. The action listener is only called once for the clicked command > button > > 2005/10/27, PATRICIA GUEDES <[EMAIL PROTECTED]>: > > Hi again.. > > > > I don't know if helps, but I am using > > org.apac

Re: Listener Method is called too many times

2005-10-27 Thread PATRICIA GUEDES
meone help me. I am testing JSF as a pilot to choose between JSF and Struts in a new Project, but I am worried about all these problems. I am stuck for two days in basic things. Thanks. Guedes On 10/27/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > Anyone please > > Thanks >

Re: Listener Method is called too many times

2005-10-27 Thread PATRICIA GUEDES
Anyone please Thanks Guedes On 10/27/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > Hi, everyone!! > > Anyone knows why my listener method (remessaBean.delEmbque) is called > so many times? > It seems the listener is called one time for each line of my table. Is >

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-27 Thread PATRICIA GUEDES
be serialized, though, I would suppose. Only its contents! > > regards, > > Martin > > On 10/27/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > > I you look for the string "Error while saving state in" in the google, > > appears some lines. But it seems

Listener Method is called too many times

2005-10-27 Thread PATRICIA GUEDES
Hi, everyone!! Anyone knows why my listener method (remessaBean.delEmbque) is called so many times? It seems the listener is called one time for each line of my table. Is there anything I can do to stop this and call just one time?

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-27 Thread PATRICIA GUEDES
the complete stack trace? > > regards, > > Martin > > On 10/27/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > > Yes, it is. It seems the problem is in DataModel of the JSF. > > > > Thanks. > > Guedes > > > > On 10/27/05, Martin Marinschek <

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-27 Thread PATRICIA GUEDES
Yes, it is. It seems the problem is in DataModel of the JSF. Thanks. Guedes On 10/27/05, Martin Marinschek <[EMAIL PROTECTED]> wrote: > Are all your model classes serializable? > > E.g. "fields" - is it serializable? > > regards, > > Martin > > On

Getting the index of the clicked image

2005-10-27 Thread PATRICIA GUEDES
Hi everyone, I am using a dataTable with a dataModel (my remessaBean.valuesEmbque is a DataModel). Each line of my dataTable has an image. How can I get the index of the clicked image? Ex: Thanks. Guedes

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-27 Thread PATRICIA GUEDES
Anyone please Thanks. Guedes On 10/26/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > Ooops!! My mistake !! This is the correct method : > > public DataModel getValuesEmbque() { >if(valuesEmbque == null) { > valuesEmbque = new ArrayList(); > valu

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-26 Thread PATRICIA GUEDES
> > Original message > >Date: Wed, 26 Oct 2005 16:56:57 -0200 > >From: PATRICIA GUEDES <[EMAIL PROTECTED]> > >Subject: Re: Error while saving state in 'client' - PLEASE > HELP > >To: MyFaces Discussion > > > >Yes. If I remove the p

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-26 Thread PATRICIA GUEDES
26 Oct 2005 16:35:56 -0200 > >From: PATRICIA GUEDES <[EMAIL PROTECTED]> > >Subject: Error while saving state in 'client' - PLEASE HELP > >To: users@myfaces.apache.org > > > >Hi everyone > > > >I am trying to use a dataTable with the pre

Error while saving state in 'client' - PLEASE HELP

2005-10-26 Thread PATRICIA GUEDES
Hi everyone I am trying to use a dataTable with the preserveDataModel attribute, but the follow error occurs: Error while saving state in 'client': 'javax.faces.model.ListDataModel'.' # #

Re: dataTable, row - valign

2005-10-26 Thread PATRICIA GUEDES
Sorry my bad English (I am brazilian), but I think you will have to create a new style and then use it with the attribute rowClasses of dataTable. Ex: style - .top { vertical-align:top; } and then the dataTable : Thats it!! I hope it works. Guedes On 10/25/05, Dave <[EMAIL PROTECTED]>

DataModel Problem

2005-10-26 Thread PATRICIA GUEDES
Hi, again!! I have a new question now. I am using the STATE_SAVING_METHOD = 'client' and when I try to use the dataTable's preserveRows property, appears a error "Error while saving state in 'client' of type RowData". My real problem is that I want to work with the dataModel adding and deleting li

Re: dataTable question (again)

2005-10-25 Thread PATRICIA GUEDES
h the dataModel adding and deleting lines in a table. In the first time works, but in the next, my dataModel variable becames null and appear a NullPointerException. Any ideas? Thanks Guedes On 10/21/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > It works Finally... > > Thanks

Listener method problem

2005-10-24 Thread PATRICIA GUEDES
Hi, everyone!! Anyone knows why my listener method (remessaBean.delEmbque) is called twice? public void delEmbque(ActionEvent e) { int index = valuesEmbqueModel.getRowIndex(); ArrayList currentValues =

Internationalization question

2005-10-21 Thread PATRICIA GUEDES
Hi again, Anyone know how can I get a message from a messageBundle with a dynamic value-binding expression? Ex: Thanks. Guedes

Re: dataTable question (again)

2005-10-21 Thread PATRICIA GUEDES
er; > > private String values; > > public RowData(RemessaBean fieldHolder, String[] values) > { >this.fieldHolder = fieldHolder; >this.values = values; > } > > public Object getValue() > { >return this.values[this.fieldHolder.getRowIndex(

Re: dataTable question (again)

2005-10-21 Thread PATRICIA GUEDES
Anyone help me, please I don't know what do Thanks Guedes On 10/20/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > Hi, (sorry for my bad english again) > > I am trying to create a table using dataTable, but something is wrong. > When I try to show my lines usin

dataTable question (again)

2005-10-20 Thread PATRICIA GUEDES
Hi, (sorry for my bad english again) I am trying to create a table using dataTable, but something is wrong. When I try to show my lines using a DataModel, just the first element of each Array was showed. Ex what I want: 1 2 3 4567 8 9 10 11 12 13 14 How is been showed ...

graphicImage align

2005-10-20 Thread PATRICIA GUEDES
How can I align my graphicImage?? I am trying this : But not works... Any ideas? Thanks Guedes

Re: Question about dataTable

2005-10-20 Thread PATRICIA GUEDES
Forget it!!! I found the problem. I was constructing the valuesEmbque variable with a Fields Array in the RemessaBean's Constructor. Thanks any way!!! Guedes On 10/20/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > That's what I did. But something is wrong

Re: Question about dataTable

2005-10-20 Thread PATRICIA GUEDES
tRowData()).getValue()); return fields; } } Help me please Thanks. Guedes On 10/20/05, PATRICIA GUEDES <[EMAIL PROTECTED]> wrote: > Sorry, but I don't understand (I am learning yet). How can I fill the > row data? With an Array? > > Thanks, > Guedes > > On 10

Re: Question about dataTable

2005-10-20 Thread PATRICIA GUEDES
ould be returned. > > } > > cellpadding="0" cellspacing="1"> > > > styleClass="forms"/> > > > > > > > 2005/10/18,

Re: Question about dataTable

2005-10-18 Thread PATRICIA GUEDES
;, true, false, "", null), new Fields(7, "Lote", "14", "NUMBER", true, false, "", null)}; private List valuesEmbque; public RemessaBean () { valuesEmbque = new ArrayList(); valuesEmbque.add(fieldsEmbque); valuesEmbque.a

Question about dataTable

2005-10-18 Thread PATRICIA GUEDES
Hi, I´m from Brazil (sorry my bad English) and I need to build a table where the columns are dynamics. The columns came from a ArrayList of "fields" and the lines came from each field's values. How can I do that? Ex: field1 field2 field3 field4 field5 (colunas vêm de um ArrayList de

Re: Problem with dataTable

2005-10-17 Thread PATRICIA GUEDES
hing like > table.Guedes { > border: 1px solid black; > } > > > Randahl > > > > PATRICIA GUEDES wrote: > > I've tried both solutions. The first one (Tomahawk newspaperTable > component) didn't work, because the table was bad-formed (without > border)

Re: Problem with dataTable

2005-10-17 Thread PATRICIA GUEDES
other way Thanks. Guedes On 10/17/05, Randahl Fink Isaksen <[EMAIL PROTECTED]> wrote: >No, but you can add your own. Simply output a tag before the > list and surround each element with [your content]. Then complete > your list with . > > Randahl > > PATRI

Re: Problem with dataTable

2005-10-17 Thread PATRICIA GUEDES
"simple" setting. > > Randahl > > PATRICIA GUEDES wrote: > > >Hi, I´m from Brazil (sorry my bad English) and I an trying use the tag > >dataTable. > > > >How can I do to make a dataTable that receive a field's Array show the > >table by columns in

Problem with dataTable

2005-10-17 Thread PATRICIA GUEDES
Hi, I´m from Brazil (sorry my bad English) and I an trying use the tag dataTable. How can I do to make a dataTable that receive a field's Array show the table by columns instead lines? Ex: field1field2field3field4field5field6 Thanks. Guedes

InputCalendar internationalization problem

2005-10-14 Thread PATRICIA GUEDES
Hi, I´m from Brazil and try to use InputCalendar. When I set the internationalization parameters, just jscalendarMonthName, jscalendarWeekString and jscalendarSelectDateMessage works well. All the others show the default English values. Follow my JSF code: It´s seems like a bug because for som

Re: Could not find Managed-Bean

2005-09-27 Thread PATRICIA GUEDES
java.lang.Thread.run(Thread.java:534) Thanks, Guedes On 9/26/05, Simon Kitching <[EMAIL PROTECTED]> wrote: > PATRICIA GUEDES wrote: > > Hi everyone, > > > > Sorry for my bad English, I´m from Brazil. > > > > We are trying to implement a JSF project using O

Could not find Managed-Bean

2005-09-26 Thread PATRICIA GUEDES
Hi everyone, Sorry for my bad English, I´m from Brazil. We are trying to implement a JSF project using Oracle Jdev (10.1.3) that comes with JSF and Struts, MyFaces (1.1.0), Struts(Validator) and Tiles(MyFaces). We created a Jdev JSP Tag Library pointing to the file tomahawk.jar using the steps f