Re: Composite components in myfaces 2.2.

2014-02-24 Thread Michael Kurz
-facelettaglibrary_2_0.xsd; namespacehttp://openxma.codehaus.org/xmajsf/namespace composite-library-namexmajsf/composite-library-name /facelet-taglib What am I doing wrong? 2014-02-14 17:52 GMT+01:00 Michael Kurz michi.k...@gmx.at: Hi, would be interesting how your composite component looks

Re: Composite component does not render

2014-02-14 Thread Michael Kurz
Find a new answer on StackOverflow. You have to set the parameter org.apache.myfaces.STRICT_JSF_2_ALLOW_SLASH_LIBRARY_NAME as Leo suggested, than it works. Best regards Michi Am 13.02.2014 17:55, schrieb Kito Mann: Hello Johannesburg, Your namespace is incorrect. It should be:

Re: Composite components in myfaces 2.2.

2014-02-14 Thread Michael Kurz
Hi, would be interesting how your composite component looks like (the basic structure) and how it is embedded in the page. Best regards Michi Am 13.02.2014 13:10, schrieb Johannes Murth: Hi! I just upgraded from 2.1 to 2.2 and have rendering problem because xml doctype and html tag are

Re: JSF / MyFaces 2.2

2014-01-18 Thread Michael Kurz
You can have a look at my blog http://jsflive.wordpress.com/. I wrote some articles about JSF 2.2 features. Regards Michael Am 16.01.2014 10:56, schrieb l.pe...@senat.fr: Dear all, what documents do you suggest to read to get an idea of what's new in JSF 2.2 and in our favourite JSF

Re: JSF 2.2 Exit Flow

2014-01-18 Thread Michael Kurz
Hi, as far as I know, this is currently not possible. JSF won't let you navigate to something that is not defined as a node in the current flow. I quickly talked to Ed Burns about this some time ago and he more or less confirmed that this is the case. Regards Michael Am 17.01.2014 02:10,

Re: composite-library-name and subfolders?

2013-04-26 Thread Michael Kurz
Hi, as far as I remember, the spec explicitly forbids slashes in the library name. Regards, Michi Am 25.04.2013 13:21, schrieb Thomas Andraschko: Hi, it works, thanks. Is this also defined/limited in the specs for the composite-library-name? I mean, if you use h:outputStylesheet/Script,

Re: Help : Eclipse doesn't recognize facelets components

2012-03-21 Thread Michael Kurz
You could try to install JBoss Tools, this normally makes working with Eclipse a bit easier. Regards Michael Am 21.03.2012 17:55, schrieb ayouB __: I still waiting for your replies and your suggestions, plese HELP ME

Re: [MyFaces 1.2] how to access managed bean from phaselistener?

2011-10-26 Thread Michael Kurz
Hi, I think that parameters set via ui:param are only available in the facelet they are set on. When using c:set in a template client you have to be careful. I would say that it only works if you use it inside ui:define. Nevertheless, I don't think it will solve your problem as it is probably

Re: [MyFaces 1.2] how to access managed bean from phaselistener?

2011-10-26 Thread Michael Kurz
. On Wed, Oct 26, 2011 at 11:15 AM, Michael Kurz michi.k...@gmx.at wrote: Hi, I think that parameters set via ui:param are only available in the facelet they are set on. When using c:set in a template client you have to be careful. I would say that it only works if you use it inside

Re: [CODI] typesafe navigation and bean initialization

2011-10-16 Thread Michael Kurz
Hi, the easiest solution for using view configs in h:link or h:button is a application scoped bean with getters for the config: @Named @ApplicationScoped public class ViewConfigProvider { public Class? extends ViewConfig getHome() { return Pages.Home.class; } } Then you can use them

Re: Bean Validation (JSR 303)

2010-09-27 Thread Michael Kurz
Do you have a bean validation implementation like Hibernate Validator on your classpath? regards Michael Am 27.09.2010 13:21, schrieb Matthias Niehoff: Hi, I'm trying to realize Bean Validation. I annotated my attributes and set javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL

Re: page lang\ encoding error after moving to myFaces from mojarra???

2010-08-26 Thread Michael Kurz
What happens exactly? Do you enter the hebrew characters in a h:inputTextarea, save them and re-display them in a h:outputText? If yes, please try to set escape=false on the h:outputText. This might be an escape problem. Michael Am 25.08.2010 22:24, schrieb Daniel_R: Thanks for the reply,

Re: [Trinidad] Web Site

2010-08-26 Thread Michael Kurz
No, there is no stable release of Trinidad 2.0 yet. 2.0-alpha-2 is the latest release afaik. Michael Am 26.08.2010 02:23, schrieb Javier Alcala: So, could you tell me please if there is a stable release for Trinidad 2.0 and the URL for download? 2010/8/25 Scott O'Bryandarkar...@gmail.com

Re: [Trinidad] Custom inputDate component

2010-08-13 Thread Michael Kurz
Hi Arnold, first of all: do you use Facelets or JSP? Because the tld file and the tag classes are only necessary for JSP whilst the taglib.xml file is necessary for Facelets. Normally you don't need both. Did you register your new component in the faces-config.xml? cheers Michael Am

Re: No saved view state could be found for the view identifier

2010-08-09 Thread Michael Kurz
Hi, I don't know if it solves the problem but an action method should normally return a String value. Simply return null to stay on the same page. regards Michael Am 09.08.2010 13:28, schrieb Roman: Hi. I have a very simple test application written using MyFaces 1.2.9 and RichFaces 3.3.3.

Re: No saved view state could be found for the view identifier

2010-08-09 Thread Michael Kurz
:21, schrieb Roman: Hi On Mon, 9 Aug 2010, Michael Kurz wrote: Hi, I don't know if it solves the problem but an action method should normally return a String value. Simply return null to stay on the same page. I have fixed that, thanks. The same exception is still always thrown. Roman

Re: No saved view state could be found for the view identifier

2010-08-09 Thread Michael Kurz
Would be interesting if anyone else has encountered this problem so far? Am 09.08.2010 18:53, schrieb Michael Kurz: This is a strange problem. I tried your example and it turned out that the server gets confused if you use a JSF view as welcome file. Simply create an html file index.html

Re: No saved view state could be found for the view identifier

2010-08-09 Thread Michael Kurz
and Courses in English and German Professional Support for Apache MyFaces 2010/8/9 Michael Kurzmichi.k...@gmx.at Would be interesting if anyone else has encountered this problem so far? Am 09.08.2010 18:53, schrieb Michael Kurz: This is a strange problem. I tried your example and it turned out

Re: Issue related to commandlinks

2010-08-06 Thread Michael Kurz
See answer inline. Am 06.08.2010 08:08, schrieb preeti agarwal: Thanks for your response. You're welcome! On click on each tab, I trigger the command link to display the panelgroupLayout: c:forEach var=tab items=#{paramList} begin=0 end=#{listSize} varStatus=status c:set var=Tcount

Re: Issue related to commandlinks

2010-08-06 Thread Michael Kurz
checked for the Ids. It looks like the PPR call is getting blocked somewhere, because when I click on the third one *all those tabs which have been clicked before* get rendered. -- Forwarded message -- From: *Michael Kurz*michi.k...@gmx.at Date: Thu, Aug 5, 2010 at 11:20 PM

Re: Issue related to commandlinks

2010-08-05 Thread Michael Kurz
Are you sure the IDS are correct (no NamingContainers in between or something like this)? A code fragment might be helpful to outline the problem. Regards Michael Am 04.08.2010 15:59, schrieb preeti agarwal: Hey all, I have three panelGroupLayouts and three commandlinks. Each

Re: Faces Servlet and MyFacesServlet (conflictiong) definitions

2010-07-22 Thread Michael Kurz
Hi, with those two servlets and mappings you can use these urls if you have .jsp pages: 1) http://localhost:8080/de.vogella.jsf.first/faces/Convertor.jsp 2) http://localhost:8080/de.vogella.jsf.first/Convertor.jsf Do you see the difference? The first one uses the prefix /faces and the real

Re: PreRenderView Event with post navigation

2010-07-13 Thread Michael Kurz
Why do you need to put f:event into f:metadata? If you put it outside this works like a charm. I didn't look into the details but I think f:metadata is not processed for all requests. As you want to register this listener to the view root it should be a child of f:view (or at least a top

Re: t:selectOneRadio in a4j:repeat

2010-07-08 Thread Michael Kurz
Try to prepend a colon to the id (might help to make id absolute): for=:lotExperimentForm:rep:0:wafer2 Regards Michael Original-Nachricht Datum: Thu, 8 Jul 2010 03:15:33 -0700 (PDT) Von: Digdas aart.scheep...@nxp.com An: users@myfaces.apache.org Betreff: t:selectOneRadio

Re: Table Header issue with height attribute and sortable columns

2010-07-08 Thread Michael Kurz
Would help to know which component you are using - or did I miss something? Regards Michael Original-Nachricht Datum: Wed, 7 Jul 2010 13:43:47 -0400 Von: Ravi Kapoor ravikapoor...@gmail.com An: MyFaces Discussion users@myfaces.apache.org Betreff: Table Header issue with

Re: using new el-api-2.2 with myfaces2.0 and tomcat6

2010-05-23 Thread Michael Kurz
Hi, I would say that EL 2.2 will only work with Facelets in Tomcat 6. I don't know details about Jasper (the JSP compiler), but there might be (and obviously are) additional problems even if you exchange the EL. With JSF 2, you should anyway use Facelets, unless you have a very good reason

Re: Configuration problem?

2010-02-17 Thread Michael Kurz
Hi Jozef, you mention that you have jsp content in xhtml files. There might be a problem with the context parameter javax.faces.DEFAULT_SUFFIX and/or your servlet mapping. Can you supply these infos (from your web.xml)? Have you tried renaming your file from *.xhtml to *.jsp? regards

Re: Configuration problem?

2010-02-17 Thread Michael Kurz
servlet-nameresources/servlet-name url-pattern/afr/*/url-pattern /servlet-mapping /web-app And I have tried rename files, but no change at all Thanks, Jozef On 17.2.2010 16:01, Michael Kurz wrote: Hi Jozef, you mention that you have jsp content in xhtml files. There might be a problem

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

2010-02-03 Thread Michael Kurz
Hi, when should the messages be displayed (on page load, on page submit). Could you quickly describe your page setup? 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

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

2010-02-03 Thread Michael Kurz
the addErrorMessages method I described above. I have verified through log statements that that is getting called. So I am confused as to why the FacesMessage we are adding to the context is not getting displayed. Thanks for any additional help, - Dave Michael Kurz wrote: Hi, when should the messages

Re: [OFFTOPIC] JSFDays 2010 Vienna

2010-01-28 Thread Michael Kurz
I hope to meet some of you there! regards Michael Am 26.01.2010 10:25, schrieb Gerhard Petracek: Hi all, we'd like to invite you to come to a JSF conference in Vienna, Austria from 23rd-25th of February. The program is packed with the latest and greatest information about JSF 2.0 and the new

Re: MyFaces binding problem with HtmlSelectOneMenu/SelectOneChoice

2010-01-26 Thread Michael Kurz
Hi Simon, as you already have noticed, a component binding is not the right place to get the value of a component. The reason is simple: on a postback (submit) the component binding setter is called in the restore view phase where the value of the component is not yet set. In this phase not

Re: MyFaces binding problem with HtmlSelectOneMenu/SelectOneChoice

2010-01-26 Thread Michael Kurz
Yeah, this is the same I got. Should be fixed with the patch. - Michael Am 26.01.2010 13:54, schrieb Mark Struberg: Just in case it helps, I'm also having problems with HtmlSelectOne: This used to work until last week. Leonardos patch in MYFACES-2356.3 fixes this problem. I'd say this is a

Re: FacesMessage with severity ERROR do not prevent calling an action method

2010-01-20 Thread Michael Kurz
Hi, for clearification: does the click on the command button take place AFTER the page with the error messages was rendered? Because if it is so, this is the expected behavior. The messages in the FacesContext are only available for the current request, which is the one producing the error.

Re: [COMMUNITY] MyFaces += Jakob Korherr

2010-01-19 Thread Michael Kurz
Congratulations Jakob (see you on friday ;-)). Keep up the good work! regards Michael Matthias Wessendorf schrieb: The Myfaces PMC is proud to announce a new addition to our community. Please welcome Jakob Korherr as the newest MyFaces committer! Jakob is an active member of the myfaces

Re: Spring FilterSecurityInterceptor not been called for myfaces forwards

2010-01-12 Thread Michael Kurz
Madhav Bhargava schrieb: To add if you see the spring security application config, I have the following set: security:http security:intercept-url pattern=/**/secure/** access=ROLE_USER / security:intercept-url pattern=/**/operations/** access=ROLE_OPERATIONS/

Re: Spring FilterSecurityInterceptor not been called for myfaces forwards

2010-01-12 Thread Michael Kurz
, but that's just a guess. Regards, Jakob 2010/1/12 Madhav Bhargava madhav_bharg...@infosys.com -Original Message- From: Michael Kurz [mailto:michi.k...@gmx.at] Madhav Bhargava schrieb: To add if you see the spring security application config, I have the following set: security:http

Re: Spring FilterSecurityInterceptor not been called for myfaces forwards

2010-01-11 Thread Michael Kurz
Hi, which mapping do you use for your faces servlet: postfix (like *.jsf) or prefix (like /faces/*)? Maybe the real JSF urls are not listed in your intercepter config. regards Michael Madhav Bhargava schrieb: Hi All, I am using myfaces 1.1, icefaces 1.8.1, spring 2.5.6, spring security

Re: [Trinidad] commandButton doesn't fire (missing onclick attribute)

2010-01-09 Thread Michael Kurz
Hi, just a shot in the dark: do you have a form surrounding your buttons? regards Michael schneidc schrieb: Hi, I've just been playing around with MyFaces (1.2.8), Trinidad(1.2.12) on a Glassfish (V3) app server and everything went better than I thought it would (as I'm still pretty new to

Re: [ANN] Release of Apache MyFaces Trinidad 2.0.0-alpha

2010-01-09 Thread Michael Kurz
Tried it on Win 7 (Speedcommander, WinRar) and it worked for me, too. Regards, Michael kishore.sadanandam schrieb: Much awaited release for me. But downloaded distribution, source, example zip/tar files are having issues in opening. I guess they are not proper. Can you please check?

Re: Validation errors when using h:selectManyCheckbox

2008-03-25 Thread Michael Kurz
Pavan Shahi schrieb: Thanks for your reply. Now i have remove all my business logic and simply testing component. But my bad luck continue same error. I have also attached my modified java and jsp file. Please help me i am not able to find any way to come out of this problem Ok, the files

Re: Validation errors when using h:selectManyCheckbox

2008-03-24 Thread Michael Kurz
Pavan Shahi schrieb: Trying to get h:selectManyChekbox running sine about 1 days, but I always get a validation error when I select one of the checkboxes Validation error : Value is not a valid option When I am doing hit and trail to fixed this problem I found that if I put backing bean in

Re: how to dynamically load tabbedpane

2008-03-22 Thread Michael Kurz
Sidhik, Rosmon schrieb: The details part of the page has a panelNavigation2 which I need to use to activate the paneltabs in the paneltabbedpane which displays content. I'm having trouble on deciding how to propagate the action on the panelNavigation2 to the paneltabbedpane. Yes I would like to

Re: how to dynamically load tabbedpane

2008-03-20 Thread Michael Kurz
Sidhik, Rosmon schrieb: I have a somewhat complicated UI design. I have a page which contains a search, the search results displayed below and then an Edit screen below it. The edit screen contains a left navigation (dynamically generated using tomahawk NavigationMenuItems) and the details

Re: h:selectOneListbox onclick - navigation

2008-03-18 Thread Michael Kurz
'].value=idLink; form.submit(); } when you call: submitIt('subViewSelect:fSelect:cmdLink1', 'subViewSelect:fSelect'); have a nice evening, regards Michael Kurz

Re: Converter Problem - Validation Error

2008-03-11 Thread Michael Kurz
[EMAIL PROTECTED] schrieb: Thanks for response - you're right, one of he equals methods are invalid (always returned false). Why should be my solution complicated - these classes are hibernate pojos! Well, it really depends on what you want to accomplish. If you only want to choose one object

Re: UnicodeEncoder quiestion

2008-03-11 Thread Michael Kurz
P V schrieb: For now imagine that we have some string with leading latin symbols. In result we'll have incorrect encoded string. I think I can miss something. Could somebody please describe the method's logic? Yeah, I can. The main concept behind this is to avoid unnecessary string

Re: Converter Problem - Validation Error

2008-03-10 Thread Michael Kurz
[EMAIL PROTECTED] schrieb: ERROR MESSAGES Component ID: subViewPlanning:fPlanningCalcualte:planningDriver Severity: ERROR Message: subViewPlanning:fPlanningCalcualte:planningDriver: Validierungsfehler: Wert ist keine gültige Auswahl Once again: according to the error message it seems that the

Re: myFaces 1.2 - Converter Problem

2008-03-09 Thread Michael Kurz
Michael Kurz