Way to prevent further validations in the listener?

2010-03-15 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. I have a phase listener and was wondering if there is a way I can prevent validations from happening if certain conditions occur. For example, if I reach the branch with the comment ... public void beforePhase(final PhaseEvent

Re: Way to prevent further validations in the listener?

2010-03-15 Thread laredotornado
these are the best solutions to your problem in MyFaces 1.1. In MyFaces 2.0 the attribute disabled was added to f:converter. This would perfectly fit you in this scenario, but unfortunately this is not available in 1.1. Hope this helps! Regards, Jakob 2010/3/15 laredotornado

Re: Way to prevent further validations in the listener?

2010-03-15 Thread laredotornado
, your submitted values are not applied to your managed beans, because UPDATE_MODEL is also not invoked. But this is anyway the expected JSF behavior if a validation fails. Regards, Jakob 2010/3/15 laredotornado laredotorn...@gmail.com Skipping the entire validation phase would work

Re: Help with regular expression

2010-03-02 Thread laredotornado
.) - Dave Richard Yee-3 wrote: Use a separate validator for length Richard Sent from my iPhone On Feb 26, 2010, at 9:29 AM, laredotornado laredotorn...@gmail.com wrote: Hi, I'm using MyFaces 1.1.5 and Tomahawk 1.1.7. I am using a regexp to validate a text field and I

Help with regular expression

2010-02-26 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 and Tomahawk 1.1.7. I am using a regexp to validate a text field and I was wondering how do I rewrite/add to it to indicate that the total amount of characters should be between 1 and 320? Here is what I have now ... t:validateRegExpr

How do I specify an INVALID_detail for s:convertNumber ?

2010-02-23 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. I have this inpur ... h:inputText id=perDriverFinancialAssistanceMaximum required=true value=#{FinancialAssistanceVariablesController.financialAidLimit.perLeaseMax} f:attribute name=invalidMsg

How to elegantly replace line breaks with BR tag?

2010-02-22 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7 (Java 1.5, Resin, 3.0.19). Is there a way in JSF where I can replace the \n (chr(13) carriage return character) with the BR/ tag in my outputText block? Right now I have t:outputText value=#{currentRow.result} / Thanks, - Dave -- View this

Re: How to elegantly replace line breaks with BR tag?

2010-02-22 Thread laredotornado
/ in the return value of method. Then you have to change your t:outputText component to: t:outputText value=#{currentRow.resultWithLineBreaks} escape=false / Regards, Jakob 2010/2/22 laredotornado laredotorn...@gmail.com Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7 (Java 1.5, Resin, 3.0.19

Re: How to elegantly replace line breaks with BR tag?

2010-02-22 Thread laredotornado
struberg wrote: why not use ul and li elements and later format your output via CSS? LieGrue, strub --- laredotornado laredotorn...@gmail.com schrieb am Mo, 22.2.2010: Von: laredotornado laredotorn...@gmail.com Betreff: Re: How to elegantly replace line breaks with BR tag? An: users

Re: How to elegantly replace line breaks with BR tag?

2010-02-22 Thread laredotornado
suggested solution from before and manually escape HTML entities! Or you know, you could use the HTML pre tag. Regards, Jakob 2010/2/22 laredotornado laredotorn...@gmail.com I am printing back text the user entered so there is no guarantee that they will enter it in a particular format

Re: How to elegantly replace line breaks with BR tag?

2010-02-22 Thread laredotornado
put into a single table cell? - Dave Jakob Korherr wrote: h:outputText escape=false value=pre / t:outputText id=vehicleInfo value=#{currentRow.result}/ h:outputText escape=false value=/pre/ Regards, Jakob 2010/2/22 laredotornado laredotorn...@gmail.com Thanks for brainstorming

Trouble with commandLink POSTing a form

2010-02-18 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. Within my dataTable, I want a link in each row to submit a form. So I have ... t:column f:facet name=header h:commandLink actionListener=#{TamperingReportController.sortDataList} onclick=processing(this);

Possible to distinguish dates that don't exist from badly formatted ones?

2010-02-08 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. I have this date input field on my JSF page ... h:inputText id=Start_Date size=10 maxlength=10 value=#{InvoicingReportController.startDate} required=true validator=#{InvoicingReportController.validateDate}

Re: Help figuring out why my error message is not displaying

2010-02-03 Thread laredotornado
? regards Michael Am 02.02.2010 21:23, schrieb laredotornado: Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. I have verified in my controller that this method is being called with non-empty parameters ... protected void addErrorMessage(final String inputId, final String errMsg

Re: Help figuring out why my error message is not displaying

2010-02-03 Thread laredotornado
stars - Dave Michael Kurz wrote: Do you have any redirects in between? -- Michael Am 03.02.2010 15:37, schrieb laredotornado: We have one form on the JSF page. When we click the Submit button, that action links to a method in a controller. In that controller, if no results

Help figuring out why my error message is not displaying

2010-02-02 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. I have verified in my controller that this method is being called with non-empty parameters ... protected void addErrorMessage(final String inputId, final String errMsg) { final FacesMessage message = new

Re: Help figuring out why my error message is not displaying

2010-02-02 Thread laredotornado
specify null or a specific client id in addMessage(). On Tue, Feb 2, 2010 at 3:23 PM, laredotornado laredotorn...@gmail.com wrote: Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7.  I have verified in my controller that this method is being called with non-empty parameters

How do I apply a class to only one footer cell?

2010-01-29 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. How can I apply a class to only a particular cell the footer row of a dataTable? I tried this ... t:column f:facet name=header t:outputText value=Sub-Vendor/ /f:facet

Re: How do I apply a class to only one footer cell?

2010-01-29 Thread laredotornado
Sweet! 5 stars - Jakob Korherr wrote: Hi, You can use the attribute footerstyleClass of t:column. Regards, Jakob 2010/1/29 laredotornado laredotorn...@gmail.com Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. How can I apply a class to only a particular cell the footer

Re: Is it possible to do this with dataTables?

2010-01-28 Thread laredotornado
2010/1/28 laredotornado laredotorn...@gmail.com Hi, I'm trying your suggestion but nothing is rendering. I have this ... f:facet name=detailStamp t:outputText value=test test test /t:outputText

Re: Is it possible to do this with dataTables?

2010-01-28 Thread laredotornado
I have figured out my problem, which was that the feature described by Vinaya is only available in Tomahawk versions 1.1.7 and above and I was using 1.1.6. - Dave laredotornado wrote: Is the detail row always hidden by default? Is there a way to make the default displayed? Thanks

Is it possible to do this with dataTables?

2010-01-28 Thread laredotornado
Hi, We're using Tomahawk 1.1.6 with MyFaces 1.1.5. We want to use a t:dataTable to display our data, but there is one fly in the ointment. We have 5 columns of data, but after each row of data, we wish to display another row that spans the five columns. Is it possible to do this with JSF's

RE: Is it possible to do this with dataTables?

2010-01-28 Thread laredotornado
f:facet name=detailStamp t:panelGrid id=soMpn1 columns=1 width=100% test /t:panelGrid hr / /t:panelGrid /f:facet Vinaya -Original Message- From: laredotornado [mailto:laredotorn...@gmail.com] Sent: Thursday, January 28, 2010 3:55 PM To: users@myfaces.apache.org

Re: How do I change the value of a selectOneMenu on the fly

2009-12-17 Thread laredotornado
Could you show the method of the Javascript submit() function that you are talking about? I'm having a hard time imagining how what you list is different than submitting the form. Thanks, - Dave Julián Osorio Amaya EuphoriaIT wrote: laredotornado escribió: Thanks, Julian. I have

Re: How do I change the value of a selectOneMenu on the fly

2009-12-17 Thread laredotornado
(to re-populate another select menu) but I DON'T want to do validation. Is there any way to skip the validation phase when the only reason I want to reload the page is to re-populate the selectOneMenu? Thanks, - Dave Julián Osorio Amaya EuphoriaIT wrote: laredotornado escribió: Could you show

How do I change the value of a selectOneMenu on the fly

2009-12-16 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 and Tomahawk 1.1.9. I have this selectOneMenu ... h:selectOneMenu required=true validator=#{historicalTour.validateTime} styleClass=hourMenu id=historicalTour1st_Preference_Hour value=#{historicalTour.prefs[0].time}

Re: How do I change the value of a selectOneMenu on the fly

2009-12-16 Thread laredotornado
, and not prompt validation? Is it as simple as this.form.submit();? Thanks, - Dave Julián Osorio Amaya EuphoriaIT wrote: laredotornado escribió: Hi, I'm using MyFaces 1.1.6 and Tomahawk 1.1.9. I have this selectOneMenu ... h:selectOneMenu required=true validator

Why is t:selectOneRadio ignoring style, styleClass, and disabledClass?

2009-12-09 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 with Tomahawk 1.1.9. I have this element on my page ... t:selectOneRadio required=true validator=#{domeTour.validateSpecialNeeds} style=background-color:blue; styleClass=specialNeedsRadio

Trouble creating a Cancel button

2009-12-03 Thread laredotornado
Hi, I'm using MyFaces 1.1.6. I have this commandButton on my page, within a form h:commandButton id=cancelButton value=Cancel action=#{myController.cancelTourRequests} / I would like that if a user clicks this button, they are automatically redirected to another

Any way to customize this validate number message?

2009-12-02 Thread laredotornado
Hi, I'm using MyFaces 1.1.6. I have this ... h:inputText id=domeTourNumber_of_Adults value=#{domeTour.numAdults} required=false size=60

Re: AW: Any way to customize this validate number message?

2009-12-02 Thread laredotornado
-Ursprüngliche Nachricht- Von: laredotornado [mailto:laredotorn...@gmail.com] Gesendet: Mittwoch, 2. Dezember 2009 18:10 An: users@myfaces.apache.org Betreff: Any way to customize this validate number message? Hi, I'm using MyFaces 1.1.6. I have

Re: AW: AW: Any way to customize this validate number message?

2009-12-02 Thread laredotornado
for us. Cheers Rene -Ursprüngliche Nachricht- Von: laredotornado [mailto:laredotorn...@gmail.com] Gesendet: Mittwoch, 2. Dezember 2009 19:10 An: users@myfaces.apache.org Betreff: Re: AW: Any way to customize this validate number message? Hi Rene, I changed the input

Possible to force bean to load into session at session start up?

2009-11-25 Thread laredotornado
Hi, I'm using MyFaces 1.1.6. I have this declaration in my faces-config.xml file ... managed-bean managed-bean-nameemailController/managed-bean-name managed-bean-class myco.util.jsf.controller.EmailController /managed-bean-class

Re: AW: Possible to force bean to load into session at session start up?

2009-11-25 Thread laredotornado
(eg. in a scheduled background process). Cheers Rene -Ursprüngliche Nachricht- Von: laredotornado [mailto:laredotorn...@gmail.com] Gesendet: Mittwoch, 25. November 2009 17:05 An: users@myfaces.apache.org Betreff: Possible to force bean to load into session at session start up

RE: AW: Possible to force bean to load into session at session start up?

2009-11-25 Thread laredotornado
the same method (resolveVariable). Matt Rossner Prestataire - Société OnePoint Technology +33 (1) 41 24 62 66 -Original Message- From: laredotornado [mailto:laredotorn...@gmail.com] Sent: mercredi 25 novembre 2009 17:22 To: users@myfaces.apache.org Subject: Re

How do you access public static final values in your JSF app?

2009-11-24 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 and Tomahawk 1.1.9. I have a public static final int constant in a certain class, and I would like to be able to access that value in my JSF page using JSF code. I was curious what mechanisms you sue to do that. The only informative article I found on the subject

How do I validate a group of fields?

2009-11-23 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 with Tomahawk 1.1.9. I have 3 text fields, each representing a date string, on my JSF page. I want to validate that each is unique. Right now, I have this logic in my controller, but I would like the errors to display along side other validation errors in my page.

Setting backing bean for radio buttons?

2009-11-20 Thread laredotornado
Hi, I'm using Tomahawk 1.1.9 for JBoss 5.1. How are you supposed to set the backing bean value for a set of radio buttons? I have this ... t:selectOneRadio id=domeTourSpecialNeeds value=#{domeTour.specialNeeds} layout=spread

Re: Does the validation life cycle get logged anywhere?

2009-11-20 Thread laredotornado
is sufficient to identify the problem. I don't see any logging for UIInput, but you can set a breakpoint at processValidators() if neither of the above help. On Thu, Nov 19, 2009 at 12:04 PM, laredotornado laredotorn...@gmail.com wrote: Hi, I'm using MyFaces 1.1.6 with JBoss 5.1

Does the validation life cycle get logged anywhere?

2009-11-19 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 with JBoss 5.1. Is there somewhere that keeps a record of calling a particular validator method for a component? I'm asking because I have this code ... h:selectOneMenu validator=#{domeTour.validateValueNotEmpty} styleClass=hourMenu

Why is t:checkbox ignoring my id attribute?

2009-11-18 Thread laredotornado
Hi, Im using Tomahawk 1.1.9. I am trying to assign unique ids to my checkboxes that are part of a t:selectManyCheckbox list. I have t:selectManyCheckbox id=tourSelection layout=spread forceId=true value=#{capitolToursController.tourSelections}

RE: Only want to validate a text field if checkbox is checked ... how?

2009-11-18 Thread laredotornado
) An f:param can be used to send the enable / disable validation flag. Thank you, Radhesh -Original Message- From: laredotornado [mailto:laredotorn...@gmail.com] Sent: Tuesday, November 17, 2009 11:27 PM To: users@myfaces.apache.org Subject: Only want to validate a text field if checkbox

Only want to validate a text field if checkbox is checked ... how?

2009-11-17 Thread laredotornado
Hi, I'm using MyFaces 1.2.4, Tomahawk 1.1.9. How do I tell JSF that I only want to apply a validator to a text field if a checkbox on the page is checked? Right now I have this text field ... h:inputText id=domeTourNumAdults value=#{domeTour.numAdults}

Re: Only want to validate a text field if checkbox is checked ... how?

2009-11-17 Thread laredotornado
You might also be able to use pieces of the OptionalValidationFramework. http://wiki.apache.org/myfaces/OptionalValidationFramework On Tue, Nov 17, 2009 at 12:57 PM, laredotornado laredotorn...@gmail.com wrote: Hi, I'm using MyFaces 1.2.4, Tomahawk 1.1.9.  How do I tell JSF that I

Validating a number range

2009-11-16 Thread laredotornado
Hi, I'm using MyFaces 1.2 and Tomahawk 1.1.9. For a particular text field with id=numPeople, I'm trying to validate that the value entered is between 1 and 30 . How do I do that? Thanks, - Dave -- View this message in context:

t:inputCalendar not working with attribute renderAsPopup=true

2009-11-16 Thread laredotornado
Hi, I'm using Tomahawk 1.1.9 with JBoss 5.1 (Java 1.6) on a Mac 10.5.6. If I try and output a t:inputCalendar element with the attribute 'renderAsPopup=true', like below ... t:inputCalendar id=domeTourPref3 size=14

A telephone tag?

2009-11-13 Thread laredotornado
Hi, I'm using MyFaces 1.1.9. Is there a pre-built tag somewhere that can validate a US telephone number field of the form XXX-XXX- where X is a number? This seems like something that would have been done many times before. Thanks, - Dave -- View this message in context:

Re: A telephone tag?

2009-11-13 Thread laredotornado
the wheel. Thanks, - Dave Anton Gavazuk wrote: Myfaces Common RegExp validator will validate everything what you want or you can even write your own. 2009/11/13 laredotornado laredotorn...@gmail.com Hi, I'm using MyFaces 1.1.9. Is there a pre-built tag somewhere that can validate

Re: A telephone tag?

2009-11-13 Thread laredotornado
wrote: http://wiki.apache.org/myfaces/Extensions/Validator/ http://myfaces.apache.org/commons12/myfaces-validators12/index.html 2009/11/13 laredotornado laredotorn...@gmail.com Could you provide some examples? I'm looking to create and validate some common fields, such as phone number

How do I initialize this property within the faces-config file?

2009-10-06 Thread laredotornado
Hi, I'm using Resin 3.0.19 with MyFaces 1.1.5. I have this managed bean in my faces config file ... managed-bean managed-bean-nameemailController/managed-bean-name managed-bean-classmyco.util.jsf.controller.EmailController/managed-bean-class

Trouble converting String to boolean in JSF

2009-10-01 Thread laredotornado
Hi, I'm using MyFaces 1.1 for a web app deployed in Resin 3.0.19. This is the expression I have ... h:selectBooleanCheckbox value=#{emailController.fields.addToENews == 'true'} / but when I submit my page containing this, I get the error Parsed Expression of unsupported type for this

Re: Trouble converting String to boolean in JSF

2009-10-01 Thread laredotornado
submitting my form. Any other advice is appreciated, - Dave Anton Gavazuk wrote: h:selectBooleanCheckbox value=#{emailController.fields.addToENews ==true} / 2009/10/1 laredotornado laredotorn...@gmail.com Hi, I'm using MyFaces 1.1 for a web app deployed in Resin 3.0.19

Re: Trouble converting String to boolean in JSF

2009-10-01 Thread laredotornado
expression, and probably isn't allowed for a value in h:selectBooleanCheckbox. Why not use value=#{emailController.fields.addToENews}? This assumes that 'fields' has a getter for an addToENews property. On Thu, Oct 1, 2009 at 1:14 PM, laredotornado laredotorn...@gmail.com wrote: Thanks for your

t:calendar is giving me dates off by 1 day

2008-12-04 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.6 on WebLogic 9.2.2. I have this input field on my JSF page: t:inputCalendar id=dateFrom value=#{SearchBean.fromDate} helpText=mm-dd- renderAsPopup=true renderPopupButtonAsImage=true

Re: t:calendar is giving me dates off by 1 day

2008-12-04 Thread laredotornado
on converter On Thu, Dec 4, 2008 at 4:05 PM, laredotornado [EMAIL PROTECTED]wrote: Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.6 on WebLogic 9.2.2. I have this input field on my JSF page: t:inputCalendar id=dateFrom value=#{SearchBean.fromDate} helpText

Re: t:calendar is giving me dates off by 1 day

2008-12-04 Thread laredotornado
Thanks. Any idea what the string expression for US Mountain Time would be (e.g. Denver, CO)? - Dave Christian Poecher wrote: laredotornado wrote: but if I type a value like 10-10-2008 into my search box, what is actually logged is DEBUG 2008-12-04 09:04:17,270

Re: t:calendar is giving me dates off by 1 day

2008-12-04 Thread laredotornado
/ /h:outputText On 12/4/08, laredotornado [EMAIL PROTECTED] wrote: Thanks. Any idea what the string expression for US Mountain Time would be (e.g. Denver, CO)? - Dave Christian Poecher wrote: laredotornado wrote: but if I type a value like 10-10-2008 into my search

Re: MyFaces is inserting JS that's causing JS errors

2008-11-13 Thread laredotornado
? laredotornado wrote: Hi, I'm noticing this behavior on PC Firefox. I'm using MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2 On a page I have inputCalendar objects, and I notice this is getting added to the top of my page: script type=text/javascript src=/nps_history_gui/faces

Trouble upgrading MyFaces

2008-11-13 Thread laredotornado
Hi, I'm trying to upgrade my app from MyFaces 1.1.5 to 1.2.4 on Weblogic 9.2.2, but I'm having problems. I must have forgotten to upgrade a library, but I can't figure out which one. Now when I load my page, I get compilation errors Error - Failed to compile JSP /jsp/login.jsp

Re: Trouble upgrading MyFaces

2008-11-13 Thread laredotornado
unhelpful when I typed in converting to Facelets Richard Yee-3 wrote: Check the requirements for MyFaces 1.2.x. It requires an appserver that has JSP 2.1 and Servlet 2.5. Otherwise, you can use Facelets instead of .jsp files. -RIchard On Thu, Nov 13, 2008 at 7:57 AM, laredotornado [EMAIL

Re: Trouble upgrading MyFaces

2008-11-13 Thread laredotornado
online, 9.2.2 doesn't support JSP 2.1. Here is the location of Facelets: https://facelets.dev.java.net/ Is there any particular reason why you want to upgrade to MyFaces 1.2.5 instead of just going to 1.1.6? -Richard On Thu, Nov 13, 2008 at 9:41 AM, laredotornado [EMAIL PROTECTED] wrote

Problem with h:dataTable styling

2008-11-04 Thread laredotornado
Hi, I'm using MyFaces 1.1.5. Does anyone know how to make a dataTable's main header row class different from that of the cell's header rows? For example, if you look at the screen shot http://screencast.com/t/T7sN6r3B I want the Results 1-20 row to have a different class than the row with the

Problem occurred while serving the error page?

2008-10-31 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 on WebLogic 9.2.2. My app is throwing an error, but my error page is not displaying. The errorPage is generating this error ... Oct 31, 2008 12:47:33 PM MDT Error HTTP rhonti nps-supp-gui-ms-1 [ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default

Re: Problem occurred while serving the error page?

2008-10-31 Thread laredotornado
31, 2008 at 2:51 PM, laredotornado [EMAIL PROTECTED] wrote: Hi, I'm using MyFaces 1.1.6 on WebLogic 9.2.2. My app is throwing an error, but my error page is not displaying. The errorPage is generating this error ... Oct 31, 2008 12:47:33 PM MDT Error HTTP rhonti nps-supp-gui-ms-1

Trouble upgrading MyFaces

2008-10-30 Thread laredotornado
Hi, I'm trying to upgrade my MyFaces implementation from 1.1.6 to 1.2.4. I took out the old api and impl jars and replaced them with myfaces-impl-1.2.4.jar and myfaces-api-1.2.4.jar. I kept tomahawk-1.1.7.jar the same. Unfortunately, I'm now getting compilation errors. Below is a sample.

Re: Trouble upgrading MyFaces

2008-10-30 Thread laredotornado
1.2 requires java 1.5 or later, JSP 2.1, JSTL 1.2 and a Java Servlet 2.5 implementation -R On Thu, Oct 30, 2008 at 12:50 PM, laredotornado [EMAIL PROTECTED] wrote: Hi, I'm trying to upgrade my MyFaces implementation from 1.1.6 to 1.2.4. I took out the old api and impl jars

Re: Trouble upgrading MyFaces

2008-10-30 Thread laredotornado
to use Facelets if you are not using a servlet container that supports JSP 2.1 and Servlet 2.5. The facelet library is available from java.net. -R On Thu, Oct 30, 2008 at 1:10 PM, laredotornado [EMAIL PROTECTED] wrote: I didn't know this but I do have Java 1.5. I don't suppose

How to get my filter to execute after MyFaces?

2008-10-29 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2 (Solaris 9). I'm noticing that when I add our company's servlet filter into our app filter-mapping filter-nameSSOFilter/filter-name url-pattern/*/url-pattern /filter-mapping I get this error on visiting

Re: How to get my filter to execute after MyFaces?

2008-10-29 Thread laredotornado
one causes problems. - Dave Simon Kitching wrote: laredotornado schrieb: Hi, I'm using MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2 (Solaris 9). I'm noticing that when I add our company's servlet filter into our app filter-mapping filter-nameSSOFilter/filter-name

How to make MyFaces filter ignore .html files?

2008-10-29 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2 (Solaris 9). What do I need to do in my web.xml file so that the MyFaces filter is not run on .html files? Below is what I have for web.xml. Thanks for your help, - Dave =Begin web.xml===

Re: Trouble deploying MyFaces app

2008-10-17 Thread laredotornado
tried deploying without the managed property defined? On Thu, Oct 16, 2008 at 9:36 PM, laredotornado [EMAIL PROTECTED]wrote: Hi, I'm running MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2 (Solaris 9). I changed some things in my faces-config.xml file, and now my app fails to deploy

Re: Trouble deploying MyFaces app

2008-10-17 Thread laredotornado
if it thinks this is really valid xml (2) use the word and instead of , or amp;amp; (3) include the whole value block in ![CDATA[ .. ]] Regards, Simon laredotornado schrieb: Hi, Yes when I deploy without the managed property, the application deploys fine, but then functionally, my app

Re: Trouble deploying MyFaces app

2008-10-17 Thread laredotornado
The and keyword works. Thanks, - Dave Simon Kitching wrote: It's not the xml validator (as in schema/dtd validation) that would be the problem. Xml parsers simply refuse to process invalid xml. The word and should work in EL expressions. laredotornado schrieb: I agree

Trouble deploying MyFaces app

2008-10-16 Thread laredotornado
Hi, I'm running MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2 (Solaris 9). I changed some things in my faces-config.xml file, and now my app fails to deploy with the baffling error message below. I have also included my faces-config.xml file at the end of this message. I think the

How do I figure out what this means?

2008-10-13 Thread laredotornado
Hi, Im using MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2. Upon visiting my JSF page, I'm getting the error: Exception while calling encodeEnd on : {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/search_results.jsp][Class:

MyFaces is inserting JS that's causing JS errors

2008-10-08 Thread laredotornado
Hi, I'm noticing this behavior on PC Firefox. I'm using MyFaces 1.1.6 with Tomahawk 1.1.7 on WebLogic 9.2.2 On a page I have inputCalendar objects, and I notice this is getting added to the top of my page: script type=text/javascript

Why am I getting copmliation errors about tag not being closed?

2008-10-07 Thread laredotornado
Hi, I'm using MyFaces 1.1.6. My WebLogic 9.2.2 compiler is complaining about this code ... h:panelGrid id=featurePanel columns=2 f:facet name=header h:outputText value=Add Feature/

Re: Why am I getting copmliation errors about tag not being closed?

2008-10-07 Thread laredotornado
Oops, it's not h:penalGrid! My bad, - Dave laredotornado wrote: Hi, I'm using MyFaces 1.1.6. My WebLogic 9.2.2 compiler is complaining about this code ... h:panelGrid id=featurePanel columns=2 f:facet name=header

Re: panelGrid is eating my SPAN

2008-10-07 Thread laredotornado
which ensures that everything inside of it is sent to the client.. well.. verbatum. :) Scott laredotornado wrote: Hi, I'm using MyFaces 1.1.6. I'm trying to output a but this code. What is the JSF way to outupt this HTML. What I'm trying below is not rendering ''. - Dave

facet 'footer' already has a child associated ?

2008-10-06 Thread laredotornado
Hi, I'm using MyFaces 1.1.6, Tomahawk 1.1.7 on WebLogic 9.2.2. I want to display a row of command buttons in the footer of my dataTable. But I'm getting the error: facet 'footer' already has a child associated. current associated component id: dt1:_idJsp56 class:

Validating calendar input

2008-10-03 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 with Tomahawk 1.1.7 running on WebLogic 9.2.2 (JDK 1.5). I have this calendar component: t:inputCalendar id=dateFrom value=#{SearchBean.fromDate} helpText=mm-dd- renderAsPopup=true renderPopupButtonAsImage=true

ExtensionsFilter not correctly configured

2008-10-02 Thread laredotornado
Hi, I'm using a JSF framework with MyFaces 1.2.4 running on WebLogic 9.2.2. Upon visiting the first page of my application, I get the error below. I followed the link and cut and pasted the suggested text into my web.xml file (even further below), but I still get the same error. Any ideas

Where do I gete ExpressionFactory?

2008-10-01 Thread laredotornado
Hi, I'm writing a JSF application using MyFaces 1.2.4. I must have forgotten to download a JAR file somewhere, because when I startup my application, I get the error weblogic.application.ModuleException: at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:891)

Date picker?

2008-09-26 Thread laredotornado
Hi, I'm using MyFaces 1.2.4. On my JSF page, what is the easiest way of creating a way to select a date, preferably with select menus displaying the month, day, and year? Thanks, - Dave -- View this message in context: http://www.nabble.com/Date-picker--tp19694686p19694686.html Sent from the

Re: Date picker?

2008-09-26 Thread laredotornado
. - Dave Hazem Saleh-2 wrote: Use Tomahawk Calendar: http://mashups.s43.eatj.com/myfaces-example-simple/calendar.jsf On Fri, Sep 26, 2008 at 9:13 PM, laredotornado [EMAIL PROTECTED]wrote: Hi, I'm using MyFaces 1.2.4. On my JSF page, what is the easiest way of creating a way

Re: Global error page question

2008-09-12 Thread laredotornado
, Leonardo Uribe [EMAIL PROTECTED] wrote: On Thu, Sep 11, 2008 at 5:03 PM, laredotornado [EMAIL PROTECTED]wrote: Thanks for your reply. So am I reading that I should not be following the JSF instructions on the wiki page? Since I already embarked on that path, I'll ask another question

Global error page question

2008-09-11 Thread laredotornado
Hi, I'm trying to create a JSF error page to which 500 server errors are redirected. I thought I'd use the MyFaces wiki -- http://wiki.apache.org/myfaces/Handling_Server_Errors, but I have a couple of questions. The page above does not list what changes, if any need to be made to

Re: Global error page question

2008-09-11 Thread laredotornado
location/jsp/ErrorDisplay.jsf/location /error-page /web-app Thanks, - Dave Leonardo Uribe wrote: On Thu, Sep 11, 2008 at 4:27 PM, laredotornado [EMAIL PROTECTED]wrote: Hi, I'm trying to create a JSF error page to which 500 server errors are redirected. I thought I'd use