Fwd: t:buffer as variable

2005-11-07 Thread Martin Marinschek
-- Forwarded message -- From: Martin Marinschek [EMAIL PROTECTED] Date: Nov 7, 2005 9:21 AM Subject: Re: t:buffer as variable To: Dave [EMAIL PROTECTED] something like this: t:aliasBean alias=#{xxxvalue} value=#{backBean.valueFromDB} h:graphicImage url=a.jpg rendered=#{xxxvalue

Re: Double submit problem

2005-11-07 Thread Martin Marinschek
This problem should be fixed in current head - but not yet in a release. regards, Martin On 11/7/05, Yee CN [EMAIL PROTECTED] wrote: I am using 1.1.1 and I am experiencing this problem. Recent posting on Load Testing indicates that saving state in client could be awfully slow, so that may

Re: Problem with Date Conversion with 1.1.1 release - release bug??

2005-11-07 Thread Martin Marinschek
Please open an issue in our issue tracker for this. http://myfaces.apache.org/issue.html regards, Martin On 11/7/05, Rogerio Saulo (P) [EMAIL PROTECTED] wrote: Hi All, I have an custom Date converter that works well with all version of MyFaces until 1.1.1, When I upgrade from 1.1.0 to

Re: panelTabbedPane tab input style

2005-11-07 Thread Martin Marinschek
Well, that is a style that was left out when the component was created originally, sorry... What you can do is write up a small patch for the inclusion of this - or use !important statements in your css to overwrite the style of the inputs. regards, Martin On 11/7/05, Bobby Rosenberger [EMAIL

Re: How to add a Wiki page

2005-11-06 Thread Martin Marinschek
You need to create a login for yourself - then you can start edit pages. As soon as you have a CamelCase word on a page, this word is a reference to a page - and by clicking on this word, you can start creating this page. That's the same with all WIKIs. regards, Martin On 11/6/05, Yee CN

Re: cyclic managed bean references

2005-11-06 Thread Martin Marinschek
No. Spec says we have to throw a FacesException. regards, Martin On 11/6/05, Dennis Byrne [EMAIL PROTECTED] wrote: I was getting a StackOverflow using 1.0.9 because I had cyclic managed bean references. These guys probably had the same. http://issues.apache.org/jira/browse/MYFACES-394?

Re: MyFaces is not JSF API compliant?

2005-11-06 Thread Martin Marinschek
There must be a misunderstanding here. The view needs to be created/recreated a long time before the INVOKE_APPLICATION phase, as you need it throughout the other phases. How would you go through the different components in the view if you don't have a view and a view root to start processing?

Re: t:buffer as variable

2005-11-04 Thread Martin Marinschek
Not being the definite expert on buffer, I would have said now. 'Buffer' buffers the output of the component rendering, afaik. Have you tried aliasBean for achieving this? With aliasBean, the value is retrieved once and set into the session - and is later recollected when the aliasBean is closed.

Re: How to create component without binding?

2005-11-04 Thread Martin Marinschek
What you want to do is do a binding for panelGroup and then add children to this panelGroup - with this you can create extra components. code snippet (not compiled except in my head ;): public UIComponent getPanelGroup() { HtmlPanelGroup panelGroup = new HtmlPanelGroup();

Re: How to create component without binding?

2005-11-04 Thread Martin Marinschek
the JSF engine in my setter method. Now I see that Martin proposes to create it in the getter. But should be the best approach then? 2005/11/4, Martin Marinschek [EMAIL PROTECTED]: What you want to do is do a binding for panelGroup and then add children to this panelGroup - with this you

Re: How to create component without binding?

2005-11-04 Thread Martin Marinschek
); tabla0.getChildren().add(col1); tabla0.getChildren().add(col2); tab0.getChildren().add(tabla0); this.panelTabuladores.getChildren().add(tab0); } } 2005/11/4, Martin Marinschek [EMAIL PROTECTED]: Well, for very easy

Re: Javascript conflict between x:tree2 and x:inputCalendar

2005-11-04 Thread Martin Marinschek
yes, that might as well be. Can you add this to the open issue? regards, Martin On 11/4/05, Luciano Medina [EMAIL PROTECTED] wrote: Does anyone have any idea of what's happening with the javascript resources lately, that they seem to conflict with each other? Specifically, as I reported on

Re: How to create component without binding?

2005-11-04 Thread Martin Marinschek
the outputlinks in UIviewroot and skip all the binding stuff? René Ott -Ursprüngliche Nachricht- Von: Martin Marinschek [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 4. November 2005 09:49 An: MyFaces Discussion Betreff: Re: How to create component without binding? What you want to do

Re: How to create component without binding?

2005-11-04 Thread Martin Marinschek
components but itself doesn't get displayed? This way it would be possible to make a binding to this component without the need to display the component. René -Ursprüngliche Nachricht- Von: Martin Marinschek [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 4. November 2005 11:06 An: MyFaces

Re: ##jsf IRC channel

2005-11-04 Thread Martin Marinschek
As for the vitality of this mailing list, we are not so far off to Rails says my GMail ;) regards, Martin On 11/4/05, Eurig Jones [EMAIL PROTECTED] wrote: Yup, Agreed I was pretty shocked to see how empty ##JSF was when I logged on a while back.. Lets try and make it a bit more lively :-)

Re: File upload, exceed limit

2005-11-03 Thread Martin Marinschek
That is an old problem we haven't resolved yet. What we should do is set a request parameter I think - and on decode, the fileUpload component checks this request parameter and adds a message. What do you think? regards, Martin On 11/3/05, Dave [EMAIL PROTECTED] wrote: I am using FileUpload.

Re: inputFileUpload using excessive amounts of memory

2005-11-03 Thread Martin Marinschek
Sounds very interesting. Can you profile through what the extensions filter is doing? The question is when this amount of memory is built up, if in the extension filter or later in the JSF life-cycle, I can't imagine where this would be. regards, Martin On 11/3/05, Robert Parsons [EMAIL

Re: Writing my own Tags

2005-11-03 Thread Martin Marinschek
source? I hope you are packaging the classes ;) regards, Martin On 11/3/05, Rafael Nami [EMAIL PROTECTED] wrote: Sorry about this silly question, but I have this simple problem. When I write my own component, I do essentially what corejsf book says, and it works nicely. But when I try to

Re: Custom converter strange behaviour

2005-11-03 Thread Martin Marinschek
Hmm... did you add a saveState/restoreState section where the converters field are stored into/restored from the application state? just like in the following example for NumberConverter (fyi: converters need to save/restore their state much like components). // STATE SAVE/RESTORE

Re: Custom converter strange behaviour

2005-11-03 Thread Martin Marinschek
, though. So while it's a very good idea to provide saveState/restoreState, It may not affect the problem here. On 11/3/05, Martin Marinschek [EMAIL PROTECTED] wrote: Hmm... did you add a saveState/restoreState section where the converters field are stored into/restored from

Re: MyFaces 1.1.1 - how to center the dataScroller component?

2005-11-03 Thread Martin Marinschek
have you tried margin:auto? regards, Martin On 11/3/05, Matthias Kahlau [EMAIL PROTECTED] wrote: Hi all! Does anybody know how I can configure the dataScroller, so that it's centered in the page? I've tried to use text-align:center on many different available CSS attributes of the

Re: Calendar problems??

2005-11-03 Thread Martin Marinschek
Hi, we've had Thomas Spiegl look at problems with duplicate Ids and facelets with the navMenu - and he has found no resolution (in the limited time he had for this). It seems that several components are now incompatible with facelets, and it just shows up cause I implemented better errror

Re: Ajax inputSuggestAjax tag works??

2005-11-02 Thread Martin Marinschek
Are you using the MyFaces implementation? Or are you using the RI? the names are references to the state the application saves on the client. MyFaces names them differently to the RI, this is why the problem occurs. What you can do is switch to server side state saving - or use MyFaces as

Re: Removal From List

2005-11-02 Thread Martin Marinschek
Hmm... it should be [EMAIL PROTECTED] if that doesn't work, I don't know. @Manfred: perhaps you can take him off? regards, Martin On 11/2/05, Nail, Evan Burke [EMAIL PROTECTED] wrote: OK I apologize for this message, but is there anyone who can unsubscribe me from this list. I've tried

Re: PanelGrid with dynamic amount of items

2005-11-02 Thread Martin Marinschek
Can I resuggest what Mathias said - try out t:newspaperTable regards, Martin On 11/2/05, Yee CN [EMAIL PROTECTED] wrote: Mike, Thanks. You suggestions make a lot of sense. I can see how to subclass a datalist. As with adding a layout type - I have not finished scaling the learning curve

Re: Some notes of my loadtest results

2005-11-02 Thread Martin Marinschek
Actually, Werner Punz was working on something like a server side saveState tag which uses a phase listener to store and restore the data - it is checked into the sandbox. Maybe we could merge the functionality to have a saveState that also works without restore/saveState being called and

Re: PanelGrid with dynamic amount of items

2005-11-01 Thread Martin Marinschek
Why don't you use a dataTable for this? regards, Martin On 11/1/05, Sven Haiges [EMAIL PROTECTED] wrote: Hi there, I would like to render a panelGrid with an dynamic amount of items in it. The items should be bound to a managed bean variable and based on the database result, the display

Re: PanelGrid with dynamic amount of items

2005-11-01 Thread Martin Marinschek
dataTable and display 1 item each row? cheers\ sven Am 01.11.2005 um 12:49 Uhr schrieb Martin Marinschek: Why don't you use a dataTable for this? regards, Martin On 11/1/05, Sven Haiges [EMAIL PROTECTED] wrote: Hi there, I would like to render a panelGrid with an dynamic

Re: PanelGrid with dynamic amount of items

2005-11-01 Thread Martin Marinschek
of columns specified? Thanx! Sven Am 01.11.2005 um 13:08 Uhr schrieb Martin Marinschek: Look at what the dynamic dataTable does - with this and the h:columns tag, you can arrange things horizontally as well. regards, Martin On 11/1/05, Sven Haiges [EMAIL PROTECTED] wrote

Re: PanelGrid with dynamic amount of items

2005-11-01 Thread Martin Marinschek
: 1 | 2 | 3 | 4 5 | 6 Any ideas? Cheers, Sven Am 01.11.2005 um 13:23 Uhr schrieb Martin Marinschek: Best is you look into the examples - there you'll find a nice example for the dataTable. link to see it in action: http://www.irian.at/myfaces/crossDataTable.jsf regards

Re: PanelGrid with dynamic amount of items

2005-11-01 Thread Martin Marinschek
Oh right, I didn't even see that. Of course, you need to add the text to the children list of the parent component. regards, Martin On 11/1/05, Volker Weber [EMAIL PROTECTED] wrote: Hi, Sven Haiges wrote: thanx! i first wanted to try out the programmatic way. I bound a panelGrid to a

Re: __LINK_TARGET__ changed to _link_hidden_?

2005-11-01 Thread Martin Marinschek
The name of the field stems from: public static final String HIDDEN_COMMANDLINK_FIELD_NAME = _link_hidden_; This constant originally was private, but I am changing it to public for you, so it should be accessible from now on. regards, Martin On 11/1/05, CONNER, BRENDAN (SBCSI) [EMAIL

Re: __LINK_TARGET__ changed to _link_hidden_?

2005-11-01 Thread Martin Marinschek
, November 01, 2005 10:53 AM To: 'MyFaces Discussion' Subject: RE: __LINK_TARGET__ changed to _link_hidden_? Great! Thanks. It is useful when simulating a click from JavaScript. - Brendan -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 01

Re: curious problem with dates

2005-11-01 Thread Martin Marinschek
Ok, but we should talk with the spec people first - if they will change the behaviour anyways, we can go with the same name for the tag. regards, Maritn On 11/1/05, Travis Reeder [EMAIL PROTECTED] wrote: Hi Francesco, This isn't expected behaviour, it's spec'ed behaviour. This tag is

Re: Incompatible changes to AddResource class

2005-10-31 Thread Martin Marinschek
changed. Any suggestions how/where we should do this? 2005/10/31, Martin Marinschek [EMAIL PROTECTED]: Sorry - you are right, I was wrong. Can you help us out and provide a documentation patch for this? Or open a jira-issue? regards, Martin On 10/31/05, Simon Kitching [EMAIL

Re: Bugs with commandLink rendered=...

2005-10-31 Thread Martin Marinschek
Is userBean a request scoped Bean? If yes, you'll need to use a session bean instead or use t:saveState to save the state of the user bean between requests. The problem is that the link is rendered, you click on it, the lifeCycle is triggered again and now the rendered attribute of the link is

Re: Bugs with commandLink rendered=...

2005-10-31 Thread Martin Marinschek
-Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Monday, 31 October 2005 6:13 PM To: MyFaces Discussion; [EMAIL PROTECTED] Subject: Re: Bugs with commandLink rendered=... Is userBean a request scoped Bean? If yes, you'll need to use a session bean instead or use

Re: PanelTabbedPane validation problem

2005-10-31 Thread Martin Marinschek
you, I tried the nightly myfaces-20051030.zip, but I guess the patch is not applied there yet. I will check again a few days later. Regards, On 10/28/05, Martin Marinschek [EMAIL PROTECTED] wrote: Server-Side patch is applied - get it from the next nightly. I would suppose that yes

Re: Is there any schedule to implement JSF1.2(JSR252)?

2005-10-31 Thread Martin Marinschek
Hi, JSF 1.2. is not released so far - so there is no time schedule yet. In fact, some of the new features in JSF 1.2 are already implemented in MyFaces in the current version, e.g. client side encryption, saving of more than one version of the server side state. The one major issue missing is

Re: Encoding German Umlauts

2005-10-31 Thread Martin Marinschek
No, UTF-8 is not a superset of ISO-8859-1. It is true that you can encode many more characters with UTF-8 than with ISO-8859-1, but the way the encoding is done is very different. With UTF-8, you get two bytes for the umlauts, as UTF-8 encodes only the standard characters in the first byte (the

Re: PanelTabbedPane validation problem

2005-10-31 Thread Martin Marinschek
, Turgay On 10/31/05, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Turgay, to change the panelTabbedPane to server side, you'd need to set the following attribute: serverSideTabSwitch=true do you see this attribute or not? Cause I do think that I did apply the patch before 10/30

Re: curious problem with dates

2005-10-31 Thread Martin Marinschek
I believe I am with Brendan on this. Let's give it an attribute. regards, Martin On 11/1/05, Simon Kitching [EMAIL PROTECTED] wrote: That's a good point. If the *defaults* for t:convertDateTime (currently s:convertDateTime) are different than f:convertDateTime then perhaps it should have a

Re: I have to add a listener class. why?

2005-10-30 Thread Martin Marinschek
In short, the listener is not found - Simon is absolutely right in that with JBoss, your listener should be found automatically. So this basically means that the MyFaces jar file is not accessible to your container somehow - or that the tld files in the jar file cannot be read, as the listener is

Re: Something is missing in JSF?

2005-10-30 Thread Martin Marinschek
Look at Craig's struts-shale. It's an add on library for JSF that provides features like this. regards, Martin On 10/30/05, Yee CN [EMAIL PROTECTED] wrote: Hi, I am having problem finding a solution for a simple task that I have done a hundred times in ASP.NET. Let me illustrate a

Re: Incompatible changes to AddResource class

2005-10-30 Thread Martin Marinschek
I have looked back into the svn log until the 17.8.2005 - no change in this method until this time. Obviously you must have mistaken something - that also renders your other mail about the context not being prepended invalid! regards, Martin On 10/31/05, Simon Kitching [EMAIL PROTECTED] wrote:

Re: Incompatible changes to AddResource class

2005-10-30 Thread Martin Marinschek
. Regards, Simon Martin Marinschek wrote: I have looked back into the svn log until the 17.8.2005 - no change in this method until this time. Obviously you must have mistaken something - that also renders your other mail about the context not being prepended invalid! regards

Re: Are the Java Class Sources for the Examples Available?

2005-10-29 Thread Martin Marinschek
Of course it is - this is all open source ;) download a source distribution, or instruct your svn client as described on: http://myfaces.apache.org/svn.html you'll find the examples code under current/examples/simple regards, Martin On 10/28/05, James Reynolds [EMAIL PROTECTED] wrote: I'm

Re: inputSuggestAjax trouble

2005-10-28 Thread Martin Marinschek
there was a post recently with regard to that. I think right after 10th, it should work - up until 19th or so? blame my brain if that is the wrong assumption ;) regards, Martin On 10/28/05, Francesco Consumi [EMAIL PROTECTED] wrote: Quoting Martin Marinschek [EMAIL PROTECTED]: Are you

Re: MyFaces 1.1.1 bug: itemStyleClass went missing

2005-10-28 Thread Martin Marinschek
That was added after the branch of 1.1.1, afaik. Use the nightly build in between - and use 1.1.2 as soon as it's there. regards, Martin On 10/28/05, Randahl Fink Isaksen [EMAIL PROTECTED] wrote: It looks very much like the documented attribute itemStyleClass of the t:dataList tag never made

Re: inputSuggestAjax trouble

2005-10-28 Thread Martin Marinschek
then search through the list - I do remember there was someone posting about this. aging is going fast, obviously ;) regards, Martin On 10/28/05, Francesco Consumi [EMAIL PROTECTED] wrote: Quoting Martin Marinschek [EMAIL PROTECTED]: there was a post recently with regard to that. I

Re: How to find out which implementation is running

2005-10-28 Thread Martin Marinschek
Good question. If you devise something like this, there should also be a way to check for the spec version of the jsf implementation running. regards, Martin On 10/28/05, Jesse Alexander (KBSA 21) [EMAIL PROTECTED] wrote: Hi When I want to write a component that must run under more than

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-28 Thread Martin Marinschek
my RowData class, the problem doesn't occurs. Thanks. Guedes On 10/27/05, Martin Marinschek [EMAIL PROTECTED] wrote: DataModel is not Serializable, that is true. It shouldn't be serialized, though, I would suppose. Only its contents! regards, Martin

Fwd: Error while saving state in 'client' - PLEASE HELP

2005-10-28 Thread Martin Marinschek
(HttpProcessor.java:1027) at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125) at java.lang.Thread.run(Thread.java:536) Sorry for disturb you (I don't know if it is the right term) ... Thanks Guedes On 10/28/05, Martin Marinschek [EMAIL PROTECTED] wrote

Re: PanelTabbedPane validation problem

2005-10-28 Thread Martin Marinschek
Server-Side patch is applied - get it from the next nightly. I would suppose that yes - it should work, it has worked in the old server side implementation. If you want to implement a listener for the client side, you'll need AJAX - possible, but not the most simple thing on earth. regards,

Re: forceId on form

2005-10-27 Thread Martin Marinschek
As to the first question: no, I don't think so. Using EL in the forceId has been disabled much to the same reasons as for the id - the id may not be dynamic in between requests. We have discussed if something like an initId attribute would make sense, though. regards, Martin On 10/26/05, Dave

Re: forceId on form

2005-10-27 Thread Martin Marinschek
the same portlet displayed multiple times on the same page. This causes the javascript to not work because the IDs are the same. Is there any way around this? It seems like we need a way to force the CSS/JS ids to be something different (random?) from the ids used in the component tree. Martin

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-27 Thread Martin Marinschek
, Martin Marinschek [EMAIL PROTECTED] wrote: Are all your model classes serializable? E.g. fields - is it serializable? regards, Martin On 10/27/05, PATRICIA GUEDES [EMAIL PROTECTED] wrote: Anyone please Thanks. Guedes On 10/26/05, PATRICIA GUEDES [EMAIL

Re: Error while saving state in 'client' - PLEASE HELP

2005-10-27 Thread Martin Marinschek
On 10/27/05, Martin Marinschek [EMAIL PROTECTED] wrote: You have both messages? once with ListDataModel and once with ArrayDataModel? Wonder where the stack trace for this would be regards, Martin On 10/27/05, PATRICIA GUEDES [EMAIL PROTECTED] wrote: I can do

Re: inputSuggestAjax trouble

2005-10-27 Thread Martin Marinschek
Are you using client-side state saving or server side? try to switch to client-side - server side used to work in some of the last nightly builds, but a recent bug has introduced another problem :( regards, Martin On 10/28/05, Francesco Consumi [EMAIL PROTECTED] wrote: Hi all, new day, new

Re: SelectOneState for US?

2005-10-26 Thread Martin Marinschek
No not yet! If you develop one, contribute it ;) regards, Martin On 10/25/05, Santiago, Ray [EMAIL PROTECTED] wrote: Use a dropdown list and populate it with all the states on the server side. From: Dave [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: Wizard app

2005-10-26 Thread Martin Marinschek
I am forwarding this question to Gerald - who is not on this mailing-list, but created a wizard for an auctioning system we are currently working on. regards, Martin On 10/26/05, Colin Chalmers [EMAIL PROTECTED] wrote: Hi all, I'd like to know how others are building wizard types of

Re: inputCalendar javascript Error on IE

2005-10-25 Thread Martin Marinschek
Currently there is a lot done with regard to patching and bug fixes. So the releases and the nightly builds are kind of a moving target. Glad that you found one that fixed both issues for you ;) regards, Martin On 10/24/05, Kevin [EMAIL PROTECTED] wrote: Hi, For those of you who have

Re: Comparable validation design

2005-10-25 Thread Martin Marinschek
@attribute name: is there something like this in the RI 1.2? I think that yes, so maybe we should go with their name for this. @comparable: right, there is the interface name - I didn't think about that. But then the equalsValidator is named by the method it calls - so maybe we should take the

Re: How to use t:saveState ?

2005-10-25 Thread Martin Marinschek
Are you using client-side state saving? Try to switch to it just for trying out if this works. regards, Martin On 10/24/05, Juan Medín Piñeiro [EMAIL PROTECTED] wrote: Sorry, It was a typo writing the code in the mail. It should be: f:view BODY t:saveState

Re: Setting a collection????

2005-10-25 Thread Martin Marinschek
Can you elaborate a bit more - with snippets from your source? regards, Martin On 10/24/05, Rafael Nami [EMAIL PROTECTED] wrote: Hi everyone We are trying to do something like this: In a page, we have to populate a collection with informations, so we gave to the user a inputText that he can

Re: error with sandbox ajax component on

2005-10-25 Thread Martin Marinschek
bean that is supposed to be called, what would be its signature? public List myMethod() or public List myMethod(String inputParam) ? thanks for your answer and regards marco On 10/25/05, Martin Marinschek [EMAIL PROTECTED] wrote: Are you using a different version of sandbox.jar

Re: error with sandbox ajax component on

2005-10-25 Thread Martin Marinschek
As to your other problem - anything more in your log, stacktrace? regards, Martin On 10/25/05, Martin Marinschek [EMAIL PROTECTED] wrote: It depends if you provide the maxItems attribute or not - if not, first example below, if yes, second sample below: public List getItems(String

Companies using MyFaces

2005-10-25 Thread Martin Marinschek
Hi *, please add your company's name on http://wiki.apache.org/myfaces/Companies_Using_MyFaces if you use MyFaces in one of your applications at these companies. The list starts looking impressive - good idea, Bruno ;) regards, Martin

Re: error with sandbox ajax component on

2005-10-25 Thread Martin Marinschek
It really looks as if you would use an older version of the implementation. JBoss supplies a version with MyFaces already, so try to get rid of this and replace it with your new version. regards, Martin On 10/25/05, Marco Mistroni [EMAIL PROTECTED] wrote: Hello Martin, here's stack

Re: [PROPOSAL] PRETTY_HTML, was [RE: JFS's html output]

2005-10-25 Thread Martin Marinschek
Well, you might want to do it in IE? something like JTidy in our ExtensionFilter might be a good option. regards, Martin On 10/25/05, Werner Punz [EMAIL PROTECTED] wrote: I have not checked out the code yet, but I guess the easiest solution to deal with it would be a servlet filter. Maybe

Re: How to use t:saveState ?

2005-10-25 Thread Martin Marinschek
user will receive the state data for the whole application... It's a high price to pay for saveState. Does it always require to store the data in the client ? BTW, thanks to you and David for the help. Regards, - Juan On 10/25/05, Martin Marinschek [EMAIL PROTECTED] wrote

Re: Troubles with Calendar tag

2005-10-24 Thread Martin Marinschek
did you set the popupDateFormat attribute? regards, Martin On 10/23/05, Marco Mistroni [EMAIL PROTECTED] wrote: Hello all, i am trying to use the inputCalendar tag in my webapplication the default Locale on my machine is en_GB here's the declaration in my faces-config.xml

Re: Ajax components in sandbox seem to error under internet explorer

2005-10-22 Thread Martin Marinschek
autoupdateDataTable has a known bug with IE6 - which should be fixed in the latest nightly. inputSuggestAjax should work with IE6 no problem. regards, Martin On 10/22/05, Werner Punz [EMAIL PROTECTED] wrote: Travis Reeder wrote: IE version 6.029 has javascript errors on autoUpdateDataTable,

Re: Comparable validation design

2005-10-22 Thread Martin Marinschek
I agree with Jesse on his preferences. Just a naming thing - shouldn't it be comparingValidator or compareValidator instead of comparableValidator? By the way, are you guys going to move the optional validator framework over as well? regards, Martin On 10/21/05, Jesse Alexander (KBSA 21)

Re: Internationalization question

2005-10-22 Thread Martin Marinschek
try this - it _might_ work ;) h:outputText value=#{msg[remessaBean.verbete]} / regards, Martin On 10/21/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: At the beginning of your f:view you can have something like that: f:loadBundle basename=your.class.name var=bundle/ By default, I

Re: Using HMTL Editor inside a Tabbed Pane

2005-10-22 Thread Martin Marinschek
There has been a change in the tabbed panel to be client side only. It would be better to support the old server side mode as an option - do you have time to look into this? Would be great! regards, Martin On 10/22/05, Sven Haiges [EMAIL PROTECTED] wrote: One addition to that: I noticed

Re: Using HMTL Editor inside a Tabbed Pane

2005-10-22 Thread Martin Marinschek
JSF learning experience ;) regards, Martin On 10/22/05, Michael Ageeb [EMAIL PROTECTED] wrote: Yeah, i really miss the old server side mode. I don't like to load all data of other tabs when user uses only one. On Sat, 2005-10-22 at 16:27 +0200, Martin Marinschek wrote: There has been

Re: Using HMTL Editor inside a Tabbed Pane

2005-10-22 Thread Martin Marinschek
On 10/22/05, Michael Ageeb [EMAIL PROTECTED] wrote: Yeah, i really miss the old server side mode. I don't like to load all data of other tabs when user uses only one. On Sat, 2005-10-22 at 16:27 +0200, Martin Marinschek wrote: There has been a change in the tabbed panel to be client

Re: Possible Solutions: Using HMTL Editor inside a Tabbed Pane

2005-10-22 Thread Martin Marinschek
like to load all data of other tabs when user uses only one. On Sat, 2005-10-22 at 16:27 +0200, Martin Marinschek wrote: There has been a change in the tabbed panel to be client side only. It would be better to support the old server side mode as an option - do you have time to look

Re: Using HMTL Editor inside a Tabbed Pane

2005-10-22 Thread Martin Marinschek
: Yeah, i really miss the old server side mode. I don't like to load all data of other tabs when user uses only one. On Sat, 2005-10-22 at 16:27 +0200, Martin Marinschek wrote: There has been a change in the tabbed panel to be client side only. It would be better

Re: getting the view tree in a string

2005-10-22 Thread Martin Marinschek
UIComponent.getClientId(context) does the trick... regards, Martin On 10/22/05, Eurig Jones [EMAIL PROTECTED] wrote: Another question! All components when outputting their id's output the components position in the view tree. I'm writing a custom component, so how do I retrieve my

Re: Why I must click twice?

2005-10-21 Thread Martin Marinschek
This is a known bug - it should be fixed in the latest nightly build. Can you try this out? regards, Martin On 10/21/05, 六岁就很酷 [EMAIL PROTECTED] wrote: I use Myfaces(myfaces-1.1.1RC3) to build my web application. But I've got some troubles. There are two pages in my application, and there

Re: IF statement..?

2005-10-21 Thread Martin Marinschek
Try using #{ instead of {# ;) regards, Martin On 10/21/05, Volker Weber [EMAIL PROTECTED] wrote: Try rendered={#UserController.user.PQE} the 'is' is added by beanutils. Jeffrey Porter wrote: What am I missing here? h:outputLabel rendered={#UserController.user.isPQE}

Re: IF statement..?

2005-10-21 Thread Martin Marinschek
the other thing that causes problems very often is this: rendered=#{xxx.xxx no errror-message, no nothing-no output as well where you could check... I have been spending hours on searching the cause for problems like this. regards, Martin (Normally would ask another developer to look over

Re: IF statement..?

2005-10-21 Thread Martin Marinschek
, Volker Weber [EMAIL PROTECTED] wrote: Ok, that may be the reason that he didn't found an exception in his logs. but does #{UserController.user.isPQE} works? i think not, but never tested. Martin Marinschek wrote: Try using #{ instead of {# ;) regards

Re: IF statement..?

2005-10-21 Thread Martin Marinschek
If this works, we have a bug in our implementation! no lowercasing should be done if more than one uppercase characters, this is in the beans specification. regards, Martin On 10/21/05, Martin Marinschek [EMAIL PROTECTED] wrote: @Brendan: you are right in that if you have bean.getMe, you'll

Re: IF statement..?

2005-10-21 Thread Martin Marinschek
, but, hey, if it works, ... ;-) - Brendan -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Friday, October 21, 2005 10:16 AM To: MyFaces Discussion Subject: Re: IF statement..? If this works, we have a bug in our implementation! no lowercasing should

Re: IF statement..?

2005-10-21 Thread Martin Marinschek
specifically not work with #{bean.mE}? Wouldn't it just always do a toUpperCase() on the first character to come up with the corresponding method name? - Brendan -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Friday, October 21

Re: Broken links on myfaces.apache.org

2005-10-20 Thread Martin Marinschek
Very good! Sean, can you check this? Is this an infrastructure problem or a homepage problem? As for the mailing-lists: they are written like this to keep at least some of the spammers out. regards, Martin On 10/19/05, Brian Cook [EMAIL PROTECTED] wrote: The links on page

Re: dynamic reloading of faces-config.xml

2005-10-20 Thread Martin Marinschek
Short answer: no. I'd love to have a way to do this, really. As well as a way to reload properties-files - to make internationalization easier. If you want to invest some work in this, I could surely be of help to you while planning how to integrate this with MyFaces. regards, Martin On

Re: Myfaces under OC4J

2005-10-20 Thread Martin Marinschek
No. if you don't use Jetty (some version) you are usually good to go, and the listener will be included by the TLD files themselves. regards, Martin On 10/20/05, CONNER, BRENDAN (SBCSI) [EMAIL PROTECTED] wrote: So are you saying that we no longer have to define the listener in our web.xml

Re: survey: what tool are you using for JSF ?

2005-10-18 Thread Martin Marinschek
IntelliJ IDEA - without Faces support whatsoever :( regards, Martin On 10/18/05, Balaji Kalyansundaram [EMAIL PROTECTED] wrote: IntelliJ IDEA -Original Message- From: Dennis Byrne [mailto:[EMAIL PROTECTED] Sent: Tuesday, 18 October 2005 3:05 PM To: MyFaces Discussion Subject:

Super!

2005-10-18 Thread Martin Marinschek
Mathias, wow - you have solved the server side state saving problem we have had for ages? That will make some users very, very happy! Thanks from the whole team, great news indeed. Do you want to give us (on the dev list) a short wrapup on how you solved things? Did you keep close to the RI or

Re: problems wiht date extension tag

2005-10-17 Thread Martin Marinschek
Yes, sorry, there is currently a bug as the new date formatting does not seem to work in IE. We'll fix that as soon as possible. regards, Martin On 10/17/05, Marco Mistroni [EMAIL PROTECTED] wrote: Hello Werner, thanx.. i filed a bug on Jira here's the title Date tag does not display

Re: Exception Handling Blues...

2005-10-17 Thread Martin Marinschek
Do you use the MyFaces Tiles integration? with the MyFaces Tiles-ViewHandler? regards, Martin On 10/13/05, Marios Kerkemezos [EMAIL PROTECTED] wrote: Dear all, I know this has been discussed before, but some issues are still troubling me... I've been experimenting with different methods

Re: t:messages: label inside t:dataTable not expanded for validation messages

2005-10-17 Thread Martin Marinschek
Try this: h:form id=testForm t:messages/ t:dataTable id=testTable h:column f:facet name=header h:outputText value=Test label/ /f:facet h:inputText required=true id=testField/ /h:column /t:dataTable /h:form This is MyFaces specific behaviour though! regards, Martin On

Re: sandbox scheduler

2005-10-17 Thread Martin Marinschek
In fact, the scheduler has been pretty stable for some time and will be a very good candidate for moving over to tomahawk anytime soon. You'll need to use sandbox.jar and myfaces-all.jar if you want to use myfaces as an implementation, else sandbox.jar and tomahawk.jar if you use the RI.

Re: tree2: Treebacker bean problems

2005-10-17 Thread Martin Marinschek
This doesn't seem to be a MyFaces problem - rather a problem with your setup, don't ask me what is wrong here. Maybe you are including different versions of jar-files on your classpath? regards, Martin On 10/10/05, Anu Padki [EMAIL PROTECTED] wrote: Hello, I am very new to JSF and myfaces. I

Re: Tomahawk: Missing styleClass attribute of t:dataList???

2005-10-17 Thread Martin Marinschek
Which version do you use? I think I do remember me fixing this problem a while ago ;) regards, Martin On 10/10/05, Randahl Fink Isaksen [EMAIL PROTECTED] wrote: Is it really not possible to style the li elements generated by the t:dataList? If I set the styleClass attribute I only get a

Re: t:saveState server/client ... or request/session

2005-10-16 Thread Martin Marinschek
Back after my holidays... as for the key, I'd say an optional custom web.xml context parameter is the way to go. regards, Martin On 10/12/05, Dennis Byrne [EMAIL PROTECTED] wrote: Oh, and here's another one ;-) SSL encrypts everything. This is often a problem for high volume systems where

<    4   5   6   7   8   9   10   11   12   13   >