RE: Horizontal and Vertical scroll bar

2006-10-09 Thread L Frohman
Try: overflow-y: scroll instead of overflow: scroll From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, October 09, 2006 4:39 AMTo: users@myfaces.apache.orgSubject: Horizontal and Vertical scroll bar t:panelTabbedPane tabContentStyleClass="tabContent"

RE: JSF Color Picker

2006-10-09 Thread L Frohman
in adf faces (Trinidad) there is af:chooseColor From: Kelvin James [mailto:[EMAIL PROTECTED] Sent: Monday, October 09, 2006 4:17 AMTo: MyFaces DiscussionSubject: JSF Color Picker Hi Does anyone knows from where i can get JSF color Picker component. Or Does anyone have JSF color

RE: Body onload

2006-09-28 Thread L Frohman
! :) I think we will upgrade our myfaces now :) Thanks again, Regards, Remo -Original Message- From: L Frohman [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 28. September 2006 03:54 To: 'MyFaces Discussion' Subject: RE: Body onload resolved (I had some spare time). I added onload

RE: Body onload

2006-09-27 Thread L Frohman
I noticed the same problem. Why can't you just use body onload=... instead of t:documentBody -Original Message- From: Remo Liechti [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 27, 2006 12:14 AM To: MyFaces Discussion Subject: RE: Body onload Well, I don't have no idea how to

RE: can we set some request parameter using an action method ?

2006-09-27 Thread L Frohman
Look at: http://wiki.apache.org/myfaces/Parameters_In_EL_Functions Its for data inside el expressions, but you may be able to get this to work with action methods too. -Original Message- From: Legolas Woodland [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 27, 2006 9:32 AM To:

RE: Body onload

2006-09-27 Thread L Frohman
resolved (I had some spare time). I added onload, onunload, onresize and onkeypress to t:documentBody This change should appear in the nightly builds. Note - in general your requests won't get fixed this fast. -Original Message- From: Remo Liechti [mailto:[EMAIL PROTECTED] Sent:

RE: columns help...

2006-09-19 Thread L Frohman
You can use t:columns with t:datatable the value= attribute represents the data in the backing bean, this can be a List or DataModel, or even a ResultSet (not recommended). There is an example in the tomahawk simple examples in svn:

RE: Attribute 'for' is not defined

2006-09-14 Thread L Frohman
Why do you have h:outputLabel value=" " styleClass="rightDescription"/ without a for=""? Can't this just be h:outputText ... ? From: Feris Thia [mailto:[EMAIL PROTECTED] Sent: Thursday, September 14, 2006 8:20 AMTo: MyFaces DiscussionSubject: Attribute 'for' is not defined Dear All,I

data getting lost from form

2006-09-14 Thread L Frohman
It seems like the jsp page below should work.If the checkbox is checked and then submit is pressed, the input text box appears.But then anything entered in the input text is lost - the setter is never called.Can anyone tell me why? Something to do with timing of the component binding?

RE: data getting lost from form

2006-09-14 Thread L Frohman
- bean out of scope On 9/14/06, L Frohman [EMAIL PROTECTED] wrote: It seems like the jsp page below should work. If the checkbox is checked and then submit is pressed, the input text box appears. But then anything entered in the input text is lost - the setter is never called. Can anyone

RE: Two JSF apps in one web application

2006-08-28 Thread L Frohman
see: http://wiki.java.net/bin/view/Projects/FaceletsFAQ#How_do_I_use_Facelets_and_JSP_in (if you use prefix mapping) From: Mikhail Grushinskiy [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 7:04 AMTo: MyFaces DiscussionSubject: Two JSF apps in one web application We have 2 JSF

RE: Two JSF apps in one web application

2006-08-28 Thread L Frohman
] at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter (ExtensionsFilter.java:176) [java] at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)Any ideas? Your help is very appreciated.--MG On 8/28/06, L Frohman [EMAIL PROTECTED] wrote: see: http

RE: column and colspan broken

2006-08-25 Thread L Frohman
The colspan attribute was added within the last week, so it won't work unless you have a recent build. You can download the nightly builds from: http://people.apache.org/builds/myfaces/nightly/ There is an example in the myfaces-examples-simple project. See colspan.jsp. If you still have

RE: swalled exception

2006-08-16 Thread L Frohman
I have had a similar problem, where the code catches an exception, then if the logging level was set to debug, it logs the exception, then the exception was rethrown. Yes this was frustrating to solve, until I set my logging level to debug. It was obviously written this way for a reason, but I

a way to pass parameters in el expressions

2006-08-10 Thread L Frohman
I am sharing this for anyone who may find it useful. To pass a parameter to a method inside an el expression, extend the DummyMap class (below) and implement the get(Object obj) method to pass obj as a parameter to that method. As a trivial example, to pass a parameter to the changeToUpperCase()

RE: stupid h:messages question

2006-07-25 Thread L Frohman
Hi Wolf, try: ctx.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR,Test Summary,Test )); h:messages ... should go inside the form. you could put showSummary=true in the h:messages ... (if this isn't the default) you can put your logging level at debug to get alot more information

RE: How can I unsubscribe from this group??????

2006-07-21 Thread L Frohman
To remove your address from the list, send a message to: [EMAIL PROTECTED] De : Raziel Tabib [mailto:[EMAIL PROTECTED] Envoyé : vendredi 21 juillet 2006 11:47 À : users@myfaces.apache.org Objet : How can I unsubscribe from this group??

RE: Acegi authentication with several outcomes

2006-07-04 Thread L Frohman
Escribano, Ignacio wrote: Seems that you can achieve that requirement with a Filter and a simple redirect on a condition. To be more specific would need more details :) -Mensaje original- De: L Frohman [mailto:[EMAIL PROTECTED] Enviado el: viernes, 30 de junio de 2006 10:22 Para: 'MyFaces

RE: Acegi authentication with several outcomes

2006-06-30 Thread L Frohman
You would have to customize acegi, but since it is open source, it should possible. Extend some of the acegi classes to add the 3rd condition. You could download the source code and take a look to see if you think that would be an option for you. -Message d'origine- De : Martin Grotzke

RE: Design Type Question

2006-06-28 Thread L Frohman
Another wayto populate _javascript_ arrays with data froma jsfbacking bean. script language="_javascript_" varmyJavaScriptArray = ${sessionScope.myBackingBean.myValue}; /script where myBackingBean is the name of the backing bean, change sessionScope to requestScope if myBackingBean is

RE: How to displayi an images generated by a managed bean?

2006-06-28 Thread L Frohman
Look at: http://www.jroller.com/page/cagataycivici?entry=phaselistener_renders_an_ima ge_no there is also a chart creator: http://www.jroller.com/page/cagataycivici?entry=jsf_chart_creator Lance -Message d'origine- De : Paul Spencer [mailto:[EMAIL PROTECTED] Envoyé : jeudi 29 juin

RE: Something Simple

2006-06-22 Thread L Frohman
Take a look at http://jsftutorials.net/htmLib/ for a simple method of creating various html tags using jsf. Lance De: CD [mailto:[EMAIL PROTECTED] Envoyé: mercredi 21 juin 2006 22:41À: MyFaces DiscussionObjet: Re: Something Simple Troy, Another thought is to use components like

RE: Frameset in jsp page

2006-06-12 Thread L Frohman
I don't believe you can mix framesets and regular html content in the same Page, that is, you should only have frameset and frame tags in the Page, and the frames should reference other .html pages with the actual content. One trick I use is to do a view source on the web page to see if I can

RE: Frameset in jsp page

2006-06-12 Thread L Frohman
this in my page: f:view % FacesContext fc = FacesContext.getCurrentInstance(); // set locale for JSF framework usage fc.getViewRoot().setLocale(Application.getLanguage(fc)); % ? Thanks. Sophie -Message d'origine- De : L Frohman [mailto:[EMAIL PROTECTED

RE: Frameset in jsp page

2006-06-12 Thread L Frohman
/head frameset cols = 25%, 25%,* frame src =EF_InvitPsPanel.jsp / frame src =EF_InvitPsPanel.jsp / frame src =EF_InvitPsPanel.jsp / noframesYour browser does not support frames./noframes frameset /html -Message d'origine- De : L Frohman [mailto:[EMAIL PROTECTED] Envoyé : lundi 12

RE: Frameset in jsp page

2006-06-12 Thread L Frohman
/head frameset cols = 25%, 25%,* frame src =EF_InvitPsPanel.jsp / frame src =EF_InvitPsPanel.jsp / frame src =EF_InvitPsPanel.jsp / noframesYour browser does not support frames./noframes frameset /html -Message d'origine- De : L Frohman [mailto:[EMAIL PROTECTED] Envoyé : lundi 12

RE: How to disable logging?

2006-06-09 Thread L Frohman
You should have a log4j.properties file in your WEB-INF/classes (maybe somewhere else). Open the file, and you will see a bunch of lines like log4j.logger.org.apache.myfaces=debug The debug option gives the most messages (by far) info gives less, and error even less (only errors) Each

navigation rule

2006-06-06 Thread L Frohman
In the to-view-id tag in faces-config.xml navigation, myfaces always puts a / in front and adds .jsp at the end of any urls, if those are not already there. Is there a way to prevent this behaviour? I want to navigate to the acegi security filter, to-view-idj_acegi_security_check/to-view-id

RE: [jira] Commented: (TOMAHAWK-440) Add orientation parameter to NewspaperTable

2006-05-18 Thread L Frohman
), and HtmlTableRendererBase is in the shared code, it shouldn't reference tomahawk. So where should I put the constant for horizontal? -Original Message- From: L Frohman [mailto:[EMAIL PROTECTED] Sent: Thursday, May 18, 2006 2:19 PM To: 'Mike Kienenberger (JIRA)' Subject: RE: [jira

RE: [jira] Commented: (TOMAHAWK-440) Add orientation parameter to NewspaperTable

2006-05-18 Thread L Frohman
) Add orientation parameter to NewspaperTable On 5/18/06, L Frohman [EMAIL PROTECTED] wrote: quick question, I have the following line in HtmlTableRendererBase.java. boolean newspaperVerticalOrientation = !horizontal.equals(getNewspaperOrientation(component)); horizontal should be a constant

build with eclipse question

2006-05-13 Thread L Frohman
In the wiki: http://wiki.apache.org/myfaces/Eclipse_IDE under the section: Eclipse setup example I am following the steps and everything works up to the last step. the last step is: Continue importing the 11 myfaces projects (the myfaces sub-projects). I don't understand what is

svn problem

2006-05-11 Thread L Frohman
I can't get to the source repository with svn under eclipse (it used to work) It was the same yesterday. Is there a problem on the server, or has something changed? Thanks, Lance svn: PROPFIND of '/repos/asf/myfaces': could not connect to server (http://svn.apache.org) RA layer request

RE: Tomcat 5.5.16 problem

2006-05-11 Thread L Frohman
jsp-2.0.jar and commons-el.jar see: http://myfaces.apache.org/tomcat.html From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ken McArthurSent: Thursday, May 11, 2006 1:31 PMTo: MyFaces DiscussionSubject: Re: Tomcat 5.5.16 problem Try removing a couple of jar files from

switching hosts - new version of tomcat

2006-04-28 Thread L Frohman
I have a myfaces (and Spring and Hibernate) application working with Tomcat 5.0 and java 1.4, I switched servers, and the new server has Tomcat 5.5 and java 1.5, but on the new server, all the .faces pages appear with no output at all - "view source" shows a blank page. There are no error

RE: switching hosts - new version of tomcat

2006-04-28 Thread L Frohman
: switching hosts - new version of tomcat Try configuring tomcat's MIME types. Perhaps someone else here knows the exact file name - this escapes me now. Dennis Byrne -Original Message- From: L Frohman [mailto:[EMAIL PROTECTED] Sent: Friday, April 28, 2006 04:47 PM To: ''MyFaces Discussion

RE: switching hosts - new version of tomcat

2006-04-28 Thread L Frohman
was being received, just not being rendered. This is probably the answer ... http://myfaces.apache.org/tomcat.html Dennis Byrne -Original Message- From: L Frohman [mailto:[EMAIL PROTECTED] Sent: Friday, April 28, 2006 05:04 PM To: ''MyFaces Discussion'' Subject: RE: switching hosts - new

different regex validator error messages

2006-04-14 Thread L Frohman
Is there a way I can have different error messages for two different fields that use the tomahawk regex validator? h:inputText id=field1 value=#{myBean.field1} t:validateRegExpr pattern=x / /h:inputSecret error message=you have entered an invalid field1 h:inputText id=field2