RE: question

2006-07-19 Thread Dhananjay Prasanna
I don't think it's that hard to find someone who speaks english and ask them to translate for you. It would be nice (not to mention much more useful) for everyone to be able to participate in whatever topic you have going. -Original Message- From: Dennis Byrne [mailto:[EMAIL PROTECTED]

RE: need javascript syntax to loop through checkbox list from dataTable

2006-07-19 Thread Michael Heinen
Here is a function that counts selected checkboxes. Call it with checkSelection(yourform, 'foo'); function checkSelection(formname, fieldname){ var form = document.getElementById(formname); var selectedCounter=0; for (var i=0;iform.length;i++){ fldObj = form.elements[i]; if

AJAX4JSF + DataTable DetailStamp Facet

2006-07-19 Thread Adrien FOURES
Hello, Is it possible to use AJAX4JSF with DataTable DetailStamp's Facet. I don't want to reload all the page when a detail is opened. Thanks Adrien

Errors using schedule

2006-07-19 Thread davy wang
i am using schedule and when i insert many entries in to the schedule i always got the errors below who knows why? --- Caused by: java.lang.NullPointerException at

Tomahawk / Facelets

2006-07-19 Thread Marcus Schmidke
Hello All, I'm trying to use Tomahawk together with Facelets. I've installed the tomahawk-facelets.jar from Wiki into my WEB-INF/lib directory, and the simple things work well. But I've got a problem using Tomahawk components in Facelets components. I've created a taglib on my own containing

JSF and custom design

2006-07-19 Thread Cyrille37
Hello, I'm still looking the web to learn how to make a choice of Java technologies for a future WebApplication project. JSF is in spotlight... Well it seems good, but I cannont see how to manage the design aspect. Here are 2 of my needs : 1. Graphics designer should make pages with a

Re: JSF and custom design

2006-07-19 Thread ::SammyRulez::
facelets acts as a template engine. Designers can import facelets tld (provided from facelet site) in dreamweaver and have support for it. JSFToolbox do deisgn dreamwever style which is not a goot pattern 2006/7/19, Cyrille37 [EMAIL PROTECTED]: Hello, I'm still looking the web to learn

Displaying data from a map

2006-07-19 Thread Shibi Thomas
Hi I have a map called detailswith key as and values. i would like to retrieve the value in the keys. Currently this is how my code looks like: c:forEach items=#{sessionScope.request.details } var=entry tr td???/ td td#{entry}/ td /tr /c:forEach -- Kind Regards Shibi ThomasRom 12:21Do not be

JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Cyrille37
Hello, There are few projects around JSF that make me lost. I've to make a choice to start the study of a future project, it's time for me to select technologies. At first, I've to choice a Application Framework. Choices are Spring, Tapestry. Then a GUI Framework. Here is my problem, JSF is

Re: Displaying data from a map

2006-07-19 Thread Cosma Colanicchia
Maybe you could do like this: c:forEach items=#{sessionScope.request.details.entrySet} var=entry tr td#{entry.key}/td td#{entry.value}/ td /tr /c:forEach Cosma 2006/7/19, Shibi Thomas [EMAIL PROTECTED]: Hi I have a map called details with key as and values. i would like to retrieve the

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread ::SammyRulez::
my choices myfaces + tomahawk component: all the gui you need facelets: decouple design and component ajaxanywhere: add some exotic behaviour non breaking jsf cycle Application Framework... I really don't need them.. I sense that good design ad c couple of utility classes ca do anything you

Re: JSF/Spring integration - managed-property problem

2006-07-19 Thread Wolf Benz
Wow that sounds like a mess! -- Now that's a nice thing to say about someone else's code ;-) Re: the # at the end that just means your extensions filter is probably not binding the javascript properly. All links (generally) in JSF are just to # on the current page, then javascript traps the

[OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Bruno Aranda
From my personal experience is not that easy to find someone speaking easy in places like Spain or South America. I do know many cases of people not posting to the list due to the lack of ability to explain its particular problem. Many of them try with automatic translators, but the end message

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Cosma Colanicchia
They are not concurrents. MyFaces provides a JSF implementation (as the Sun RI does), while ADF Faces/Trinidad is a library of components with some added services. If you are talking about MyFaces Tomahawk , then yes, there is some overlap with Trinidad, but they are probably going to be merged

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Cyrille37
Cosma Colanicchia a écrit : They are not concurrents. MyFaces provides a JSF implementation (as the Sun RI does), while ADF Faces/Trinidad is a library of components with some added services. If you are talking about MyFaces Tomahawk , then yes, there is some overlap with Trinidad, but they are

RE: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Jesse Alexander \(KSFD 121\)
In the chat it is easy to split of the discussion for a foreign language speaker in a private channel... Lately all of the action is happening in the ##jsf channel (also MyFaces-stuff), therefor the #myfaces-channel is sometimes reused for foreign language discussions... Or should I say: the

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Cosma Colanicchia
Oracle donated the ADF Faces library to Apache, and here it has been renamed to Apache Trinidad to distinguish it from the original Oracle library. Somewhere you will still find the ADF Faces name because the refactoring is not yet complete. Note that develoment has been done and will continue

Re: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Cosma Colanicchia
2006/7/19, Jesse Alexander (KSFD 121) [EMAIL PROTECTED]: And there are often people around speaking exotic languages like German, Spanish, Italian and others. Are they exotic languages?? ;-) Cosma

RE: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Julian Ray
Our project started off using Suns Creator which is JSF-RI + a few additional components. We quickly found the MyFaces + Tomahawk provides a much better option and moved our entire project suite (6 apps) over to it. I purposfully stayed away from ADF when making a choice as it still belonged to

RE: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Jesse Alexander \(KSFD 121\)
ironic Ask George W. /ironic ;-) regards Alexander -Original Message- From: Cosma Colanicchia [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 19, 2006 12:41 PM To: MyFaces Discussion Subject: Re: [OT] Mailing list Support in other languages, was Re: question 2006/7/19,

Re: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Mario Ivankovits
ironic Ask George W. /ironic ironic2 But then you should add english to the list too /ironic2 Ciao, Mr. Anonymous

RE: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Julian Ray
Would that be English-English, US English or Bush-English? -Original Message- From: Mario Ivankovits [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 19, 2006 6:48 AM To: MyFaces Discussion Subject: Re: [OT] Mailing list Support in other languages, was Re: question ironic Ask

RE: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Jesse Alexander \(KSFD 121\)
ironic3 Well easy: *english (except bush-english) would be exotic... /ironic3 -Original Message- From: Julian Ray [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 19, 2006 12:57 PM To: 'MyFaces Discussion' Subject: RE: [OT] Mailing list Support in other languages, was Re: question

Antwort: Re: Tomahawk / Facelets

2006-07-19 Thread Marcus Schmidke
Yes ... I did. The Tag worked well when I had it within a h:column tag. But since the Tag generates a dynamic number of columns (then I used tds in the tag), I had a tdtd.../tdtd.../td/td in the generated html. The browser has had no problem, but I didn't like this kind of hack. So I tried to use

RE: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Frank Russo
The only input I'd like to add is that if you'd like to use any of the 1.2 features, then the Sun RI is your only option for now. MyFaces is working on a 1.2 impl, but not sure when that will be complete. Maybe one of the devs can give some insight. Either way, the Tomahawk components work

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Cyrille37
Frank Russo a écrit : The only input I'd like to add is that if you'd like to use any of the 1.2 features, then the Sun RI is your only option for now. MyFaces is working on a 1.2 impl, but not sure when that will be complete. Maybe one of the devs can give some insight. Either way, the

RE: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Frank Russo
Yes, if you need any 1.2 features. If you're ok with 1.1, then MyFaces... Frank Russo Senior Developer FX Alliance, LLC -Original Message- From: Cyrille37 [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 19, 2006 7:34 AM To: MyFaces Discussion Subject: Re: JSF-RI, ADF, MyFaces,

t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
Hi guys,I have a dataTable that only filled after execute a method on my bean, this table uses sorting using this code:t:dataTable var=item value=#{bean.results}preserveDataModel=falserenderedIfEmpty=falsesortable=true sortColumn=#{bean.sortColumn}

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
The real problem is, i have columns that doesn´t have the header facet.2006/7/19, Rogerio Pereira [EMAIL PROTECTED]: Hi guys,I have a dataTable that only filled after execute a method on my bean, this table uses sorting using this code: t:dataTable var=item value=#{bean.results}

Re: Displaying data from a map

2006-07-19 Thread Shibi Thomas
hi Cosma I have tried what u suggested but without any fruit. I do no get anything displayed. Do u have any other suggestion ? On 7/19/06, Cosma Colanicchia [EMAIL PROTECTED] wrote: Maybe you could do like this:c:forEach items=#{sessionScope.request.details.entrySet} var=entry

Re: Displaying data from a map

2006-07-19 Thread Cosma Colanicchia
I haven't tried it myself so I can't help.. try to understand where is it failing. Cosma 2006/7/19, Shibi Thomas [EMAIL PROTECTED]: hi Cosma I have tried what u suggested but without any fruit. I do no get anything displayed. Do u have any other suggestion ? On 7/19/06, Cosma Colanicchia

Needed Example on File Upload

2006-07-19 Thread Chandra Sekhar
Hi, Image upload in Myfaces Examples giving a Null pointer Exception. Regards, Chandru.

Re: question

2006-07-19 Thread wdiaz
Hola CD. Soy nuevo en esto del Tobago, estoy estudiándolo para aprender a usarlo en el desarrollo de software web, pero tengo muchas dudas, y me gustaría saber si hay algún manual o tutorial donde expliquen mas a fondo (que en el javadoc que trae) cada componente, las precedencias entre

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Catalin Kormos
Yeah, it needs the header facet to be there, so looks like a bug. Could you open a Jira issue for this? Thanks,CatalinRogerio Pereira [EMAIL PROTECTED] wrote: The real problem is, i have columns that doesn�t have the header facet.2006/7/19, Rogerio Pereira [EMAIL PROTECTED]: Hi guys,I have a

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
Now i could load and fill the dataTable, but when i click in sort links nothing happens, i need set preserveDataModel=true in order to get sorting working?2006/7/19, Catalin Kormos [EMAIL PROTECTED]:Yeah, it needs the header facet to be there, so looks like a bug. Could you open a Jira issue for

Wrap actionListener methods

2006-07-19 Thread Hubert Rabago
Is there a way to wrap all calls to methods called by h:something actionListener=/ attributes? Something like ActionListener.processAction(ActionEvent) does for h:something action=/ methods? thanks, Hubert

validation method problem

2006-07-19 Thread array
I have an input field on my form and I would like to validate the entered value. I have defined a validator in the JSF configuration file and bound it to the field with a ?validator? attribute. If I fill in some value in the field and execute the action, the myfaces container invokes my

Re: validation method problem

2006-07-19 Thread Cosma Colanicchia
I think this is the normal behaviour. Required validation is handled in a special way in JSF.. if the field has to be required, you should use the required attribute, and AFAIK there's now way to plug-in a custom required logic. Cosma 2006/7/19, array [EMAIL PROTECTED]: I have an input field

Re: validation method problem

2006-07-19 Thread Gilles DEMARTY
perfectly normal behavior. The validators are triggered if a non-null value is provided. If this you want to not allow null value, add a required=true on your input component. (then null will then raise an error, but not call your validator)/ 2006/7/19, array [EMAIL PROTECTED]: I have an

Re: validation method problem

2006-07-19 Thread array
thanks for quick answer! I would like to perform some operations during the validation. Furthermore I would like to render an internalized error message. However the built-in ?required? validator uses the field id in his error message. How can I achieve these two requirements if I can?t invoke

Re: validation method problem

2006-07-19 Thread Kapil Kataria
Hi I need to create an application Using My Faces (JSF) and spring I am haven;t created any base framework using these technologies.If any one have some application working on these technologies.Please mail me Framework documentation it will help me to design a new framework.Please mail me

Re: validation method problem

2006-07-19 Thread Romain PELISSE
You can easily replace the default message by adding the following file to your webapp : /javax/faces/Messages_XX.properties then overload the message which to change : # standard messages (Spec. 2.5.1.4) javax.faces.component.UIInput.REQUIRED = validation Error

Need Help in Creating a Design Framework with JSF and Spring

2006-07-19 Thread Kapil Kataria
Hi I need to create an application Using My Faces (JSF) and spring I am haven;t created any base framework using these technologies. If any one have some application working on these technologies.Please mail me Framework documentation it will help me to design a new framework. Please mail

Re: validation method problem

2006-07-19 Thread Cosma Colanicchia
2006/7/19, array [EMAIL PROTECTED]: thanks for quick answer! I would like to perform some operations during the validation. Furthermore I would like to render an internalized error message. However the built-in ?required? validator uses the field id in his error message. How can I achieve

Execptions with SortableDataModel

2006-07-19 Thread Rogerio Pereira
I´m trying to implement sorting feature in my dataTable like we have in wiki entry:http://wiki.apache.org/myfaces/Working_with_auto_sortable_tables at subtopic Enable auto sort by columns, but when i fill my from my action method and the reload the page i get this

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Catalin Kormos
You don't need preserveDataModel="true" to make the auto sorting work. What you could do is set the sort properties manualy for each column, maybe the dataTable wasn't enable to determine them right.Rogerio Pereira [EMAIL PROTECTED] wrote: Now i could load and fill the dataTable, but when i click

RE: JSF and custom design

2006-07-19 Thread Ian Hlavats
Hi Cyrille, You mentioned you are looking for JSF support in Dreamweaver. Did you try JSFToolbox? If so, did you find any issues with the tool? We are always looking for feedback from users on how to improve the software. Ian JSFToolbox Team -Original Message- From: Cyrille37

RE: JSF and custom design

2006-07-19 Thread Ian Hlavats
Hello, We are developing a Facelets extension for Dreamweaver. It should be available soon. Ian JSFToolbox Team -Original Message- From: ::SammyRulez:: [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 19, 2006 4:45 AM To: MyFaces Discussion Subject: Re: JSF and custom design facelets

RE: add resource woes (list is growing)

2006-07-19 Thread Julian Ray
An update on this. After doing a comparison of changes between the dev with the just-compiled myfaces 1.1.5 and my last working version (8 days ago) I found that I have somehow missed copying the new build for myfaces.impl snapshot. When I copied the impl everything started to work fine. --

Facelets Layout / Command Button Issue

2006-07-19 Thread Tom Innes
I apologize, if this is the correct group for my question. I am trying to create a facelets layout hierarchy for a crud based application I am building in JSF. I have a proto type working fine in JSF and now I want to use facelets to standardize the layouts before we begin the actual

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
Now i have only this exception:java.lang.ClassCastException: org.apache.myfaces.component.html.ext.SortableModel at org.apache.myfaces.component.html.ext.HtmlDataTable.updateModelFromPreservedDataModel(HtmlDataTable.java :399) at

Problems with latest snapshot

2006-07-19 Thread Matthias Fischer
Hi, I copied the config for the extensionFilter from the sandbox examples of the latest snapshot and copied the file fisheye.jsp into my project. However I get the following exception when I call the page. Any help is appreciated: 2006-07-19 18:12:42 http-8080-Processor24 ERROR -

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Catalin Kormos
Ok, so you did set preserveDataModel to true after all, right? i can't imagine this happening if you set it to false. Rogerio Pereira [EMAIL PROTECTED] wrote: Now i have only this exception:java.lang.ClassCastException: org.apache.myfaces.component.html.ext.SortableModel at

RE: Facelets Layout / Command Button Issue

2006-07-19 Thread David Friedman
Tom, I think you need to review the Facelets Guidebook: https://facelets.dev.java.net/nonav/docs/dev/docbook.html#template-composition ui:composition removes everything from the page except for what is inside your tags. That means you LOST your f:view and h:form tags and that seems to

Re: future of Tomahawk treetable

2006-07-19 Thread Matthias Wessendorf
Since Trinidad has a *tree table* that might be useful for you -Matthias On 7/18/06, Martin Marinschek [EMAIL PROTECTED] wrote: Well, the developer who worked on it in the beginning seems to have abandoned it - so if there is no one taking his place, it will remain in the current state. I

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Matthias Wessendorf
Yes, Oracle donated parts of the ADF Faces codebase to the Apache Software Foundation. Parts means, that not all stuff has been donated. Stuff like Telnet or IM support (like [1]) is still named ADF Faces. That code, which has been donated is currently named Apache Trinidad Podling and is

[Tobago] - how to update sheet display data without losing sort

2006-07-19 Thread John
I have a sheet that displays data and I select and delete various rows. Right now I'm grabbing all new data from the DB after deleting a row and it repopulates the sheet. When I do this the sorting on the columns is lost. I would like a finer granularity, that would just close up the holes

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Cosma Colanicchia
2006/7/19, Matthias Wessendorf [EMAIL PROTECTED]: But to comeback to your problem, what to use My suggestion is: MyFaces 1.1.4 (will be out soon ;)) as Runtime Trinidad for the component set Facelets as View instead of JSP. This is exactly what we will be using for next projects, with a

Re: JSF-RI, ADF, MyFaces, Facelets. I'm lost.

2006-07-19 Thread Matthias Wessendorf
sorry, I forgot to mention Shale. In MyFaces 1.2 we started to use Shale for testing In Trinidad as well. ;) so my suggestion needs a and shale :) On 7/19/06, Cosma Colanicchia [EMAIL PROTECTED] wrote: 2006/7/19, Matthias Wessendorf [EMAIL PROTECTED]: But to comeback to your problem, what to

Fwd: Tomahawk 134

2006-07-19 Thread Martin Marinschek
-- Forwarded message -- From: Thien Pham [EMAIL PROTECTED] Date: Jul 19, 2006 1:31 AM Subject: RE: Tomahawk 134 To: [EMAIL PROTECTED] Okay, this may be a silly question, but how would one use the scope tag? It's not defined in TLD, and no documentation for it whatsoever. Any

Re: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Matthias Wessendorf
I am not against other languages... but... well that's not the common world language... and we should address that. spanish list? There is the problem of a split... :) can you bring that up to the [EMAIL PROTECTED] list? thanks, matt On 7/19/06, Bruno Aranda [EMAIL PROTECTED] wrote: From my

Re: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Matthias Wessendorf
IRC is interesting for getting people up to speed. But IRC is not the tool that should be used for *technical decission* in MyFaces. Same is true for Google Talk and other stuff. B/c where to look at the archives? It would be interesting to *post* the IRC chat to this (user) list. -Matthias On

Re: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Cagatay Civici
The log is here;http://uwyn.com/droneCheck out the ##jsf link.myfaces chat room is not logged.CagatayOn 7/19/06, Matthias Wessendorf [EMAIL PROTECTED] wrote: IRC is interesting for getting people up to speed. But IRC is not thetool that should be used for *technical decission* in MyFaces. Same

Conditional working for dynamic components

2006-07-19 Thread Stefan Neumann
Hi all, I have a profile structure editor, where I can choose different Values and add them to a list. Each property of such a profile can have different datatypes like String, Address(contains street, city, zip code), CreditCard (owner, number ...) and so on. After this profile structure is

Re: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Matthias Wessendorf
On 7/19/06, Cagatay Civici [EMAIL PROTECTED] wrote: The log is here; http://uwyn.com/drone Check out the ##jsf link. myfaces chat room is not logged. that JSF thing I don't care about, to be honest. but the myfaces one... it is a no no to make technical decissions there. -Matt Cagatay

RE: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Jesse Alexander \(KSFD 121\)
when we solve problems there I usually recommend to write interesting points to the wiki... or to the mailing list... on the ##jsf list we often discuss solutions in a implementation agnostic way... and if someone wants to discuss something with the sun people directly it's the place to be...

about a new contribution

2006-07-19 Thread Rogerio Pereira
I would like know if a commiter can take a look on this jira issue:https://issues.apache.org/jira/browse/TOMAHAWK-549and tell me if can be included on sandbox. -- Yours truly (Atenciosamente),Rogério

Re: about a new contribution

2006-07-19 Thread Mario Ivankovits
Hi! I would like know if a commiter can take a look on this jira issue: https://issues.apache.org/jira/browse/TOMAHAWK-549 and tell me if can be included on sandbox. Unhappily I think the upcoming client side validation and converter stuff we plan to add to tomahawk will supersede your

Re: about a new contribution

2006-07-19 Thread Cagatay Civici
Hi,Although the component looks very useful, it leads to an overlap.As Mario mentioned the generic approach we are going to add for client side validation-conversion already covers these kinds of requirements. Instead of new components and new tags, the mechanism will be enabled on the current

Re: about a new contribution

2006-07-19 Thread Rogerio Pereira
Ok, i'll close this issue. 2006/7/19, Cagatay Civici [EMAIL PROTECTED]: Hi,Although the component looks very useful, it leads to an overlap.As Mario mentioned the generic approach we are going to add for client side validation-conversion already covers these kinds of requirements. Instead of new

problem with h:inputText/ and f:converter converterId=javax.faces.Integer/

2006-07-19 Thread Rogerio Pereira
I have a inputText and a converter attached to this inputText, when my inputText looses the focus the form is submited and a ValueChangeEvent is called, i load an entity using the inputText value as entity ID and then i set the form field values with

Re: [OT] Mailing list Support in other languages, was Re: question

2006-07-19 Thread Matthias Wessendorf
I am not against IRC, but it's sorta pain in the ass, to get that information to the people :) Recommend to write wiki/mail is a nice thing. great. but they need to do that :) ##jsf is more RI/Spec releated than that #myfaces list ;) -Matthias On 7/19/06, Jesse Alexander (KSFD 121) [EMAIL

t:validateRegExpr

2006-07-19 Thread Jeff Bischoff
In the t:validateRegExpr tag's 'message' attribute: is there any kind of wildcards that may be used? (i.e. to display the id of the parent component being validated) This tag is extremely useful, thanks for the contribution Matthias. By the way, I noticed in the source that you wrap all

MyFaces Tomahawk ignores checkbox in dataList on first submission

2006-07-19 Thread Wally Hartshorn
We're using MyFaces with Tomahawk and are seeing some strange behavior that appears to be related to t:dataList and certain types of form elements. Suppose you have a form with code like this: ... h:selectBooleanCheckbox value=#{myBean.boxNotInDataList}/ ... t:dataList

RE: Facelets Layout / Command Button Issue

2006-07-19 Thread Tom Innes
Thanks for the advice David. I have tried the f:view / h:form on main page inside the ui:composition tag and outside the ui:composition tag and I basically get the same error that the command buttons must be inside an h:form. I have tried using an ui:insert on the main page with the

Re: t:validateRegExpr

2006-07-19 Thread Matthias Wessendorf
here is a small docu on that tag http://myfaces.apache.org/tomahawk/validateRegExpr.html On 7/19/06, Jeff Bischoff [EMAIL PROTECTED] wrote: In the t:validateRegExpr tag's 'message' attribute: is there any kind of wildcards that may be used? (i.e. to display the id of the parent component

Re: about a new contribution

2006-07-19 Thread Rogerio Pereira
I would like help on this effort.2006/7/19, Rogerio Pereira [EMAIL PROTECTED]: Ok, i'll close this issue. 2006/7/19, Cagatay Civici [EMAIL PROTECTED] : Hi,Although the component looks very useful, it leads to an overlap.As Mario mentioned the generic approach we are going to add for client side