RE: where are src jars?

2006-07-31 Thread Balaji Kalyansundaram

Have a look @ the archioves http://archive.apache.org/dist/myfaces/



-Original Message-
From: Leyzerzon, Simeon [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 1 August 2006 7:46 AM
To: 'MyFaces Discussion'
Subject: RE: where are src jars?

Are there any instructions?

-Original Message-
From: Iordanov, Borislav (GIC) [mailto:[EMAIL PROTECTED]
Sent: Monday, July 31, 2006 5:31 PM
To: MyFaces Discussion
Subject: RE: where are src jars?


It's possible, but it's hard. This is a hidden source project ;)

-Original Message-
From: Leyzerzon, Simeon [mailto:[EMAIL PROTECTED]
Sent: Monday, July 31, 2006 5:29 PM
To: 'users@myfaces.apache.org'
Subject: where are src jars?

Is it possible to obtain a jar with just the sources for MyFaces core
and the Tomahawk?

Simeon Leyzerzon



==
Please access the attached hyperlink for an important electronic
communications disclaimer:

http://www.credit-suisse.com/legal/en/disclaimer_email_ib.html

==



==
Please access the attached hyperlink for an important electronic
communications disclaimer:

http://www.credit-suisse.com/legal/en/disclaimer_email_ib.html

==


This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: rendered condition does not work as expected

2006-07-31 Thread Balaji Kalyansundaram

Looking @ the exception PropertyNotFoundException - Bean: Rectangle,
property: radius, I can say that your EL for rendered does'nt work
correctly. It is looking for radius in  Rectangle.

HIH.

Balaji

-Original Message-
From: Venkat Rao [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 1 August 2006 2:43 AM
To: 'MyFaces Discussion'
Subject: rendered condition does not work as expected

My code inside a rendered flag is getting invoked even when the
condition is false. I am iterating over a list of Graphics objects to
display information about each by calling the object specific methods.
The code works fine if I use only h:outputText. If I use h:inputText
however, the rendered property does not seem to be taking effect.

ui:repeat var=graphicsObj value=#{gfx.graphicsObjList}

h:panelGroup rendered=#{graphicsObj.objType == 'circle'} 
[Circle] Radius: h:outputText value=#{graphicsObj.radius}/
/h:panelGroup

h:panelGroup rendered=#{graphicsObj.objType == 'rectangle'} 
[Rectangle] Length: h:outputText
value=#{graphicsObj.length}/
/h:panelGroup

/ui:repeat

The above works fine, as expected. However, if I change from
h:outputText to h:inputText, it complains :

javax.faces.el.PropertyNotFoundException: /graphics.xhtml @24,54
value=#{graphicsObj.radius}: Bean: Rectangle, property: radius

So, the first block of code is getting executed for a Rectangle object
when using a h:inputText but not when using h:outputText.

Any help in solving the problem is appreciated. The code for the Circle
and Rectangle beans is given below:

public class Circle implements Serializable {
public String getObjType() {
return circle;
}

int radius;
public void setRadius(int radius) {
this.radius = radius;
}
public int getRadius() {
return this.radius;
}
}

public class Rectangle implements Serializable {
public String getObjType() {
return rectangle;
}

private int length;
public void setLength(int length) {
this.length = length;
}
public int getLength() {
return this.length;
}
}


This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Using Sandbox

2006-07-28 Thread Balaji Kalyansundaram

I got tomahawk-sandbox-1.1.5-SNAPSHOT.jar to work with
myfaces-api-1.1.3.jar, myfaces-impl-1.1.3.jar, and
tomahawk-1.1.3.jar.

I found that some of the commons jars in the myfaces core are newer
than the one came with MyFaces1.0.9. I tried without loading these new
commons and it worked.

Is this correct? Or do we have to use the commons that came with the
core, to prevent any subtle defects.

Thanks everyone for your help.

Balaji


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Matthias Wessendorf
Sent: Friday, 28 July 2006 3:30 PM
To: MyFaces Discussion
Subject: Re: Using Sandbox

No,

sorry for not beeing clear; since not everybody is using Tiles, we
haven't configed it inside the tomahawk-faces-config-xml file.

-Matthias

On 7/27/06, Balaji Kalyansundaram [EMAIL PROTECTED] wrote:

 Thanks David. Just didn't realise that it was declared there. I was
 looking @ the Tomahawk src.

 Now I could get the application to deploy. But I have to adjust my
 pages (like having commnaLink within form) to get it working with
1.1.3.

 After that I'll add the sandbox jar.

 -Original Message-
 From: David Friedman [mailto:[EMAIL PROTECTED]
 Sent: Friday, 28 July 2006 2:00 PM
 To: MyFaces Discussion
 Subject: RE: Using Sandbox

 Isn't that in your personal faces-config.xml as the Application-View
 Handler?

 -David

 -Original Message-
 From: Balaji Kalyansundaram [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 27, 2006 11:56 PM
 To: MyFaces Discussion
 Subject: RE: Using Sandbox

 Thanks Matthias.

 I can find
 org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl
 in tomahawk-1.1.3.jar.

 But I don't know where
 org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl is
called?

 I get the same exception after removing the Sandbox jar.


 This correspondence is for the named persons only.
 It may contain confidential or privileged information or both.
 No confidentiality or privilege is waived or lost by any mis
transmission.
 If you receive this correspondence in error please delete it from your
system immediately and notify the sender.
 You must not disclose, copy or relay on any part of this
correspondence, if you are not the intended recipient.
 Any opinions expressed in this message are those of the individual
 sender except where the sender expressly, and with the authority,
states them to be the opinions of the Department of Emergency Services,
Queensland.



--
Matthias Wessendorf

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Using Sandbox

2006-07-28 Thread Balaji Kalyansundaram



Sorry Kapil.I don't have one.


From: Kapil Kataria
[mailto:[EMAIL PROTECTED] Sent: Friday, 28 July 2006 5:13
PMTo: MyFaces DiscussionSubject: Re: Using
Sandbox

Hi Balaji, 

Do youhave anyVision Architecture Document.

If you have please send me, I need this for reference,for
creatinga Vision Architecture Document.

Regards 
Kapil
On 7/28/06, Balaji
Kalyansundaram [EMAIL PROTECTED]
wrote:

  
  
  Hi All
  
  Wewould like to use one of the
  Sandbox components. We are using MyFaces1.1.1.
  
  I could only download the latest
  (tomahawk-sandbox-1.1.5-SNAPSHOT-bin.zip) from nightly build.
  When I used it was looking for a
  missing class and then I digged the user list and found that I need to use
  MyFacesCore 1.1.2 above. But when I did that it misses
  someother class (javax.faces.FacesException: java.lang.ClassNotFoundException:
  org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl).
  
  So whatis the set-up touse the
  sandbox components?
  
  Thanks in advance.
  
  Balaji
  


  This correspondence is for the
named persons only. It may contain confidential or privileged
information or both. No confidentiality or privilege is waived or
lost by any mis transmission. If you receive this correspondence in
error please delete it from your system immediately and notify the
sender. You must not disclose, copy or relay on any part of this
correspondence, if you are not the intended recipient. Any opinions
expressed in this message are those of the individual sender except
where the sender expressly, and with the authority, states them to
be the opinions of the Department of Emergency Services, Queensland.
-- Regards,Kapil kataria 

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: Using Sandbox

2006-07-28 Thread Balaji Kalyansundaram

Well in myfaces-core-1.1.3-bin.zip I could only see common jars like
commons-beanutils-1.7.0, etc., which are Apache's.
And we did not find the myfaces-commons.jar when we used
myfaces-1.0.9.jar. We used the older commons-xxx.jar.

Balaji 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Matthias Wessendorf
Sent: Saturday, 29 July 2006 3:24 AM
To: MyFaces Discussion
Subject: Re: Using Sandbox

 Is this correct? Or do we have to use the commons that came with the

 core, to prevent any subtle defects.
commons.jar ? you don't need the myfaces-commons. jar.
Or are you talking about jakarta-commons ?


 Thanks everyone for your help.

 Balaji


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
 Of Matthias Wessendorf
 Sent: Friday, 28 July 2006 3:30 PM
 To: MyFaces Discussion
 Subject: Re: Using Sandbox

 No,

 sorry for not beeing clear; since not everybody is using Tiles, we
 haven't configed it inside the tomahawk-faces-config-xml file.

 -Matthias

 On 7/27/06, Balaji Kalyansundaram [EMAIL PROTECTED]
wrote:
 
  Thanks David. Just didn't realise that it was declared there. I was
  looking @ the Tomahawk src.
 
  Now I could get the application to deploy. But I have to adjust my
  pages (like having commnaLink within form) to get it working with
 1.1.3.
 
  After that I'll add the sandbox jar.
 
  -Original Message-
  From: David Friedman [mailto:[EMAIL PROTECTED]
  Sent: Friday, 28 July 2006 2:00 PM
  To: MyFaces Discussion
  Subject: RE: Using Sandbox
 
  Isn't that in your personal faces-config.xml as the
  Application-View Handler?
 
  -David
 
  -Original Message-
  From: Balaji Kalyansundaram [mailto:[EMAIL PROTECTED]
  Sent: Thursday, July 27, 2006 11:56 PM
  To: MyFaces Discussion
  Subject: RE: Using Sandbox
 
  Thanks Matthias.
 
  I can find
 
org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl
  in tomahawk-1.1.3.jar.
 
  But I don't know where
  org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl is
 called?
 
  I get the same exception after removing the Sandbox jar.
 
 
  This correspondence is for the named persons only.
  It may contain confidential or privileged information or both.
  No confidentiality or privilege is waived or lost by any mis
 transmission.
  If you receive this correspondence in error please delete it from
  your
 system immediately and notify the sender.
  You must not disclose, copy or relay on any part of this
 correspondence, if you are not the intended recipient.
  Any opinions expressed in this message are those of the individual
  sender except where the sender expressly, and with the authority,
 states them to be the opinions of the Department of Emergency
 Services, Queensland.
 


 --
 Matthias Wessendorf

 further stuff:
 blog: http://jroller.com/page/mwessendorf
 mail: mwessendorf-at-gmail-dot-com

 This correspondence is for the named persons only.
 It may contain confidential or privileged information or both.
 No confidentiality or privilege is waived or lost by any mis
transmission.
 If you receive this correspondence in error please delete it from your
system immediately and notify the sender.
 You must not disclose, copy or relay on any part of this
correspondence, if you are not the intended recipient.
 Any opinions expressed in this message are those of the individual
 sender except where the sender expressly, and with the authority,
states them to be the opinions of the Department of Emergency Services,
Queensland.



--
Matthias Wessendorf

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


Using Sandbox

2006-07-27 Thread Balaji Kalyansundaram



Hi
All

Wewould like
to use one of the Sandbox components. We are using
MyFaces1.1.1.

I could only
download the latest (tomahawk-sandbox-1.1.5-SNAPSHOT-bin.zip) from nightly
build. When
I used it was looking for a missing class and then I digged the user list and
found that I need to use MyFacesCore 1.1.2 above. But when I
did that it misses someother class (javax.faces.FacesException:
java.lang.ClassNotFoundException:
org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl).

So whatis the
set-up touse the sandbox components?

Thanks in
advance.

Balaji

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: Using Sandbox

2006-07-27 Thread Balaji Kalyansundaram

Thanks David. Just didn't realise that it was declared there. I was
looking @ the Tomahawk src.

Now I could get the application to deploy. But I have to adjust my pages
(like having commnaLink within form) to get it working with 1.1.3.

After that I'll add the sandbox jar.

-Original Message-
From: David Friedman [mailto:[EMAIL PROTECTED]
Sent: Friday, 28 July 2006 2:00 PM
To: MyFaces Discussion
Subject: RE: Using Sandbox

Isn't that in your personal faces-config.xml as the Application-View
Handler?

-David

-Original Message-
From: Balaji Kalyansundaram [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 27, 2006 11:56 PM
To: MyFaces Discussion
Subject: RE: Using Sandbox

Thanks Matthias.

I can find
org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl in
tomahawk-1.1.3.jar.

But I don't know where
org.apache.myfaces.application.jsp.JspTilesViewHandlerImpl is called?

I get the same exception after removing the Sandbox jar.


This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: hide validation messages when onchange=submit();

2006-06-01 Thread Balaji Kalyansundaram



You can use immediate="true" on the SelectOneMenu, so that
other components will not processed.

Balaji


From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Michael
AgeebSent: Thursday, 1 June 2006 6:07 PMTo: MyFaces
DiscussionSubject: hide validation messages when

Hello, I've a form with multible elements . one of
those are SelectOneMenu and i've value change listener on this element and
onchange i submit the form  to populate another
field.the problem is some of the other elements may have validation
error since the form is not filed completely.How could i hide the
validation messages on the other elements when submiting a form by this way-- http://mageeb.netDon't
send me any attachment in Micro$oft (.DOC, .PPT) format pleaseRead http://www.gnu.org/philosophy/no-word-attachments.html
Preferable attachments: .PDF, .HTML, .TXTThanx for adding this text
to Your signature 

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


commandButton - action method not called

2006-05-02 Thread Balaji Kalyansundaram
Title: commandButton - action method not called






Hi All


I have a form to Search in two steps. The fist step gets some data that will be used to fill and show other components in the form and then the user will do the final search.

So I use a variable in Session scope to know if the first step of the search was done and use it to render some components.

But after the first search the commandButton(s) to Search or Clear the form does not invoke the Action methods. 

If I click again, the Action methods are called and things work fine.


I tried saving the state of the variable to render the components but did not help. Though using immediate=true does not make any sense in this scenario, I tried it without success.

I'm using MyFaces 1.1


Can you please help me to find what will be the defect?


Thanks in advance.


Balaji




This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: commandButton - action method not called

2006-05-02 Thread Balaji Kalyansundaram
Title: commandButton - action method not called



I
found the defect. It was in my code. I have a ValueChangeListener in one of the
component shown in the Secod stage of the search.
I did
not intialise the value correctly for the component and hence the
ValueChangeListener is called when I submit the form to Search or Clear,

which
renders the response, without allowing the Action methods to
execute.

Balaji

[Balaji Kalyansundaram]-Original
Message-From: Balaji Kalyansundaram
[mailto:[EMAIL PROTECTED]Sent: Wednesday, 3 May 2006 9:05
AMTo: users@myfaces.apache.orgSubject: commandButton -
action method not called

  Hi All 
  I have a form to Search in two steps. The fist step
  gets some data that will be used to fill and show other components in the form
  and then the user will do the final search.
  So I use a variable in Session scope to know if the
  first step of the search was done and use it to render some
  components.
  But after the first search the commandButton(s) to
  Search or Clear the form does not invoke the Action methods. If I click again, the Action methods are called and things
  work fine. 
  I tried saving the state of the variable to render
  the components but did not help. Though using immediate="true" does not make
  any sense in this scenario, I tried it without success.
  I'm using MyFaces 1.1 
  Can you please help me to find what will be the
  defect? 
  Thanks in advance. 
  Balaji 
  


  This correspondence is for the
named persons only. It may contain confidential or privileged
information or both. No confidentiality or privilege is waived or
lost by any mis transmission. If you receive this correspondence in
error please delete it from your system immediately and notify the
sender. You must not disclose, copy or relay on any part of this
correspondence, if you are not the intended recipient. Any opinions
expressed in this message are those of the individual sender except
where the sender expressly, and with the authority, states them to
be the opinions of the Department of Emergency Services,
Queensland.

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


Missing tomahawk.jar in MyFaces1.2

2006-04-18 Thread Balaji Kalyansundaram
Title: Missing tomahawk.jar in MyFaces1.2






Hi All


Glad to hear that the new verison is available.


I cannot find the the tomahawk.jar @ http://www.apache.org/dyn/closer.cgi/myfaces/binaries/myfaces-core-1.1.2-bin.zip


But it has myfaces-impl.jar, etc. 


Am I lloking at the wrong place?


Thanks in advance.


Balaji




This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: Missing tomahawk.jar in MyFaces1.2

2006-04-18 Thread Balaji Kalyansundaram

Hi Dennis

Thanks for the reply.

Please pay attention to the fact that you cannot use this release of
MyFaces Core with the MyFaces Tomahawk library in version 1.1.1 - it
will only work with the Tomahawk library in version 1.1.2 and onward.
- I cannot find the new version of tomahawk separately @ 
http://myfaces.apache.org/download.html

Only the old 1.1.1 is available. But it is mentioned above that this will not 
work with new verion of myfaces core.


Balaji


-Original Message-
From: Dennis Byrne [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 18 April 2006 5:13 PM
To: MyFaces Discussion
Subject: Re: Missing tomahawk.jar in MyFaces1.2


You may want to check your inbox for the announcement notes.  Tomahawk is now 
released seperately.

Dennis Byrne

-Original Message-
From: Balaji Kalyansundaram [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 18, 2006 03:11 AM
To: dev@myfaces.apache.org, users@myfaces.apache.org
Subject: Missing tomahawk.jar in MyFaces1.2


Hi All

Glad to hear that the new verison is available.

I cannot find the the tomahawk.jar @ 
http://www.apache.org/dyn/closer.cgi/myfaces/binaries/myfaces-core-1.1.2-bin.zip

But it has myfaces-impl.jar, etc.

Am I lloking at the wrong place?

Thanks in advance.

Balaji


This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if 
you are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.



This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Missing tomahawk.jar in MyFaces1.2

2006-04-18 Thread Balaji Kalyansundaram

Thanks everyone for the reply. I'll wait for tomahawk 1.2.

If tomahawk1.2 is not released yet, whey does the relase notes for MyFaces Core 
1.2, have details of bug fixes, in Tomahawk components, like 
t:commandSortHeader,etc.??? This is misleading/confusing me.

Balaji



-Original Message-
From: news [mailto:[EMAIL PROTECTED] Behalf Of Werner Punz
Sent: Tuesday, 18 April 2006 5:30 PM
To: users@myfaces.apache.org
Subject: Re: Missing tomahawk.jar in MyFaces1.2


Hi Balaji, sorry to say that, but the Tomahawk release cycles are now
decoupled due to the addition of the Tobago component set and soon also
the ADF Faces framework to the myfaces mix.

So currently there first was the core released and soon also a stable
Tomahawk 1.1.2 will be released (the fork for stable is imminent as we
speak), in the meantime I only can recommend to revert to the nighlies
until the stable Tomahawk is in sync.

In the future there will be decoupled releases of the core and the
component sets, with a much higher release frequency.

Werner



Balaji Kalyansundaram schrieb:
 Hi Dennis

 Thanks for the reply.

 Please pay attention to the fact that you cannot use this release of
 MyFaces Core with the MyFaces Tomahawk library in version 1.1.1 - it
 will only work with the Tomahawk library in version 1.1.2 and onward.
   - I cannot find the new version of tomahawk separately @ 
 http://myfaces.apache.org/download.html

 Only the old 1.1.1 is available. But it is mentioned above that this will not 
 work with new verion of myfaces core.


 Balaji


 -Original Message-
 From: Dennis Byrne [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, 18 April 2006 5:13 PM
 To: MyFaces Discussion
 Subject: Re: Missing tomahawk.jar in MyFaces1.2


 You may want to check your inbox for the announcement notes.  Tomahawk is now 
 released seperately.

 Dennis Byrne

 -Original Message-
 From: Balaji Kalyansundaram [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, April 18, 2006 03:11 AM
 To: dev@myfaces.apache.org, users@myfaces.apache.org
 Subject: Missing tomahawk.jar in MyFaces1.2


 Hi All

 Glad to hear that the new verison is available.

 I cannot find the the tomahawk.jar @ 
 http://www.apache.org/dyn/closer.cgi/myfaces/binaries/myfaces-core-1.1.2-bin.zip

 But it has myfaces-impl.jar, etc.

 Am I lloking at the wrong place?

 Thanks in advance.

 Balaji


 This correspondence is for the named persons only.
 It may contain confidential or privileged information or both.
 No confidentiality or privilege is waived or lost by any mis transmission.
 If you receive this correspondence in error please delete it from your 
 system immediately and notify the sender.
 You must not disclose, copy or relay on any part of this correspondence, if 
 you are not the intended recipient.
 Any opinions expressed in this message are those of the individual sender 
 except where the sender expressly,
 and with the authority, states them to be the opinions of the Department of 
 Emergency Services, Queensland.



 This correspondence is for the named persons only.

 It may contain confidential or privileged information or both.

 No confidentiality or privilege is waived or lost by any mis transmission.

 If you receive this correspondence in error please delete it from your system 
 immediately and notify the sender.

 You must not disclose, copy or relay on any part of this correspondence, if 
 you are not the intended recipient.

 Any opinions expressed in this message are those of the individual sender 
 except where the sender expressly,

 and with the authority, states them to be the opinions of the Department of 
 Emergency Services, Queensland.



This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Missing tomahawk.jar in MyFaces1.2

2006-04-18 Thread Balaji Kalyansundaram

Thanks Sean.

-Original Message-
From: Sean Schofield [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 19 April 2006 11:03 AM
To: MyFaces Discussion
Subject: Re: Missing tomahawk.jar in MyFaces1.2


 If tomahawk1.2 is not released yet, whey does the relase notes for MyFaces 
 Core 1.2, have details of bug fixes, in Tomahawk components, like 
 t:commandSortHeader,etc.??? This is misleading/confusing me.

At one point the two projects were intertwined and shared the same
JIRA instance.  So all of the bugs that were already closed before we
split the JIRA instance into two projects stayed in the core.  We were
in a rush to release so we did not go back and move them all.

So in the future things will be more clear.

 Balaji

Sean

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Conversion Error XXX: Error during model data update

2006-04-12 Thread Balaji Kalyansundaram

Did you check the data type in the model??/

Balaji

-Original Message-
From: Betto McRose G, [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 April 2006 9:30 AM
To: users@myfaces.apache.org
Subject: Conversion Error XXX: Error during model data update


hi all

I'm getting this error:
Conversion Error partyIdInputText: Error during model data update.

dunno why because the inputText for that Id is no required


--
Betto McRose G,
WPG Team



This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Conversion Error XXX: Error during model data update

2006-04-12 Thread Balaji Kalyansundaram

It will be better if we could look at the jsp, backing bean and model code.

-Original Message-
From: Betto McRose G, [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 April 2006 9:42 AM
To: MyFaces Discussion
Subject: Re: Conversion Error XXX: Error during model data update


yes, they are string
the inputText has no converter tag on it


Balaji Kalyansundaram wrote:

Did you check the data type in the model??/

Balaji

-Original Message-
From: Betto McRose G, [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 April 2006 9:30 AM
To: users@myfaces.apache.org
Subject: Conversion Error XXX: Error during model data update


hi all

I'm getting this error:
Conversion Error partyIdInputText: Error during model data update.

dunno why because the inputText for that Id is no required


--

Betto McRose G,
WPG Team



This correspondence is for the named persons only.

It may contain confidential or privileged information or both.

No confidentiality or privilege is waived or lost by any mis transmission.

If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.

You must not disclose, copy or relay on any part of this correspondence, if 
you are not the intended recipient.

Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,

and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


 



--
Betto McRose G,
WPG Team



This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Newbie help

2006-04-11 Thread Balaji Kalyansundaram



Hi

1.
h:commandLink tag does
not work inside a t:dataTable
tag The value
(collection) for the dataTable has to be avaialble in the Restore View Phase
too. You can achieve that by using Session Bean or SaveSate. Look @
t:saveSate
 There are a lot od posts on
this issue.

3. To
use your owbn ids, u need to use the t:forceId of MyFaces otherwise JSF creates
prefixes for the component's.

HIH.

Balaj

  -Original Message-From: JSFSter Smith
  [mailto:[EMAIL PROTECTED]Sent: Tuesday, 11 April 2006 5:21
  PMTo: MyFaces DiscussionSubject: Newbie
  helpHi,I have just started using MyFaces for a
  new project and had a couple of questions while I am on the learning curve.
  Any help/response is greatly appreciated. Its been a pleasure to
  actually create JSP pages with no java code using JSF in them and I hope
  to keep them that way!1. h:commandLink tag does not work
  inside a t:dataTable tag  and ends up
  refreshing the same page from where the link was clicked without any updates
  to the model. The get/set methods for the corresponding backing bean
  member are never called by the framework I looked
  through the mail archives for myFaces as well as JSF RI. This seems to be an
  issue faced by many users and the suggested work around is to make the backing
  bean that contains the table data a session bean (currently mine is a
  request). Is this a bug with the spec or am I missing something ?2.
  h:commandButton with a request scope backing bean cannot be used to
  pass request parameters to the next page using f:param tags.
   The h:commandLink tag has to be used instead.
  Again is this a bug or I am missing something?Currently, I am using
  h:commandLinks for my request param passing and it works fine. But this
  leads me to my final question:3. I am trying to map the enter key to
  my command link (which is an image) using _javascript_ and have included a
  snippet below.  if (keycode == 13)
  {
  document.forms['MyJSFForm'].elements['submitLink'].click()
  return false; } I have
  explicitly given id's to my form and commandLink. The _javascript_ object for
  the link is invalidThanks in advance for your response!-
  Rajiv

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: Want to migrate from MyFaces 1.0.9. Pls suggest MyFaces1.1.1 or nightly build MyFaces 1.1.2

2006-02-14 Thread Balaji Kalyansundaram

Hi Harald

Glad to hear that. Thanks.

Regards
Balaji

-Original Message-
From: Harald Ommang [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 14 February 2006 5:10 PM
To: MyFaces Discussion
Subject: Re: Want to migrate from MyFaces 1.0.9. Pls suggest
MyFaces1.1.1 or nightly build MyFaces 1.1.2


On Tue, 14 Feb 2006 08:53:20 +1000
  Balaji Kalyansundaram [EMAIL PROTECTED]
wrote:

 Can anyone helpme with this please? What do you reckon
Martin?

 Thanks

 -Original Message-

Hi!

I'm using MyFaces 1.1.1 with the ADF Faces EA20 (Apache
2.0 licensed version), and this works just fine for me.

Harald

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Want to migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build MyFaces 1.1.2

2006-02-13 Thread Balaji Kalyansundaram
Title: Want to migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build MyFaces 1.1.2



Can
anyone helpme with this please? What do you reckon Martin?

Thanks

  -Original Message-From: Balaji Kalyansundaram
  [mailto:[EMAIL PROTECTED]Sent: Monday, 13 February 2006
  11:03 AMTo: users@myfaces.apache.orgSubject: Want to
  migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build MyFaces
  1.1.2
  Hi All 
  We have been using MyFaces 1.0.9 and would like to
  migrate to the next version. Also we would like to add ADF to our project.
  
  What do you suggest to download? 
   Release
  - MyFaces 1.1.1 - http://www.apache.org/dyn/closer.cgi/myfaces/binaries/myfaces-1.1.1.zip
  
  
  
  
   Or Or Or
   Nightly Builds - - MyFaces 1.1.2 - http://cvs.apache.org/builds/myfaces/nightly/myfaces-core-1.1.2-SNAPSHOT-bin.zip
  I have read many emails regarding the bugs in the
  1.1.1 release and also about other bugs due to the new fixes in the Nightly
  Build. We have waited for a while for a stable version. Since we are going to
  implement some core functionalities in the project we would like to migrate to
  the next (stable) version that supports ADF too.
  Thanks. 
  Regards Balaji 
  


  This correspondence is for the
named persons only. It may contain confidential or privileged
information or both. No confidentiality or privilege is waived or
lost by any mis transmission. If you receive this correspondence in
error please delete it from your system immediately and notify the
sender. You must not disclose, copy or relay on any part of this
correspondence, if you are not the intended recipient. Any opinions
expressed in this message are those of the individual sender except
where the sender expressly, and with the authority, states them to
be the opinions of the Department of Emergency Services,
Queensland.

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: Want to migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build MyFaces 1.1.2

2006-02-13 Thread Balaji Kalyansundaram



Thanks
Martin. Will the final relase be avialabel in a week or two. As mentioned
before, we want to start working on a new funcationality and we would like
to fix the bugs and issues with the existing ones, to avoid rework. My Senior
has tried 1.1.1 sometiem back and said that it was not supporting Sets like
1.0.9. We want to resolve these kind of stuff now.

Regards

Balaji



  -Original Message-From: Martin Marinschek
  [mailto:[EMAIL PROTECTED]Sent: Tuesday, 14 February 2006
  8:56 AMTo: MyFaces DiscussionSubject: Re: Want to
  migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build MyFaces
  1.1.2I'd recommend to wait a little for the final
  release.We've started the release process, so this shouldn't take too
  long.regards,Martin
  On 2/13/06, Balaji
  Kalyansundaram [EMAIL PROTECTED]
  wrote:
  
Can anyone helpme with this
please? What do you reckon Martin?

Thanks


  -Original
  Message-From: Balaji Kalyansundaram [mailto:[EMAIL PROTECTED]]Sent: Monday, 13
  February 2006 11:03 AMTo: users@myfaces.apache.orgSubject: Want to
  migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build
  MyFaces 1.1.2
  Hi All 
  We have been using MyFaces 1.0.9 and would like
  to migrate to the next version. Also we would like to add ADF to our
  project. 
  What do you suggest to download? 
   Release - MyFaces 1.1.1 - http://www.apache.org/dyn/closer.cgi/myfaces/binaries/myfaces-1.1.1.zip
  
  
  
  
   Or Or
  Or  Nightly Builds - - MyFaces 1.1.2 - http://cvs.apache.org/builds/myfaces/nightly/myfaces-core-1.1.2-SNAPSHOT-bin.zip
  I have read many emails regarding the bugs in
  the 1.1.1 release and also about other bugs due to the new fixes in the
  Nightly Build. We have waited for a while for a stable version. Since we
  are going to implement some core functionalities in the project we would
  like to migrate to the next (stable) version that supports ADF
  too.
  Thanks. 
  Regards Balaji 
  


  This correspondence is for
the named persons only. It may contain confidential or
privileged information or both. No confidentiality or privilege
is waived or lost by any mis transmission. If you receive this
correspondence in error please delete it from your system
immediately and notify the sender. You must not disclose, copy
or relay on any part of this correspondence, if you are not the
intended recipient. Any opinions expressed in this message are
those of the individual sender except where the sender expressly,
and with the authority, states them to be the opinions of the
Department of Emergency Services,
Queensland.

  
  
This correspondence is for the
  named persons only. It may contain confidential or privileged
  information or both. No confidentiality or privilege is waived or
  lost by any mis transmission. If you receive this correspondence
  in error please delete it from your system immediately and notify the
  sender. You must not disclose, copy or relay on any part of this
  correspondence, if you are not the intended recipient. Any
  opinions expressed in this message are those of the individual sender
  except where the sender expressly, and with the authority, states
  them to be the opinions of the Department of Emergency Services,
  Queensland.-- http://www.irian.atYour JSF powerhouse
  - JSF Consulting, Development and Courses in English and
  GermanProfessional Support for Apache MyFaces


This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: calendar with tomahawk

2006-02-12 Thread Balaji Kalyansundaram



I have
not done any work on Portlets or JBoss. I regret that I could not help you
anymore.

Balaji

  -Original Message-From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]Sent: Friday, 10 February 2006 6:18
  PMTo: 'MyFaces Discussion'Subject: RE: calendar with
  tomahawk
  
  Thanks a lot for your
  help. 
  I added the filters,
  however I cannot launch my page and I have still this error
  message:
  
  javax.portlet.PortletException:
  org.apache.jasper.JasperException:
  org.jboss.portlet.JBossRenderRequest
  
  Do you know
  what do I miss? What can be the problem?
  
  Thanks
  again.
  Sophie
  
  
  
  
  
  De: Balaji
  Kalyansundaram [mailto:[EMAIL PROTECTED] Envoyé: jeudi 9 février 2006
  23:24À: MyFaces Users
  (E-mail)Objet: RE:
  calendar with tomahawk
  
  
  Hi
  
  
  
  Yes thats
  right.You need to add some more too. So the final one should look
  like
  
  
  
  
  filter
  filter-nameextensionsFilter/filter-name
  filter-classorg.apache.myfaces.component.html.util.ExtensionsFilter/filter-class
  /filter
  
  
  filter-mapping
  filter-nameextensionsFilter/filter-name
  url-pattern*.faces/url-pattern
  /filter-mapping
  filter-mapping
  filter-nameextensionsFilter/filter-name
  url-pattern/faces/*/url-pattern
  /filter-mapping
  
  
  
  Also it will be
  better if you can post ur replies to the Group, so that others with this issue
  cand find thsi helpful.
  
  
  
  Regards
  
  
  
  Balaji
  
  
  
-Original
Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]Sent: Friday, 10 February 2006 2:03
AMTo: Balaji
KalyansundaramSubject: RE:
calendar with tomahawk
Thanks for the
answer.
So that means that
if I have this code:

%@ taglib uri=http://myfaces.apache.org/extensions
prefix=x %

tr

tdh:outputText
value="#{Fmsg.birthday}"/:/td

td

h:form 

x:inputCalendar id="calendar" value="#{DateBean.date}"
renderAsPopup="true" /


/h:form

/td
/tr

I also need to add
a filter in my web.xml?
How should I write
it:
filter-mapping

filter-nameMyFilter/filter-name

url-patternhttp://myfaces.apache.org/extensions/url-pattern

/filter-mapping

?? And then I will have
a popup, will be able to pass from a month to another and select a
date?

Thanks in advance for
your answer
Best
Sophie
    





De:
Balaji Kalyansundaram [mailto:[EMAIL PROTECTED] Envoyé: mercredi 8 février 2006
23:54À: MyFaces
Discussion; [EMAIL PROTECTED]Objet: RE: calendar with
tomahawk


Hi



Though I did not
see the code, I can tell that "calendarBean" should be a backing bean. And
they are saving the state of it.You can look at the WIKI for more info
on t:saveState



To use the Calendar
you do not need to saveState. But make sure you unclude the extension
filetrs in web.xml, so that MyFaces can add the .js and .css files for the
popup calendar.



HIH



Balaji
-Original
  Message-From:
  [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]]Sent: Thursday, 9 February 2006 12:17
  AMTo:
  users@myfaces.apache.orgSubject: calendar with
  tomahawk
  Hello
  everybody!
  
  I am new on this list. And I
  am writing to you for an advice.
  I am trying to add a calendar
  to my jsp page using the example of MyFaces.
  However I do not understand
  what is this calendarBean in
  t:saveState
  value="#{calendarBean}"/ 
  Is there a file
  calendarBean.java somewhere in this example? 
  
  Thanks in advance for your
  help.
  Best,
  Sophie
__ NOD32 1.1400 (20060208)
Information __This message was checked by NOD32 antivirus
system.http://www.eset.com

  
  

  This correspondence
  is for the named persons only. It may contain confidential or
  privileged information or both. No confidentiality or privilege is
  waived or lost by any mis transmission. If you receive this
  correspondence in error please delete it from your system immediately
  and notify the sender. You must not disclose, copy or relay on any
  part of this correspondence, if you are not the intended recipient.
  Any opinions expressed in this message are those of the individual
  sender except where the sender expressly, and with the authority,
  states them to be the opinions of the Department of Emergency
  Services,
  Queensland.
  __ NOD32 1.1402 (20060209) Information
  __This messa

Want to migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build MyFaces 1.1.2

2006-02-12 Thread Balaji Kalyansundaram
Title: Want to migrate from MyFaces 1.0.9. Pls suggest MyFaces 1.1.1 or nightly build MyFaces 1.1.2






Hi All


We have been using MyFaces 1.0.9 and would like to migrate to the next version. Also we would like to add ADF to our project. 

What do you suggest to download?


 Release - MyFaces 1.1.1 - http://www.apache.org/dyn/closer.cgi/myfaces/binaries/myfaces-1.1.1.zip

 Or Or Or 

 Nightly Builds - - MyFaces 1.1.2 - http://cvs.apache.org/builds/myfaces/nightly/myfaces-core-1.1.2-SNAPSHOT-bin.zip


I have read many emails regarding the bugs in the 1.1.1 release and also about other bugs due to the new fixes in the Nightly Build. We have waited for a while for a stable version. Since we are going to implement some core functionalities in the project we would like to migrate to the next (stable) version that supports ADF too.

Thanks.


Regards

Balaji






This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: calendar with tomahawk

2006-02-09 Thread Balaji Kalyansundaram



Hi

Yes
thats right.You need to add some more too. So the final one should look
like


filter
filter-nameextensionsFilter/filter-name
filter-classorg.apache.myfaces.component.html.util.ExtensionsFilter/filter-class
/filter

filter-mapping
filter-nameextensionsFilter/filter-name
url-pattern*.faces/url-pattern
/filter-mapping
filter-mapping
filter-nameextensionsFilter/filter-name
url-pattern/faces/*/url-pattern
/filter-mapping

Also
it will be better if you can post ur replies to the Group, so that others with
this issue cand find thsi helpful.

Regards

Balaji


  -Original Message-From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]Sent: Friday, 10 February 2006 2:03
  AMTo: Balaji KalyansundaramSubject: RE: calendar with
  tomahawk
  
  Thanks for the
  answer.
  So that means that if
  I have this code:
  
  %@ taglib uri=http://myfaces.apache.org/extensions
  prefix=x %
  
  tr
  
  tdh:outputText
  value="#{Fmsg.birthday}"/:/td
  
  td
  
  h:form 
  
  x:inputCalendar id="calendar" value="#{DateBean.date}"
  renderAsPopup="true" /
  
  
  /h:form
  
  /td
  /tr
  
  I also need to add a
  filter in my web.xml?
  How should I write
  it:
  filter-mapping
  
  filter-nameMyFilter/filter-name
  
  url-patternhttp://myfaces.apache.org/extensions/url-pattern
  
  /filter-mapping
  
  ?? And then I will have a
  popup, will be able to pass from a month to another and select a
  date?
  
  Thanks in advance for your
  answer
  Best
  Sophie
  
  
  
  
  
  
  De: Balaji
  Kalyansundaram [mailto:[EMAIL PROTECTED] Envoyé: mercredi 8 février 2006
  23:54À: MyFaces
  Discussion; [EMAIL PROTECTED]Objet: RE: calendar with
  tomahawk
  
  
  Hi
  
  
  
  Though I did not see
  the code, I can tell that "calendarBean" should be a backing bean. And they
  are saving the state of it.You can look at the WIKI for more info on
  t:saveState
  
  
  
  To use the Calendar
  you do not need to saveState. But make sure you unclude the extension filetrs
  in web.xml, so that MyFaces can add the .js and .css files for the popup
  calendar.
  
  
  
  HIH
  
  
  
  Balaji
  
-Original
Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]Sent: Thursday, 9 February 2006 12:17
AMTo:
users@myfaces.apache.orgSubject: calendar with
tomahawk
Hello
everybody!

I am new on this list. And I am
writing to you for an advice.
I am trying to add a calendar to
my jsp page using the example of MyFaces.
However I do not understand what
is this calendarBean in
t:saveState
value="#{calendarBean}"/ 
Is there a file
calendarBean.java somewhere in this example? 

Thanks in advance for your
help.
Best,
Sophie
  __ NOD32 1.1400 (20060208) Information
  __This message was checked by NOD32 antivirus system.http://www.eset.com
  


  This correspondence is for the
named persons only. It may contain confidential or privileged
information or both. No confidentiality or privilege is waived or
lost by any mis transmission. If you receive this correspondence in
error please delete it from your system immediately and notify the
sender. You must not disclose, copy or relay on any part of this
correspondence, if you are not the intended recipient. Any opinions
expressed in this message are those of the individual sender except
where the sender expressly, and with the authority, states them to
be the opinions of the Department of Emergency Services,
Queensland.

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: calendar with tomahawk

2006-02-08 Thread Balaji Kalyansundaram



Hi

Though
I did not see the code, I can tell that "calendarBean" should be a backing bean.
And they are saving the state of it.You can look at the WIKI for more info
on t:saveState

To use
the Calendar you do not need to saveState. But make sure you unclude the
extension filetrs in web.xml, so that MyFaces can add the .js and .css files for
the popup calendar.

HIH

Balaji

  -Original Message-From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]Sent: Thursday, 9 February 2006 12:17
  AMTo: users@myfaces.apache.orgSubject: calendar with
  tomahawk
  
  Hello
  everybody!
  
  I am new on this list. And I am
  writing to you for an advice.
  I am trying to add a calendar to
  my jsp page using the example of MyFaces.
  However I do not understand what
  is this calendarBean in
  t:saveState
  value="#{calendarBean}"/ 
  Is there a file calendarBean.java
  somewhere in this example? 
  
  Thanks in advance for your
  help.
  Best,
  Sophie

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: override validation message

2006-02-08 Thread Balaji Kalyansundaram



Hi Dave

You
can write PhaseListener for the Render Response, which will check for the Error
Messages (Value is
required) in the facesContext.getMessages(); and add a global message
"Fields marked with (*) are
required"

Balaji

  -Original Message-From: Dave
  [mailto:[EMAIL PROTECTED]Sent: Thursday, 9 February 2006 9:18
  AMTo: users@myfaces.apache.orgSubject: override
  validation message
  


  
I have a table with 2 columns without header.
Required fields are marked with (*).
The following validation messages show up if user
forget to input something into the required fields:

"_idJsp263": Value is
required.

  "_idJsp255": Value is required.

  "_idJsp193": Value is required.

  "_idJsp193": Value is required.

  "_idJsp193": Value is
required.
  
  I can not use id. If I do, all the fields in one column will have the
  same id because it is a datatable, and not meaningful.
  
  Is there way to override these message and simply say: 
   "Fields marked with (*) are required"
  
  Thanks!
  
  
  Yahoo!
  Mail - Helps protect you from nasty viruses.

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: override validation message

2006-02-08 Thread Balaji Kalyansundaram



May be
you can write the PhaseListener for the Apply Request
Values.

  -Original Message-From: Balaji Kalyansundaram
  [mailto:[EMAIL PROTECTED]Sent: Thursday, 9 February
  2006 10:42 AMTo: MyFaces DiscussionSubject: RE: override
  validation message
  Hi Dave
  
  You
  can write PhaseListener for the Render Response, which will check for the
  Error Messages (Value is
  required) in the facesContext.getMessages(); and add a global message
  "Fields marked with (*) are
  required"
  
  Balaji
  
-Original Message-From: Dave
[mailto:[EMAIL PROTECTED]Sent: Thursday, 9 February 2006 9:18
AMTo: users@myfaces.apache.orgSubject: override
validation message

  
  

  I have a table with 2 columns without header.
  Required fields are marked with (*).
  The following validation messages show up if
  user forget to input something into the required fields:
  
  "_idJsp263": Value is
  required.
  
"_idJsp255": Value is required.
  
"_idJsp193": Value is required.
  
"_idJsp193": Value is required.
  
"_idJsp193": Value is
  required.

I can not use id. If I do, all the fields in one column will have the
same id because it is a datatable, and not meaningful.

Is there way to override these message and simply say: 
 "Fields marked with (*) are required"

Thanks!


Yahoo!
Mail - Helps protect you from nasty viruses.
  


  This correspondence is for the
named persons only. It may contain confidential or privileged
information or both. No confidentiality or privilege is waived or
lost by any mis transmission. If you receive this correspondence in
error please delete it from your system immediately and notify the
sender. You must not disclose, copy or relay on any part of this
correspondence, if you are not the intended recipient. Any opinions
expressed in this message are those of the individual sender except
where the sender expressly, and with the authority, states them to
be the opinions of the Department of Emergency Services,
Queensland.

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: get ResouceBundle from backing Bean

2006-02-07 Thread Balaji Kalyansundaram



You
can get the bundle as 

static
ResourceBundle bundle =
Messages.getBundle("packageName.fielName");

Balaji
[Balaji Kalyansundaram]-Original
Message-From: Dave [mailto:[EMAIL PROTECTED]Sent:
Wednesday, 8 February 2006 3:17 PMTo:
users@myfaces.apache.orgSubject: get ResouceBundle from backing
Bean

  On every page I have 
  
  f:loadBundle basename="messages" var="bundle"/
  
  How to access the bundle from a back bean?
  I can get current Locale and bundle basename from FacesContext viewRoot,
  but It does not have resource bundle.
  
  Do I have to load it again from disk? 
  
  Thanks!
  
  
  Relax. Yahoo! Mail virus
  scanning helps detect nasty viruses!

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: browser back button in JSF?

2006-02-05 Thread Balaji Kalyansundaram



There
have been many posts on this at http://www.mail-archive.com/users%40myfaces.apache.org/

Iset the STATE_SAVING_METHOD to client and it fixed the
problems


context-param
param-namejavax.faces.STATE_SAVING_METHOD/param-name
param-valueclient/param-value
/context-param

Balaji

  [Balaji
  Kalyansundaram]-Original
  Message-From: Tom Butler
  [mailto:[EMAIL PROTECTED]Sent: Monday, 6 February 2006 2:06
  PMTo: users@myfaces.apache.orgSubject: browser back
  button in JSF?
  
  Can anyone point me to a wiki or
  other to help me understand how to handle the user pressing the
  browser back button in a JSF application?
  
  Ive read this is a weakness of
  JSF, and from the testing Ive done it does appear to be a problem.
  Looking for any ways to gracefully handle this
  situation.
  
  Thanks!

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: validating multiple fields

2006-02-01 Thread Balaji Kalyansundaram

Hi

   In the validator method (in the backing bean) add a message for the hidden 
component and set it as invalid.

public void validateDate(FacesContext context, UIComponent toValidate, 
Object value) {
FacesMessage facesMessage = null;
   
if (!validDate) {
facesMessage = new 
FacesMessage(FacesMessage.SEVERITY_ERROR,message summary,message detail);
context.addMessage(toValidate.getClientId(context),facesMessage);
((UIInput)toValidate).setValid(false);
}

}

HIH.

Balaji

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, 2 February 2006 2:31 PM
To: 'MyFaces Discussion'
Subject: validating multiple fields


I want to create a validator that works on multiple fields. Basically,
if one is entered the other two must be entered. If it set the validator
on any one field and it isn't entered, the validator is not run, so I must
put it on all three fields. Then I need to worry about if the error message
has already been set by a previous validator, among other things. In the
book Core JavaServer Faces, they mention the alternative approach below, but
I can't get it to work. No matter what I put in the value attribute, the
validator is not run. What do I need to do for It is essential that you
supply some field value?

Thanks,
Lance

==

An alternative approach is to attach the validator to a hidden input field
that comes after all other fields on the form.

h:inputHidden id=datecheck validator=#{bb.validateDate}
value=needed/

The hidden field is rendered as a hidden HTML input field. When the field
value is posted back, the validator kicks in. (It is essential that you
supply some field value. Otherwise, the component
value is never updated.) With this approach, the validation function is more
symmetrical since all other form components already have their local values
set.


This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: selectOneMenu question

2006-01-12 Thread Balaji Kalyansundaram



You
can 
 set thewidth:120px; in
CSS and useit in styleCass OR 
 set style="width:120px;" for the
component.

Balaji

  -Original Message-From: Yixing Ma
  [mailto:[EMAIL PROTECTED]Sent: Friday, 13 January 2006
  8:28 AMTo: users@myfaces.apache.orgSubject:
  H:selectOneMenu questionImportance: High
  
  Quick
  question,
  
  
  How to change the width of a drop
  down list ?
  
  H:selectOneMenu
  
  
  I want to
  set a fixed width to the drop down list. It trims off the empty spaces
  automatically.
  
  Thanks

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: Confirmation when pressing a button?

2005-12-19 Thread Balaji Kalyansundaram

Hi

You can use a Javascript confirm to do it.

Something like

  h:commandLink onclick=if (!confirm('Do you really want to delete the 
record???')) return false
 actionListener=#editBean.deleteRecord}
h:graphicImage url=/images/Delete16.png border=0/
  /h:commandLink

Check how the HTMML is generated too.

Balaji

-Original Message-
From: Bjørn T Johansen [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 20 December 2005 8:12 AM
To: MyFaces Discussion
Subject: Confirmation when pressing a button?


What is the best way asking the user for confirmation when the user chooses a 
delete button when using myfaces
and/or JSF?


Regards,

BTJ

--
---
Bjørn T Johansen

[EMAIL PROTECTED]
---
Someone wrote:
I understand that if you play a Windows CD backwards you hear strange Satanic 
messages
To which someone replied:
It's even worse than that; play it forwards and it installs Windows
---

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Submit and h:commandLink question

2005-12-18 Thread Balaji Kalyansundaram

Hi

I had the similar (may be same) problem as the collection for the dataTable  
was empty at the Restore View Phase. Since it is empty it could not restore  
the command link components and hence nothing happens.

You should
1. Store the dataTable's collection value in saveState
2. Have the bean in session scope and make sure the collection does not 
loose teh value.

HIH

Balaji


-Original Message-
From: Mario Ivankovits [mailto:[EMAIL PROTECTED]
Sent: Saturday, 17 December 2005 6:15 AM
To: MyFaces Discussion
Subject: Re: Submit and h:commandLink question


Hi!
 I use myfaces-1.1.1 and it looks like I have a similar problem when I
 place a inputHtml component in my form ... currently investigating it.
I dont know what was the problem, but using the lates nightly fixed it.

---
Mario


This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: dynamically adding entries panal navigation

2005-12-12 Thread Balaji Kalyansundaram




Check this wiki http://wiki.apache.org/myfaces/Dynamic_Menus_with_JSCookMenufor adding items to navigationMenuItems.


  -Original Message-From: Thomas Spiegl
  [mailto:[EMAIL PROTECTED]Sent: Tuesday, 13 December 2005
  6:25 AMTo: MyFaces DiscussionSubject: Re: dynamically
  adding entries panal navigationYou can "dynamically"
  create your menu items by using t:navigationMenuItems value="..."Note:
  The value binding will be evaluated if and only if the menu is not present in
  the current view. Typically this will happen when the menu is rendered the
  first time. Hence the menu-tree will keep the same.If a navigation to a
  new page takes place  the new page contains the same panelNavigation2
  component (same clientId),then the panelNavigation2 component and it's
  state will be copied from the previous view.HTHThomas
  On 12/12/05, Balasubramanian R [EMAIL PROTECTED] wrote:
  
Hi,

Can you please explain the steps to create "dynamically adding entries
panal navigation 2" in myfaces. 
Bala
-- http://www.irian.atYour JSF powerhouse
  -JSF Consulting, Development andCourses in English and
  GermanProfessional Support for Apache MyFaces


This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: Documentation for t:inputCalendar/

2005-12-11 Thread Balaji Kalyansundaram

examples/calendar.jsp is in the src for myfaces. you can download it at 
http://apache.planetmirror.com.au/dist/myfaces/source/myfaces-1.1.1-src.zip

Balaji

-Original Message-
From: Mike Duffy [mailto:[EMAIL PROTECTED]
Sent: Sunday, 11 December 2005 8:51 AM
To: users@myfaces.apache.org
Subject: Documentation for t:inputCalendar/


It would be a good idea to add a note to the documentation page for 
t:inputCalendar/
(http://myfaces.apache.org/tomahawk/calendar.html), stating, This component 
requires the MyFaces'
Extensions Filter (http://myfaces.apache.org/tomahawk/extensionsFilter.html).

Also, most of the documentation pages have a note at the bottom: see 
examples/calendar.jsp for an
example!.  I cannot find this link.  Any suggestions?

Thx.

Mike

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: inputCalendar - popup - styles and other properties - problem

2005-12-11 Thread Balaji Kalyansundaram

Hi Mike

I have this problem with 1.0.9 and opened a jira. After sometime Martin sent an 
email stating that this bug was fixed.

http://issues.apache.org/jira/browse/MYFACES-370

We are stil using 1.0.9 so I could not test with 1.1.0 or the Nightly builds.

Balaji

-Original Message-
From: Mike Duffy [mailto:[EMAIL PROTECTED]
Sent: Sunday, 11 December 2005 9:06 AM
To: MyFaces Discussion
Subject: Re: inputCalendar - popup - styles and other properties -
problem


Also, when I add a reference to the resource bundle it works fine.  For some 
reason the component
is not finding the reference to the style class specified in the page header.

t:inputCalendar monthYearRowClass=yearMonthHeader2 weekRowClass=weekHeader2
currentDayCellClass=currentDayCell2
value=#{issueCreate.estimatedStartDate} renderAsPopup=true
popupTodayString=#{bundle.prompt_today}
popupWeekString=#{bundle.prompt_week}
renderPopupButtonAsImage=true/

--- Mike Duffy [EMAIL PROTECTED] wrote:

 I cannot set the styles (monthYearRowClass, weekRowClass, 
 currentDayCellClass) for

 t:inputCalendar monthYearRowClass=yearMonthHeader2 
 weekRowClass=weekHeader2
 currentDayCellClass=currentDayCell2
 value=#{issueCreate.estimatedStartDate} renderAsPopup=true
 popupTodayString=Today is
 popupWeekString=Wk
 renderPopupButtonAsImage=true/

 For some reason, it always goes to the default colors.

 There was a thread on this back in September, but no answer:

http://mail-archives.apache.org/mod_mbox/myfaces-dev/200509.mbox/[EMAIL 
PROTECTED]

 Does anyone know if this is a bug?  Any suggestions?

 Thx.

 Mike

 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam protection around
 http://mail.yahoo.com



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Dynamically Generating a JSCookMenu items

2005-12-11 Thread Balaji Kalyansundaram

Yes you can create dynamic menus. Check this wiki 
http://wiki.apache.org/myfaces/Dynamic_Menus_with_JSCookMenu

Balaji

-Original Message-
From: Alex Burton [mailto:[EMAIL PROTECTED]
Sent: Monday, 12 December 2005 9:55 AM
To: users@myfaces.apache.org
Subject: Dynamically Generating a JSCookMenu items


Hi all,

Is there a way to dynamically generate navigationMenuItems? The
problem I am facing is I am trying to generate a nested menu based off
a tree structure that is dynamic and am having problems as I can't use
EL tags in the IDs.

Anyone got a quick example if it is possible?

Cheers,
Alex.

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Border in panelgrid

2005-10-31 Thread Balaji Kalyansundaram

Hi

What happened to the number of columns and the cells in the panelGrid???

  h:panelGrid id=one border=10 columns=2
f:verbatimA/f:verbatim  
f:verbatimB/f:verbatim
  /h:panelGrid

HTH.

Balaji


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 1 November 2005 10:35 AM
To: MyFaces Discussion
Subject: Border in panelgrid


Hi,

I am trying to dsiplay the border in panelgrid. I am sure where I am going 
wrong.
I am not getting a border. Here my simple example jsp.

%@ taglib uri=http://java.sun.com/jsf/html; prefix=h%
%@ taglib uri=http://java.sun.com/jsf/core; prefix=f%
%@ taglib uri=http://myfaces.apache.org/extensions; prefix=x%

html

[EMAIL PROTECTED] file=inc/head.inc %
%@ page import=org.apache.myfaces.examples.tree.* %

body



f:view
f:loadBundle basename=org.apache.myfaces.examples.treedemo.bundle.Messages
var=Message/


h:form id=whereForm
   
brbrbrbrbrbrbrbrbrbrbrbrbrbrbr
  
  h:panelGrid id=one border=10
 
  /h:panelGrid
 
   
/h:form
  
/f:view

/body

/html

Please, correct my mistake

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: survey: what tool are you using for JSF ?

2005-10-17 Thread Balaji Kalyansundaram

IntelliJ IDEA

-Original Message-
From: Dennis Byrne [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 18 October 2005 3:05 PM
To: MyFaces Discussion
Subject: RE: survey: what tool are you using for JSF ?


just Eclipse .


 Original message 
Date: Tue, 18 Oct 2005 01:03:10 -0400
From: David G. Friedman [EMAIL PROTECTED] 
Subject: RE: survey: what tool are you using for JSF ? 
To: MyFaces Discussion users@myfaces.apache.org

Eclipse + FacesIDE + EclipseHTMLEditor.

-David

-Original Message-
From: Francesco Consumi
[mailto:[EMAIL PROTECTED]
Sent: Monday, October 17, 2005 1:38 PM
To: users@myfaces.apache.org
Subject: survey: what tool are you using for JSF ?

Hi people,

I'm asking what kind of IDE/Tool are you using for
developing your JSF Web
apps. We're using NetBeans 5.0, but I'm beginning to think
it isn't too
fast.

--
Francesco Consumi

Dennis Byrne

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: Want a Default Selected Radio Button. What to Do?

2005-10-09 Thread Balaji Kalyansundaram

In the jsp
h:selectOneRadio value=#{dataManagementBean.dataTransferType} 
layout=pageDirection 
f:selectItems 
value=#{dataManagementBean.dataTransferTypeItems}/
  /h:selectOneRadio

In the code
You can intialise dataTransferType with imports. And then have getter 
and setter method.

String dataTransferType = imports;

Balaji


-Original Message-
From: Caroline Jen [mailto:[EMAIL PROTECTED]
Sent: Saturday, 8 October 2005 3:08 AM
To: users@myfaces.apache.org
Subject: Want a Default Selected Radio Button. What to Do?


I want to show a default selected radio button when
the web page is loaded for the first time.  Normally,
I create a set of radio buttons this way:

[code]
h:selectOneRadio
value=#{dataManagementBean.dataTransferType}
layout=pageDirection 
 f:selectItems
value=#{dataManagementBean.dataTransferTypeItems}/
/h:selectOneRadio
[/code]

To show a default selection, I can add a statement in
my backing bean

[code]
String defaultSelectedDataTransferType =
imports;[/code]
where imports is the value of one of my buttons.
Then, I display the web page this way:

[code]
h:selectOneRadio
value=#{dataManagementBean.defaultSelectedDataTransferType}
layout=pageDirection 
 f:selectItems
value=#{dataManagementBean.dataTransferTypeItems}/
/h:selectOneRadio
[/code]

The problem is that whatever the radio button that
users actually select, its value is assigned to the
[b]defaultSelectedDataTransferType[/b].

I want the [b]dataTransferType[/b] gets the value of
the button that users select.  What should I do?



__
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: selectOneMenu - Readonly

2005-09-07 Thread Balaji Kalyansundaram



Hi

There
is NO readonly attribute for SELECT. 

http://www.w3.org/TR/html4/interact/forms.html#h-17.6

Balaji

  -Original Message-From: Dave
  [mailto:[EMAIL PROTECTED]Sent: Thursday, 8 September 2005 2:41
  AMTo: users@myfaces.apache.orgSubject: selectOneMenu -
  Readonly 
  When I set readonly="true" for h:selectOneMenu, user can still
  change selection on browser. So I need to set disabled="true" for it. However,
  it is a disabled look, giving the impression that the item is
  notappliable to current page. Ideally I want it to be ReadOnly, not
  disabled. Is this a bug? or selectOneMenu does not support
  readonly? readonly works great for other UIInput such as
  inputText. Thanks. Dave
  
  
  Click here to donate to the
  Hurricane Katrina relief effort.

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: master detail pages

2005-08-31 Thread Balaji Kalyansundaram

Hi

Download the my-faces examples from http://myfaces.apache.org/binary.cgi
and look at the Master-Detail in the Component menu.

Balaji

-Original Message-
From: ::SammyRulez:: [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 31 August 2005 5:01 PM
To: users@myfaces.apache.org
Subject: master detail pages


Hi all

I'm a JSF total newbbie so.. I'm sorry if I'm asking something trivial.

I read a lot of tutorials on page navigation and event handling... but
I still can't figure out how to implement a simple master/detail
pages. I make a page with dataTable reading values from a managed bean
but I can implement the passage to the detailed page?

thanks


Sam

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: ajax ajax ajax

2005-08-31 Thread Balaji Kalyansundaram



Hi
Enrique

I'm
not developing using Ajax.But I found the components in http://wiki.apache.org/myfaces/AJAX_Framework
working in Firefox. So I though that it is not the issue with
Firefox 1.0.6.

Balaji

  -Original Message-From: Enrique Medina
  [mailto:[EMAIL PROTECTED]Sent: Wednesday, 31 August 2005 11:02
  PMTo: MyFaces DiscussionSubject: Re: ajax ajax
  ajaxHi Balaji,I have just downloaded Firefox
  1.0.6 and still doesn't work for me...Could you please post a quick
  step-by-step guide of your configuration?Thanks.
  2005/8/31, Balaji Kalyansundaram [EMAIL PROTECTED]:
  
It works in Firefox
1.0.6


  -Original
  Message-From: Enrique Medina [mailto:[EMAIL PROTECTED]]Sent: Tuesday, 30 August
  2005 8:48 PMTo: MyFaces DiscussionSubject: Re: ajax
  ajax ajaxAlso is not working for me in Firefox 1.0
  :-(Error: [Exception... "Component returned failure code:
  0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.getResponseHe
  ader]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)"
  location: "JS frame :: http://localhost:8080/DeltaR/faces/myFacesExtensionResource/ajax.UIAjaxViewComponent/11245933/JSFAJAX.js
  :: anonymous :: line 48" data: no]Source File: http://localhost:8080/DeltaR/faces/myFacesExtensionResource/ajax.UIAjaxViewComponent/11245933/JSFAJAX.js
  Line: 48where the source line is:  	  var idsFromResponse = req.getResponseHeader("Ajax-Update-Ids");
  2005/8/30, Arash Bijanzadeh [EMAIL PROTECTED]:
  
On 8/15/05, Werner Punz [EMAIL PROTECTED] 
wrote:

Just
  checked the wiki again, some russian guy postedlinks to his
  projectthat stuff looks really interestinghttp://wiki.apache.org/myfaces/AJAX_Framework
  It is not working on mozilla
1.7.8 with error message AJAX not found!--
from debian manifesto:Debian Linux is a brand-new kind of Linux
distribution. Rather than being developed by one isolated individua
l or group, as other distributions of Linux have been developed in
thepast, Debian is being developed openly in the spirit of Linux and
GNU. 

  
  
This correspondence is for the
  named persons only. It may contain confidential or privileged
  information or both. No confidentiality or privilege is waived or
  lost by any mis transmission. If you receive this correspondence
  in error please delete it from your system immediately and notify the
  sender. You must not disclose, copy or relay on any part of this
  correspondence, if you are not the intended recipient. Any
  opinions expressed in this message are those of the individual sender
  except where the sender expressly, and with the authority, states
  them to be the opinions of the Department of Emergency Services,
  Queensland.

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


RE: ajax ajax ajax

2005-08-30 Thread Balaji Kalyansundaram



It
works in Firefox 1.0.6

  -Original Message-From: Enrique Medina
  [mailto:[EMAIL PROTECTED]Sent: Tuesday, 30 August 2005 8:48
  PMTo: MyFaces DiscussionSubject: Re: ajax ajax
  ajaxAlso is not working for me in Firefox 1.0
  :-(Error: [Exception... "Component returned failure code: 0x80040111
  (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.getResponseHe ader]"
  nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame ::
  http://localhost:8080/DeltaR/faces/myFacesExtensionResource/ajax.UIAjaxViewComponent/11245933/JSFAJAX.js
  :: anonymous :: line 48" data: no]Source File: http://localhost:8080/DeltaR/faces/myFacesExtensionResource/ajax.UIAjaxViewComponent/11245933/JSFAJAX.js
  Line: 48where the source line is:  	  var idsFromResponse = req.getResponseHeader("Ajax-Update-Ids");
  2005/8/30, Arash Bijanzadeh [EMAIL PROTECTED]:
  
On 8/15/05, Werner Punz [EMAIL PROTECTED] 
wrote:

Just
  checked the wiki again, some russian guy postedlinks to his
  projectthat stuff looks really interestinghttp://wiki.apache.org/myfaces/AJAX_Framework
It is not working on mozilla
1.7.8 with error message AJAX not found!-- from debian manifesto:Debian Linux is a brand-new
kind of Linux distribution. Rather than being developed by one isolated
individua l or group, as other distributions of Linux have been
developed in thepast, Debian is being developed openly in the spirit of
Linux and GNU. 

This correspondence is for the named persons only. 
It may contain confidential or privileged information or both. 
No confidentiality or privilege is waived or lost by any mis transmission. 
If you receive this correspondence in error please delete it from your system immediately and notify the sender. 
You must not disclose, copy or relay on any part of this correspondence, if you are not the intended recipient. 
Any opinions expressed in this message are those of the individual sender except where the sender expressly, 
and with the authority, states them to be the opinions of the Department of Emergency Services, Queensland.


inputCalendar - popup - styles and other properties - problem

2005-07-27 Thread Balaji Kalyansundaram

Hi

In popup inputCalendar, I was able to change the popupDateFormat but other 
properties like ...class, popupTodayString, ... does not get set by the 
passed values. I can only see the default styles and text in the pop-up. But 
these properties can be changed in the in-line(normal) calendar.

I browsed through the mailing list for users and developers, but could not find 
anyone reporting this.

Has anyone faced this problem???

I want to confirm if there is a solution for this, before submitting it as a 
BUG.

Thanks

Balaji


This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


JS and CSS - not loading in header

2005-07-25 Thread Balaji Kalyansundaram

Hi All

CSS and JS are not getting loaded in the header, for the MyFace components.
When I use inputCalendar, I get JS errors like jscalendarSetImageDirectory is 
not defined.
I have used extension filters and also header.inc'.

I tried other componenets like popup. But they didnt work too.

Can anyone help please???

Regards
Balaji

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.


RE: JS and CSS - not loading in header

2005-07-25 Thread Balaji Kalyansundaram

Hi Don

I had those lines.

Though I'm accessing the URL as .faces, I had it as
filter-mapping
filter-nameextensionsFilter/filter-name
url-pattern*.jsf/url-pattern
/filter-mapping

I have used yours (*.faces) and it works.
filter-mapping
filter-nameextensionsFilter/filter-name
url-pattern*.faces/url-pattern
/filter-mapping

Thanks for your help.

Balaji


-Original Message-
From: Don Walters [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 26 July 2005 9:50 AM
To: MyFaces Discussion
Subject: RE: JS and CSS - not loading in header


Hi Balaji,

Do you have the following lines in your web.xml file?

---
!-- Extensions Filter --
filter
filter-nameextensionsFilter/filter-name
filter-class
org.apache.myfaces.component.html.util.ExtensionsFilter
/filter-class
init-param
description
Set the size limit for uploaded files. Format:
10 - 10
bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
/description
param-nameuploadMaxFileSize/param-name
param-value100m/param-value
/init-param
init-param
description
Set the threshold size - files below this limit
are
stored in memory, files above this limit are
stored on
disk.
Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g
- 1 GB
/description
param-nameuploadThresholdSize/param-name
param-value100k/param-value
/init-param
!--
init-param
param-nameuploadRepositoryPath/param-name
param-value/temp/param-value
descriptionSet the path where the intermediary files
will be stored.
/description
/init-param
--
/filter
filter-mapping
filter-nameextensionsFilter/filter-name
url-pattern*.faces/url-pattern
/filter-mapping
filter-mapping
filter-nameextensionsFilter/filter-name
url-pattern/faces/*/url-pattern
/filter-mapping
---

Don

-Original Message-
From: Balaji Kalyansundaram [mailto:[EMAIL PROTECTED]
Sent: Monday, July 25, 2005 4:35 PM
To: users@myfaces.apache.org
Subject: JS and CSS - not loading in header


Hi All

CSS and JS are not getting loaded in the header, for the MyFace
components.

When I use inputCalendar, I get JS errors like
jscalendarSetImageDirectory is not defined.
I have used extension filters and also header.inc'.

I tried other componenets like popup. But they didnt work too.

Can anyone help please???

Regards
Balaji

This correspondence is for the named persons only.

It may contain confidential or privileged information or both.

No confidentiality or privilege is waived or lost by any mis
transmission.

If you receive this correspondence in error please delete it from your
system immediately and notify the sender.

You must not disclose, copy or relay on any part of this correspondence,
if you are not the intended recipient.

Any opinions expressed in this message are those of the individual
sender except where the sender expressly,

and with the authority, states them to be the opinions of the Department
of Emergency Services, Queensland.

This correspondence is for the named persons only.
It may contain confidential or privileged information or both.
No confidentiality or privilege is waived or lost by any mis transmission.
If you receive this correspondence in error please delete it from your system 
immediately and notify the sender.
You must not disclose, copy or relay on any part of this correspondence, if you 
are not the intended recipient.
Any opinions expressed in this message are those of the individual sender 
except where the sender expressly,
and with the authority, states them to be the opinions of the Department of 
Emergency Services, Queensland.