Re: general myfaces performance question

2006-11-16 Thread Martin Marinschek
Hi, Thomas Spiegl and me have made sure you can use Tomahawk (snapshot) with Trinidad w/o problems. Try it - if there is a problem, come back to us and tell us about it. regards, Martin On 11/16/06, Matthias Wessendorf [EMAIL PROTECTED] wrote: it works in some (sample) apps I mix the two,

Re: javax.servlet.ServletException: Client-id : _idJsp0 is duplicated in the faces tree.

2006-11-16 Thread Martin Marinschek
Hi Behi, the first issue you are seeing is due to the fact that if you change the JSP-page-hierarchy, JSF doesn't know anymore which id it should assign to which component. This problem can be fixed by either switching to facelets or JSF1.2 (in 1.2, the container provides the id's per tag, I

Re: Re: Using Tree2 without Javascript

2006-11-15 Thread Martin Marinschek
It's a basic principle of JSF that every link needs JavaScript. The problem is with the sizes of the state of a modern web-application: it is (almost) impossible to cut this state down to sizes which can be transferred via a link without IE restricting this. So what JSF does is posting the form

Re: general myfaces performance question

2006-11-15 Thread Martin Marinschek
He should definitely take the Trinidad component set for high performance requirements, with this, you're in the same region as Struts for performance (probably better - cause if you do it yourself, you won't get the same optimized state-saving as is implemented in Trinidad). regards, Martin

Re: Submit h:form from outside the form

2006-11-14 Thread Martin Marinschek
Hi Oliver, try s:subForm/ and it's parameters to achieve what you need! regards, Martin On 11/14/06, opick [EMAIL PROTECTED] wrote: Hi again, does nobody implemnts a JSf-Application with such a structure (divided content and navigation areas) or is it just impossible to do this kind of

Re: JSF Lifecycle question

2006-11-14 Thread Martin Marinschek
Hi Aneesha, component-binding never calls its getter as long as you stay on the same page - only the getter will be called. So if you're doing dynamic stuff in your application, you'll need to do it in the setter (or in an action-method). regards, Martin On 11/14/06, Aneesha Govil [EMAIL

Re: [announcement] new security extensions

2006-11-14 Thread Martin Marinschek
Hi Cagatay, great addition to MyFaces! Thanks... regards, Martin On 11/14/06, Cagatay Civici [EMAIL PROTECTED] wrote: Hi, There is a new EL extension in sandbox for security purposes. The basic usage is like #{securityContext.ifGranted['rolename']} Here is the wiki;

Re: JSF Lifecycle question

2006-11-14 Thread Martin Marinschek
*correction: only the _s_etter will be called. And as David has mentioned - this is not true for value-binding, only for component-binding (which I figured you were talking about). regards, Martin On 11/14/06, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Aneesha, component-binding never

Re: Submit h:form from outside the form

2006-11-14 Thread Martin Marinschek
P.S.: you'll need to use t:commandLink / t:commandButton and the actionFor attribute additionally. regards, Martin On 11/14/06, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Oliver, try s:subForm/ and it's parameters to achieve what you need! regards, Martin On 11/14/06, opick [EMAIL

Re: url validating?

2006-11-14 Thread Martin Marinschek
Hi Björn, it's in tomahawk-sandbox. You can get the sandbox by downloading the nightly builds. regards, Martin On 11/14/06, Bjørn T Johansen [EMAIL PROTECTED] wrote: I see the tomahawk docs mention a validateurl tag but I can't find it... Does this still exists or is there another way to

Re: Acegi Facelets url problem

2006-11-14 Thread Martin Marinschek
redirect/ and how is it used? it sounds a lot more usable regards, Cristi Toth On 11/14/06, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Cristi, that's a problem with all server-side technologies which use a forward to go to the next page (a forward is not reflected in the URL, only

Re: Acegi Facelets url problem

2006-11-14 Thread Martin Marinschek
Hi Cristi, that's a problem with all server-side technologies which use a forward to go to the next page (a forward is not reflected in the URL, only a redirect is). So it is not a specific facelets problem, not even a JSF problem... This evaluation already points to the solution: you can

Re: JSF RI 1.2 + Facelets + Tomahawk problem

2006-11-14 Thread Martin Marinschek
Hi Werner, yes - 1.2 still works with old components, for compatibility reasons, the old API is still aboard. regards, Martin On 11/14/06, Werner Punz [EMAIL PROTECTED] wrote: Interesting, to my knowledge JSF 1.2 uses some incompatible API changes, I was not aware that mixing jsf 1.1

Re: Custom component, validation messages

2006-11-14 Thread Martin Marinschek
If he can integrate the message-component in the input-component, then that's an option, right! regards, Martin On 11/14/06, David Chandler [EMAIL PROTECTED] wrote: I may not be understanding your question correctly, but if you're adding the input sub-components programatically, you could add

Re: Custom component, validation messages

2006-11-14 Thread Martin Marinschek
No, there's nothing in MyFaces which could handle this AFAIK. I suppose you could write a new component (or changing t:message) which also collects the messages of all children of the comp by visiting the sub-tree under the parent-component (Attention: this doesn't work with UIData). regards,

Re: can't configure public static inner class in faces-config.xml

2006-11-13 Thread Martin Marinschek
Hi Jochen, the separator for inner classes generally is the $-sign (how would you distinguish between a package and a class-name, if not for this special separator..). Have you tried this? de.tccproducts.kn.jsf.model.UserSettings$TableSettings regards, Martin On 11/13/06, Böhringer Jochen

Re: ClassCastException AjaxDecodePhaseListener ?

2006-11-13 Thread Martin Marinschek
Class loading problem? Have you tried shuffling around your libs? regards, Martin On 11/13/06, Michael Heinen [EMAIL PROTECTED] wrote: Hi all, I just tried to install a jsf application on another machine and got this exception on start: java.lang.ClassCastException:

Re: JSF EL

2006-11-13 Thread Martin Marinschek
Hi Rene, what do you mean by in a non JSF context? If you mean in your managed beans, you can do: FacesContext.getCurrentInstance().getApplication().getVariableResolver().resolveVariable(FacesContext.getCurrentInstance(),exprString); If you mean general expression resolving, you might want to

Re: problem: s:form reload after error drops port number

2006-11-07 Thread Martin Marinschek
Hi Steven, your problem description indicates to a problem in the state-saving and restoring mechanism of HtmlForm - I looked through it, but didn't find one, everything seems alright. Can you try to debug through restoreState, saveState and getPort of org.apache.myfaces.custom.form.HtmlForm and

Re: Resource bundles

2006-11-07 Thread Martin Marinschek
Hi Niklas, I suppose you could pass an attribute into your facelets-component like this: myns:mycomp id=test/ and then use this id as a name for the msg: f:loadBundle var=#{id}/ not tested, not guaranteed to work ;) regards, Martin On 11/6/06, Niklas Ekman [EMAIL PROTECTED] wrote: Hello,

Re: Spring with MyFaces

2006-11-02 Thread Martin Marinschek
I suppose you still have the sun-jars somewhere in your class-path and you have two versions of VariableResolver running around somewhere - so instanceof doesn't work anymore. regards, Martin On 11/1/06, Matthias Wessendorf [EMAIL PROTECTED] wrote: which version are you using? (myfaces)

Re: Problem with labels retrieved from a bundle inside pprPanelGroup

2006-11-02 Thread Martin Marinschek
Hi, no t:saveState won't help either. Put your messages in a managed-bean and reference them via normal properties-access-code. Volker, didn't you set up a special loadBundle tag for Tobago? regards, Martin On 11/2/06, Volker Weber [EMAIL PROTECTED] wrote: Hi, the problem is the scope of

Re: Problem in marking an InputText to 'readonly' and 'disabled'

2006-10-30 Thread Martin Marinschek
Hi guys, this is our Input-decode code. Looks good to me... I do suggest you look into the scope of your model first: do you save the model between requests? If not, the read-only model-data will be lost on the next request; so you should either put your model to session-scope or use

Re: Strange error when using JSF and Tomcat

2006-10-26 Thread Martin Marinschek
Usually, you'd see the name of the managed-bean-class that could not be instantiated. In your case, you see an empty string. That would mean you've configured a managed-bean with an empty string as class-name? regards, Martin On 10/26/06, Manoj Agrawal [EMAIL PROTECTED] wrote: Hello,

Re: Custom Renderer for SelectItem

2006-10-24 Thread Martin Marinschek
Hi Greg, why don't you set the ESCAPE_ATTR to false, as indicated by the code-snippet? You'll have to set the corresponding attribute of the selectOneMenu component that contains your select-item. You can do that easily by using component-binding: h:selectOneMenu ...

Re: how to get the server name inside of a backing bean?

2006-10-24 Thread Martin Marinschek
Same answer applies here - use relative paths. The problem with CSS and other resource files really stays the same - no matter if you use JSF or not. regards, Martin On 10/24/06, Ludovic Robinot [EMAIL PROTECTED] wrote: Andrew Robinson a dit le 10/24/2006 06:50 AM: Why not just use a

Re: Is Myfaces more strict than JSF RI?

2006-10-23 Thread Martin Marinschek
Hi Bjorn, try to disable serializing the state with the corresponding MyFaces-parameter in your web.xml. Use: context-param descriptionOnly applicable if state saving method is server (= default). If true (default) the state will be serialized to a byte stream before it

Re: How to saveState / restoreState for properties that have value bindings

2006-10-23 Thread Martin Marinschek
Hi Randahl, look into Trinidad and the StateManager for an alternative. regards, Martin On 10/18/06, Randahl Fink Isaksen [EMAIL PROTECTED] wrote: I was wondering if there were any alternatives to this approach of creating and populating arrays in each and every one of your components -

Re: DataConverter Initializazion

2006-10-17 Thread Martin Marinschek
That's an old bug - and indeed, it has been introduced to comply with the TCK. As an alternative, use s:convertDateTime which does exactly what you're proposing. regards, Martin On 10/17/06, ::SammyRulez:: [EMAIL PROTECTED] wrote: Before opening a Issue I would like to ask if someone could

Re: dynamic key generation with EL

2006-10-16 Thread Martin Marinschek
Interesting. No, I don't think it would work. option would be two use a double-indexed map (you'd have to change to an implementation of map which returns a map then, and this map would get the second argument passed in). your example changed to the new approach: t:dataList var=myVar

Re: Other means for building a component tree

2006-10-16 Thread Martin Marinschek
You can look at the smile-project - once active, then on the way to merge with MyFaces, then there were some conflicts between the teams, now its dead. But there might be some intereresting concepts in the codebase. regards, Martin On 10/13/06, Randahl Fink Isaksen [EMAIL PROTECTED] wrote: I

Re: Save / restore state of entire view?

2006-10-16 Thread Martin Marinschek
Hold on - we won't deprecate saveState. SaveState will always be a (simple and small) option in MyFaces. regards, Martin On 10/16/06, Werner Punz [EMAIL PROTECTED] wrote: Savestate is a tag which in the long run will be deprecated, try the new conversation tag instead, it allows much better

Re: file download component for JSF

2006-10-16 Thread Martin Marinschek
Tobago is another set of components. And all component sets offer a file-upload, none (afaik) offers a file-download component. regards, Martin On 10/13/06, Aneesha Govil [EMAIL PROTECTED] wrote: Here is what my understanding of the extensions is - Tomahawk is a collection of JSF components

Re: dynamic key generation with EL

2006-10-16 Thread Martin Marinschek
- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Montag, 16. Oktober 2006 13:07 To: MyFaces Discussion Subject: Re: dynamic key generation with EL Interesting. No, I don't think it would work. option would be two use a double-indexed map (you'd have to change to an implementation

Re: Save / restore state of entire view?

2006-10-16 Thread Martin Marinschek
And indeed, its just great. What's missing, is a short section on the Wiki describing how to use ORM-functionality (like Hibernate) with the conversation. Mario, do you have any time adding this? regards, Martin On 10/16/06, Nenz [EMAIL PROTECTED] wrote: Ahh okay.. thanks for the details!

Re: Change in GUI components not reflected in HTML page

2006-10-10 Thread Martin Marinschek
If you use component-binding, you need to keep in mind that the getter of your component is only called once, whereas the setter is called on every request. If you need to dynamically change the list of selectItems - you need to do that in the setter. regards, Martin On 10/10/06, Gerald

Re: Upload component

2006-10-09 Thread Martin Marinschek
Hi Urs, t:inputFileUpload. regards, Martin On 10/9/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there a myfaces component using the commons FileUpload? I have to do an image upload. Urs -- http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in

Re: Implementing a rendered property

2006-10-09 Thread Martin Marinschek
Do you want to use the rendered property of an existing component or do you want to implement a rendered property on a new, custom built component? regards, Martin On 10/9/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello I would like use a rendered property in my JSF component. Could

Re: Disabled javascript

2006-10-06 Thread Martin Marinschek
JSF will work if (from the standard components) you use all components except commandLink.You can style commandButton to look like a link to get the same effects.regards,Martin On 10/6/06, Madhav Bhargava [EMAIL PROTECTED] wrote: Hi All, I see a lot of _javascript_ code in the

Re: JIRA Issue MYFACES-1358

2006-10-05 Thread Martin Marinschek
Did you comment on the bug first? users can't close bugs, but one of the developers will eventually close it out if you put a clear comment on it. regards, Martin On 10/4/06, Scott O'Bryan [EMAIL PROTECTED] wrote: Hey everyone, I'm new to the MyFaces list. Most of my work at this point as

Re: JIRA Issue MYFACES-1358

2006-10-05 Thread Martin Marinschek
I went ahead and put it to resolved right now. thanks, regards, Martin On 10/5/06, Martin Marinschek [EMAIL PROTECTED] wrote: Did you comment on the bug first? users can't close bugs, but one of the developers will eventually close it out if you put a clear comment on it. regards, Martin

Re: Corporate Open Source Strategy

2006-10-05 Thread Martin Marinschek
Hi Ryan, we've already got several customers who build on our experience with MyFaces to provide them with professional services - if you need that, I do suggest you contact us first; you won't find any other company with as much MyFaces experience around. An example for that - Thomas Spiegl,

Re: Render Response phase is skipped

2006-10-05 Thread Martin Marinschek
Hi Jan, I wouldn't know of anything in MyFaces which would render a response to the user, but not traverse the RENDER_RESPONSE phase in some means - only exception that would come to my mind are special phase-listeners. regards, Martin On 10/5/06, Simon Lessard [EMAIL PROTECTED] wrote:

Re: JIRA Issue MYFACES-1358

2006-10-05 Thread Martin Marinschek
an issue. Marc On 10/5/06, Martin Marinschek [EMAIL PROTECTED] wrote: I went ahead and put it to resolved right now. thanks, regards, Martin On 10/5/06, Martin Marinschek [EMAIL PROTECTED] wrote: Did you comment on the bug first? users can't close bugs, but one of the developers

Re: Is it possible to use inputSuggestAjax inside h:dataTable?

2006-10-04 Thread Martin Marinschek
If inputSuggestAjax is working with id's instead of client-ids, this is a bug and should be filed as an issue. regards, Martin On 10/4/06, Werner Punz [EMAIL PROTECTED] wrote: Andrew Skiba schrieb: Hello. In my application I need to create a form with a list of product names. I wanted to

Tree2

2006-10-04 Thread Martin Marinschek
Hi *, I'm reviewing the tree2 currently, and I was wondering if we could have a discussion about some of the concepts. First thing I'd like to discuss is what happens with selected nodes. Currently, selecting a node fires an action-listener. This is somewhat ok, but I believe the

Re: Tomahawk and trinidad

2006-10-03 Thread Martin Marinschek
If you want to use both Trinidad and Tomahawk, you should use a current nightly build - we've committed a lot of bug-fixes for compatibility of the two frameworks. regards, Martin On 10/3/06, Chaitanya Kadaru [EMAIL PROTECTED] wrote: Hi I am trying to use both trinidad and tomahawk in the

Re: selectOneMenu looses values with myFacesCore 1.1.4

2006-09-29 Thread Martin Marinschek
, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Michael, if you create a new View-Root, it is expected that the old components get lost - I would say that the selectItems should be recreated. Is that the case in your backing bean? Can you try to clean out the binding as well, and see what

Re: selectOneMenu looses values with myFacesCore 1.1.4

2006-09-28 Thread Martin Marinschek
Hi Michael, if you create a new View-Root, it is expected that the old components get lost - I would say that the selectItems should be recreated. Is that the case in your backing bean? Can you try to clean out the binding as well, and see what happens then? regards, Martin On 9/28/06,

Re: [OFFTOPIC] What I wish that JSF 2.0 would be like...

2006-09-27 Thread Martin Marinschek
I really wanted to know). * Dump JSP, and make facelets standard. Happy Oktoberfest! Roger Martin Marinschek wrote: Hi there, Ed Burns, Jesse Alexander and me will be heading a discussion on what our users dreamed JSF 2.0 would be like - on friday, 2006/09

Re: Tomahawk sandbox: inputSuggest problems with position of popup and usage in a dataTable

2006-09-27 Thread Martin Marinschek
Hi Martin, are you using inputSuggestAjax or inputSuggest? regards, Martin On 9/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, The positioning problem: === I've a complex layout of my page. The layout is extensively styled with CSS and I use Tiles as templating tool.

Re: [OFFTOPIC] What I wish that JSF 2.0 would be like...

2006-09-27 Thread Martin Marinschek
Hmm, interesting. That could be handled in the ExpressionResolver, I guess. regards, Martin On 9/27/06, Angelo Luis [EMAIL PROTECTED] wrote: something i dream to JSF EL have is a null handle a la OGNL / webwork pair So if have a deep object graph like client.address.city.name in a input

Re: Publicity for MyFaces

2006-09-26 Thread Martin Marinschek
Great to hear! regards, Martin On 9/26/06, Nicklas Karlsson [EMAIL PROTECTED] wrote: http://www.nuxeo.org/sections/about/java-switch/about-nuxeo5 If the migration works well, that is :-) -- http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English

Re: Switching between RI and MyFaces

2006-09-26 Thread Martin Marinschek
By the way: I've added new startup-logging which will now tell you if both the myfaces-implementation and the RI are on the classpath. regards, Martin On 9/26/06, Cagatay Civici [EMAIL PROTECTED] wrote: I suppose if you're using maven, profiles can be handy during packaging war. With

Re: h:commandLink Without the Underline

2006-09-26 Thread Martin Marinschek
Hi Alex, try this in your style-sheet: a:link { text-decoration:none; } a:visited { text-decoration:line-through; } a:hover { text-decoration:underline; } a:active { text-decoration:underline; } a:focus { text-decoration:blink; } regards, Martin On 9/26/06, [EMAIL PROTECTED] [EMAIL

[OFFTOPIC] What I wish that JSF 2.0 would be like...

2006-09-26 Thread Martin Marinschek
Hi there, Ed Burns, Jesse Alexander and me will be heading a discussion on what our users dreamed JSF 2.0 would be like - on friday, 2006/09/29, in Munich, at the Oktoberfest. So it's a good opportunity for both talking about JSF and drinking beer - probably the best of the world. We'll meet up

Re: Errors on page

2006-09-24 Thread Martin Marinschek
form. The solution is one form enclosing the tabbedPanel. Thanks for your suggestion that led to the fix. Dave Martin Marinschek [EMAIL PROTECTED] wrote: Do me a favour and check if you have forms embedded in a form. That's disallowed in HTML, and might be the reason for this! regards, Martin

Re: STATE_SAVING_METHOD client security

2006-09-24 Thread Martin Marinschek
No, wouldn't work, I suppose. With javascript functions, you can only edit the DOM-content - but not the existing HTML-page in the browser cache. So the state will still remain there. You need to provide a token in the client-side saved state - much like the session-id in server-side state

Re: Omit component from serializeView()?

2006-09-24 Thread Martin Marinschek
Hi Jeff, this is most probably a problem with com.crystaldecisions.reports.reportengineinterface.JPEReportSource not implementing the StateHolder - interface properly. It would need to have a line implements StateHolder and the two methods restoreState and saveSate available, plus a public

Re: Crystal renderer-type unsupported?

2006-09-24 Thread Martin Marinschek
Hmm, interesting. I would have thought this exact error-message stems from the fact that the component does not set the default renderer type in its constructor, and is added dynamically to the page. Haven't got a clue why putting a form around the component would change anything. Having a

Re: Errors on page

2006-09-22 Thread Martin Marinschek
The javascript looks good to me. What's your html-header? regards, Martin On 9/22/06, Mike Kienenberger [EMAIL PROTECTED] wrote: Supposedly Myfaces Core 1.1.4 and Tomahawk 1.1.3 are compatible. But maybe we missed something. I'm using Core 1.1.4 and Tomahawk 1.1.5-snapshot (Aug 18th)

Re: Errors on page

2006-09-22 Thread Martin Marinschek
Do me a favour and check if you have forms embedded in a form. That's disallowed in HTML, and might be the reason for this! regards, Martin On 9/22/06, Martin Marinschek [EMAIL PROTECTED] wrote: The javascript looks good to me. What's your html-header? regards, Martin On 9/22/06, Mike

Re: [old thread] Re: Screen refresh

2006-09-19 Thread Martin Marinschek
Ok, so what does clear...Form(); do? Imagine you click on a link in JSF - what happens is that a hidden field is set, one for the link itself, and one for every parameter of the link. If you cancel the loading of the next page, these parameters are still set. Now if you click on another link,

Re: Sun's Progress Bar with JSF and AJAX Sample

2006-09-18 Thread Martin Marinschek
on JSF and AJAX similarly misbehaves when used with Myfaces. If so it is a problem for us as the ADF we are developing is not going to work on any of the servers which decide to preinstall Myfaces (like JBoss.) Leon Werner Punz wrote: Martin Marinschek schrieb: There are several AJAX-components

Re: Nested EL-Variable for Map-Key

2006-09-12 Thread Martin Marinschek
Hi Jörg, use this: #{addressListBean.addressBeanMap[type].zipcode} regards, Martin On 9/12/06, Joerg Bredlau [EMAIL PROTECTED] wrote: Hello, is it possible to nest one EL-Variable into another? I want to use it as a dynamic key for a hashmap like this:

Re: RichList and SelectBooleanCheckbox

2006-09-12 Thread Martin Marinschek
It looks as if you'd have several versions of MyFaces-jars around, and some class gets loaded from a different class-loader and this is why you get a ClassCast-exception. Did you clean out everything? Tried to get rid of the MyFaces jars included in JBoss? regards, Martin On 9/12/06, [EMAIL

Re: HtmlRendererUtils: There should always be a submitted value for an input if it is rendered

2006-09-12 Thread Martin Marinschek
I'd guess that your rendered or displayValueOnly attribute is toggling its value between requests - make sure you have those values in the session or saved with a t:saveState. regards, Martin On 9/12/06, Mike Kienenberger [EMAIL PROTECTED] wrote: Gerald, panelGroup won't render a span unless

Re: Does myface supports jsf 1.2

2006-09-11 Thread Martin Marinschek
Longer answer: work is in progress, but we're not there yet. regards, Martin On 9/11/06, Gerald Müllan [EMAIL PROTECTED] wrote: Hi, short answer: currently No :) cheers, Gerald On 9/11/06, David Delbecq [EMAIL PROTECTED] wrote: Title says it all :) Does svn version of myfaces supports

Re: Why is jsf content separated from JSP?

2006-09-11 Thread Martin Marinschek
Hi David, it's inherent to the JSP and JSF 1.1. interaction that this happens - you could call it a bug by design. things you can do, easiest first: - use f:verbatim-tags around your HTML-Code you embed in JSF-tags (simple but ugly) - use the MyFaces htmlTag tag to emit some of the HTML-Tags -

Re: Complete JSF example with file upload and download?

2006-09-11 Thread Martin Marinschek
Hmm... but the MyFaces examples has all of this. Did you try to download the nightly-builds, there should be a full-fledged war-file of the simple-examples in there? regards, Martin On 9/11/06, Fred Janon [EMAIL PROTECTED] wrote: I am looking for a complete example (source code, ant build

Re: Source for renders in 1.1.3?

2006-09-11 Thread Martin Marinschek
Hi Morten, you'd have to look into the share module of Apache MyFaces. Have you done that? regards, Martin On 9/11/06, Morten Mortensen [EMAIL PROTECTED] wrote: Please, can you tell me, where I can find a consistent, matching set of renderkit objects for MyFaces 1.1.3 - the source code -

Re: Problem with using multiple dataTables in a JSP page

2006-09-11 Thread Martin Marinschek
That's very interesting. Can you download the MyFaces-tomahawk-simple examples from the nightly build, and try to reproduce the problems there? I can't imagine what the problem could be - surely not two dataTables per form. regards, Martin On 9/11/06, Mak NF [EMAIL PROTECTED] wrote: Hi, '

Re: HtmlSelectOneMenu valueChange behavior

2006-09-11 Thread Martin Marinschek
Hi Simeon, remember the JSF-Lifecycle, and that model-beans are only updated after the conversion and validation phase has completely run? The value-change-listeners are called ahead of the model-update-phase, and this is why you don't see the changed value in the backing beans. regards,

Re: Source for anything in 1.1.4?

2006-09-11 Thread Martin Marinschek
It would be easy to fix this - look into my recent addition to the pom.xml: plugin artifactIdmaven-idea-plugin/artifactId version2.0-beta-2-SNAPSHOT/version configuration jdkLevel1.3/jdkLevel

Re: Source for renders in 1.1.3?

2006-09-11 Thread Martin Marinschek
Weny, let me thank you for your efforts here (and in relation to the release as well). It's great to have you aboard! regards, Martin On 9/11/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 9/11/06, Morten Mortensen [EMAIL PROTECTED] wrote: I believe, I have checked out most of the MyFaces

Re: SelectOneMenu

2006-09-11 Thread Martin Marinschek
There is a validation-check in selectOneMenu to disallow id's which are not in the selectItem-list. regards, Martin On 9/11/06, Thorbjørn Ravn Andersen [EMAIL PROTECTED] wrote: Gerald Müllan skrev den 11-09-2006 12:25: The value of the selectOneMenu in the backend will then include the id

Re: Source for renders in 1.1.3?

2006-09-11 Thread Martin Marinschek
Ah, yes. I missed the resolution to this due to my vacations. Indeed, it is unfair to ask so short after you put all this work into this ;) regards, Martin On 9/11/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 9/11/06, Martin Marinschek [EMAIL PROTECTED] wrote: let me thank you for your

Re: sortCommandHeader does not work with JSF RI

2006-09-11 Thread Martin Marinschek
Are you using t:columns in the table? regards, Martin On 9/12/06, THIEN PHAM [EMAIL PROTECTED] wrote: t:sortCommandHeader in Tomahawk 1.1.3 doesn't work with JSF RI, i.e. clicking on the column header doesn't result in the column data to be sorted. I don't know if this is a MyFaces or JSF RI

Re: JSF proxy component

2006-09-07 Thread Martin Marinschek
No, there is nothing like a proxy component so far. Might make a nice addition, though! regards, Martin On 9/7/06, Daniel Loebbe [EMAIL PROTECTED] wrote: Hi, you are right, we already thought about that solution. But I originally want to embed the content of the second server into the pages

Re: Is there a stable release of Sandbox?

2006-09-07 Thread Martin Marinschek
Hi Yee, no, there is no releases of the sandbox at all, sorry. Werner Punz will fix the tableSuggestAjax component in a couple of days, that should be working then. regards, Martin On 9/7/06, Yee CN [EMAIL PROTECTED] wrote: Hi, Is there a stable release of Tomahawk sandbox? I am

Re: Direct usage of myfaces out of a Java program and save/restoreState issues

2006-09-07 Thread Martin Marinschek
I don't think that Shale is doing that - it would need a StateManager to do this, and I don't think Shale comes with one. regards, Martin On 9/7/06, Martin Grotzke [EMAIL PROTECTED] wrote: On Tue, 2006-09-05 at 17:12 +0200, Ricardo Tercero Lozano wrote: Forgot to say than If you really want

Re: upgrading from tree to tree2

2006-09-07 Thread Martin Marinschek
It's in subversion - or in the nightly builds, which you can download as well. regards, Martin On 9/5/06, Jim the Standing Bear [EMAIL PROTECTED] wrote: I am upgrading a JSF application from tree to tree2. The tomahawk examples downloaded from apache.org only has the jsp code, but there is

Re: [Tobago] - Why would the RESTORE_VIEW afterPhase is not be called.

2006-09-07 Thread Martin Marinschek
How do you link from the login.jsp page to the main.jsp page? regards, Martin On 9/8/06, John [EMAIL PROTECTED] wrote: For some reason, directly after navigating from the login.jsp page to the main.jsp page, the RESTORE_VIEW afterPhase is not called. My main.jsp page has three tabs...

Re: s:form action problem

2006-08-29 Thread Martin Marinschek
I don't get it - why would you want to use an AJAX button if you want to go to a new page? regards, Martin On 8/29/06, Daniel Gradecak [EMAIL PROTECTED] wrote: Hello all, I am trying to use the sandbox commandButtonAjax and it is O.K. The form is submited and i can see the data changes on

Re: Good News:Trinidad Tomahawk

2006-08-26 Thread Martin Marinschek
Who would be able to do this? Someone must have a login to this box, right? Do we have to notify infra? regards, Martin On 8/26/06, Bernd Bohmann [EMAIL PROTECTED] wrote: Hello Thomas, Bad news: The nightly build is not running.

Re: t:collapsiblepanel

2006-08-25 Thread Martin Marinschek
Hi Arvind, the attribute named collapsed has been changed over to be the value attribute in newer versions of MyFaces - apart from that, your explanation holds true. regards, Martin On 8/25/06, Mr Arvind Pandey [EMAIL PROTECTED] wrote: Hi, You can use following attribute :

Re: very simple question regarding h:inputText

2006-08-24 Thread Martin Marinschek
in the navigation case. I have not tested this with an object which can be used over multiple pages yet. Note this is a pet project, so I will be making slow progress. Regards, Fintan -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: 23 August 2006 20:03 To: MyFaces

Re: MessageBundle: internationalization problem

2006-08-24 Thread Martin Marinschek
Interesting idea. Yes, that might be nice for the Austrian market as well, I'll think about this suggestion for my next app ;) regards, Martin On 8/24/06, Wolf Benz [EMAIL PROTECTED] wrote: It's about the standard message bundle that comes with MyFaces and contains messages such as (quoted

Re: How can I use a variable that this in session?

2006-08-24 Thread Martin Marinschek
You cannot reference local variables in your JSP within JSF. You might want to put them in the request for this to work. regards, Martin On 8/24/06, Wolf Benz [EMAIL PROTECTED] wrote: - in yr backing bean: via the External Context (FacesContext.getCurrentInstance() -- session) - in yr

Re: t:collapsiblepanel

2006-08-24 Thread Martin Marinschek
Hi Dennis, set the value of the component to a boolean value indicating it's collapsed state. regards, Martin On 8/24/06, Dennis Gesker [EMAIL PROTECTED] wrote: Which attribute is used to have this control default to open? I wasn't able to find anything at

Re: Accessing a request parameter after submission

2006-08-24 Thread Martin Marinschek
Your managed bean is request-scoped, so all data is lost on the next request. The data the user entered will still be applied to the newly created managed bean in the next request - so you don't loose this data. This data comes from the input-fields the user has filled out, and will naturally be

Re: very simple question regarding h:inputText

2006-08-23 Thread Martin Marinschek
thanks for your attempt to illucidate it for me. best -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 22, 2006 6:24 PM To: MyFaces Discussion Subject: Re: very simple question regarding h:inputText No, I'm not duplicating anything here. In my

Re: very simple question regarding h:inputText

2006-08-23 Thread Martin Marinschek
simple question regarding h:inputText That's point. You are essentially duplicating your business model in order to fit the UI framework. -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 22, 2006 4:52 PM To: MyFaces Discussion Subject: Re: very

Re: the biggest myfaces webapp

2006-08-22 Thread Martin Marinschek
What Laurentiu is talking about is not what my original definition of active was. I was talking about a request every few seconds - with a few requests per minute , a few hundred users shouldn't be a problem at all. In any case I recommend doing performance measurements in such a case to make

Re: What is the best Ajax JSf framework to use?

2006-08-22 Thread Martin Marinschek
Hold on, hold on. The PPR technology we devised for integration into tomahawk is server-side compatible with what Trinidad does (also what the user has to do to get it working and the developer interface is similar to Trinidad). The client-side is completely rewritten, but we hope that we will

Re: [OT] (License) Just verifying a question

2006-08-22 Thread Martin Marinschek
Hi Andrew, exactly right - you only have to include the license in the license-section of your product. You need not include the MyFaces-Source-Code (also not the patched source-code). regards, Martin On 8/22/06, Andrew Robinson [EMAIL PROTECTED] wrote: I have a question regarding altering

Re: the biggest myfaces webapp

2006-08-19 Thread Martin Marinschek
More than 100 concurrent users (concurrent meaning active at the same time) - no! regards, Martin On 8/19/06, Werner Punz [EMAIL PROTECTED] wrote: Rogerio Pereira schrieb: Somebody has myfaces webapps with more than 50/100 concurrent users? To my knowledge Irian has done several

Re: Bug in the tomahawk inputTextarea UI component???

2006-08-18 Thread Martin Marinschek
Hi Dave, Cory, Lking, the answer is simple - this is not a bug, but a feature. You'll need to make sure that you clean out the submitted value (and eventually the local value, but I don't think that's nessary in your case) of the component for which you want to have a changed value. How to do

Re: New component - interested?

2006-08-18 Thread Martin Marinschek
should provide a lot of options for the component in order to work as expected. OptionsMenu is a contextual menu component, and popup component is used for displaying some popup messages. Or maybe we could add this functionality without affecting the easy usage!? On 8/16/06, Martin Marinschek [EMAIL

Re: New component - interested?

2006-08-16 Thread Martin Marinschek
Interesting! How about merging this into the popup-component - it looks pretty similar to me functionality-wise? regards, Martin On 8/8/06, Trica Laurentiu [EMAIL PROTECTED] wrote: Hi again Yes, it is a JavaScript, no requests are sent when clicking on the title. And the container is

<    1   2   3   4   5   6   7   8   9   10   >