inputSuggestAjax and onchange

2005-11-16 Thread Francesco Consumi
Hi, I'm using that component, and in my webapp I need to launch some code when the user selects an item in dropdown list. I tried to use onchange event, but it is useless, because it is triggered *before* I choose an item, and NOT after, when the item is copied in input field. suggestions

Re: OC4J deployment problems

2005-11-16 Thread Khurram Ahmed
yup thanks i worked out the problem i had forgotten to delete myfaces.jar which came with myfaces1.0.9 while updating to myfaces1.1.0. On 11/16/05, Wayne Fay <[EMAIL PROTECTED]> wrote: Hi Khurram,I have deployed my project which uses MyFaces 1.1.0 (and Tomahawk)with absolutely no issues whatsoever

RE: ClassLoading problem

2005-11-16 Thread balaji.saranathan
Hi,   I guess I have some more problems here. We use acegi-security(depends on spring.jar) and depend on container level contexts for addressing certain security requirements. Therefore spring.jar is loaded from the common/lib directory. Now bundling myfaces along with my app seems to lead t

Re: javadocs for 1.0.9

2005-11-16 Thread Sean Schofield
I don't think the archived releases are mirrored so its ok to download them directly from the link in my last email. There isn't to much interest in older releases so those are OK to host at ASF. There is a link to the "archive" on the download page but its kind of hidden in the text. You did ev

Re: HtmlPanelTabbedPane & Update Model

2005-11-16 Thread Simon Kitching
Enrique Medina wrote: Hi, Is there a justification why the broadcast method of the HtmlPanelTabbedPane calls getFacesContext().renderResponse(), so the model doesn't get updated? I mean, how can I preserve data from tab changing? Some time ago someone proposed to extend the component commen

RE: javadocs for 1.0.9

2005-11-16 Thread Jesse Alexander \(KBSA 21\)
Sorry, I was looking some hours ago at the download-page. As the use of mirrors is recommended I just found 1.1.0 and 1.1.1 but no 1.0.9. Shame on me Alexander -Original Message- From: Sean Schofield [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 12:00 AM To: MyFaces Discu

HtmlPanelTabbedPane & Update Model

2005-11-16 Thread Enrique Medina
Hi, Is there a justification why the broadcast method of the HtmlPanelTabbedPane calls getFacesContext().renderResponse(), so the model doesn't get updated? I mean, how can I preserve data from tab changing? Some time ago someone proposed to extend the component commenting that line and also the

problem with Tomahawk column

2005-11-16 Thread frohman
Hi, I am using the Tomahawk :column tag with the Tomahawk :dataTable. I am setting the classes for the header and footer in the facets, but I get: javax.faces.FacesException: /test.jsp(13,5) Unable to find setter method for attribute: footerstyleClass org.apache.myfaces.context.serv

documentation for t:saveState

2005-11-16 Thread Simon Kitching
Hi, There's some great documentation on the saveState component on the myfaces wiki. The tomahawk.tld file isn't bad. The comments on the UISaveState class are minimal. I'd like to improve the class javadoc by including a little of the wiki content. Obviously including all of it is not relev

request parameters w/ jscookmenu

2005-11-16 Thread Dennis Byrne
How do I sneak a request parameter into a t:navigationMenuItem ? Dennis Byrne

Re: javadocs for 1.0.9

2005-11-16 Thread Sean Schofield
There is a link to them on the download page [1]. sean [1] http://archive.apache.org/dist/myfaces/ On 11/16/05, Jesse Alexander (KBSA 21) <[EMAIL PROTECTED]> wrote: > just where are the 1.0.9 download-files? > > regards > Alexander > > -Original Message- > From: Sean Schofield [mailto:[E

RE: javadocs for 1.0.9

2005-11-16 Thread Jesse Alexander \(KBSA 21\)
just where are the 1.0.9 download-files? regards Alexander -Original Message- From: Sean Schofield [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 16, 2005 7:24 PM To: MyFaces Discussion Subject: Re: javadocs for 1.0.9 The javadoc should be in one of the release bundles (source?) f

Controlling URL on h:graphicImage

2005-11-16 Thread Saumil Mehta
Hello,   I have a graphicImage which receives its url from a backing bean. However, the bean passes a relative URL of the following form “/resources/common/image.gif”. This relative URL is understood by the underlying webserver (Jetty) and is correctly rendered if left untouched. However,

Re: Strange error with selectItems: solved

2005-11-16 Thread Mike Kienenberger
In order to convert the string returned by the selectOneMenu, it must know what datatype to convert it to. It does this by using reflection-like behavior on the value binding (or looking it up in the value binding -- same thing in practice). Since there was no valid return value for the value set

Re: Strange error with selectItems

2005-11-16 Thread Mike Kienenberger
Not really. The default Integer converter really should do the right thing. Try setting up a simpler test case that just has the select item pulldown on a page by itself. Another thing to do is set a breakpoint where the exception is being thrown ("javax.faces.FacesException: Value is no String

Re: Strange error with selectItems: solved

2005-11-16 Thread Don Tam
Hi, I've found the problem, but it seems very odd to me. The issue was actually (also?) the fact that the underlying bound property, item.reportsTo, was null. I think the error message should indicate that instead of a converter error? And why did it work with a manually inserted (in the j

Re: Why tabs look like buttons?

2005-11-16 Thread Bobby Rosenberger
Hey Don, I did some experimenting and found that changing the selector you mention does have an effect on my tabpanes. For instance, I did the following: .myFaces_panelTabbedPane_pane {         background-color: blue;     } and found the background color of my tabbedpanes had indeed changed to b

Re: Why tabs look like buttons?

2005-11-16 Thread Bobby Rosenberger
Hey Rodney, Thanks for trying that experiment. Sounds like you've found a bug. I am not using 'save logic'. I found that even when doing the simplest of tabbedpanes, my tabs still looked like buttons (when all of the criteria I listed in my other thread were present). Hopefully the .css overrid

Re: Strange error with selectItems

2005-11-16 Thread Don Tam
Hi Mike, Thank you for your response. The component id10:... is the f:selectItems component. If I comment that one line out then the jsp generates normally. The kinds of objects in the selectList are javax.faces.model.SelectItem, with an Integer value and a String label, using the construc

Re: Strange error with selectItems

2005-11-16 Thread Mike Kienenberger
On 11/16/05, Don Tam <[EMAIL PROTECTED]> wrote: > javax.faces.FacesException: Value is no String and component > _id10:display_0:_id22 does not have a Converter Which component does the "_id10:display_0:_id22" string refer to? Might help to put in some id attributes for the data tables and selec

Re: t:updateActionListener documentation

2005-11-16 Thread Simon Kitching
Mike Kienenberger wrote: On 11/16/05, Simon Kitching <[EMAIL PROTECTED]> wrote: AFAIK in practice only one such component will actually cause an ActionEvent on the server side. Actually, for links there is is a single hidden field in the form that is assigned the id of the link actually clicked,

Re: t:updateActionListener documentation

2005-11-16 Thread Mike Kienenberger
On 11/16/05, Simon Kitching <[EMAIL PROTECTED]> wrote: > AFAIK in > practice only one such component will actually cause an ActionEvent on > the server side. Actually, for links there is is a single hidden field > in the form that is assigned the id of the link actually clicked, so > it's physicall

Re: Why is verbatim component transient?

2005-11-16 Thread Volker Weber
It's in the spec :-(. 9.4.17 ... and the transient property must be set to true. ... Any thoughts about having a tag? Volker Weber wrote: > Hi, > > i just came over a problem with verbatim tags in ajax enabled components. > see: > http://www.mail-archive.com/users%40myfaces.apache.org/msg12124

Re: t:updateActionListener documentation

2005-11-16 Thread Simon Kitching
Mike Kienenberger wrote: On 11/16/05, Martin Marinschek <[EMAIL PROTECTED]> wrote: Just one action event is possible on each request. Maybe I'm misunderstanding the question, or maybe I'm misinterpreting the behavior, but I think any number of action events can fire on each page submit. This

Strange error with selectItems

2005-11-16 Thread Don Tam
Hi, I keep getting the error: javax.faces.FacesException: Value is no String and component _id10:display_0:_id22 does not have a Converter And this is bizarre, because I have a List of SelectItems, which is nearly identical to another list that works fine elsewhere - Integer value and String

Re: Why is verbatim component transient?

2005-11-16 Thread Simon Kitching
Volker Weber wrote: Hi, i just came over a problem with verbatim tags in ajax enabled components. see: http://www.mail-archive.com/users%40myfaces.apache.org/msg12124.html The UIOutput components created for verbatim tags are not saved to state because there are explicitly set to transient. Th

Re: javadocs for 1.0.9

2005-11-16 Thread Sean Schofield
The javadoc should be in one of the release bundles (source?) for 1.0.9 already. Just download that one. sean On 11/16/05, Dennis Byrne <[EMAIL PROTECTED]> wrote: > was t:graphicImage included in the 1.0.9 release? > > can we please get a seperate section on the web site for > 1.0.9 javadocs and

Re: life cycle in version 1.1

2005-11-16 Thread Sean Schofield
Your table only has one set of components per row. When rendering (or validating, etc.) the same component is iterrated over for each "row" of data. So its not as many objects as you think (but it is still iterrating through each row of *visible* data.) If you have paging in your data table, you

Re: life cycle in version 1.1

2005-11-16 Thread Mike Kienenberger
Yes. Otherwise, you couldn't use dataTable.getRowData() to determine what row your command should affect. On 11/16/05, ::SammyRulez:: <[EMAIL PROTECTED]> wrote: > so if I have a dataTable in a page with a commandlink on each row when > I click on the link the dataTable binding is reloaded before

Re: MyFaces and Spring.

2005-11-16 Thread Mike Kienenberger
Well, I decided to go ahead and download cglib-nodep-2.1_3.jar and add it to my project, and so far, things appear to be working. Thanks for both of your help. On 11/16/05, Mike Kienenberger <[EMAIL PROTECTED]> wrote: > Thanks, Yee and Marco. > > Under jsf-spring 2.7.1, here is what I have been u

javadocs for 1.0.9

2005-11-16 Thread Dennis Byrne
was t:graphicImage included in the 1.0.9 release? can we please get a seperate section on the web site for 1.0.9 javadocs and 1.1.1 javadocs? Dennis Byrne

Re: life cycle in version 1.1

2005-11-16 Thread ::SammyRulez::
so if I have a dataTable in a page with a commandlink on each row when I click on the link the dataTable binding is reloaded before the action of the command link is occured? what if contains hundreds of row...?? For sure I'm missing something... ;-( 2005/11/16, Sean Schofield <[EMAIL PROTECTED]>

Re: life cycle in version 1.1

2005-11-16 Thread ::SammyRulez::
I remove the param ad, just to test put a default value, but nothing is changed. what do you suggest me to do? using actionEvent? if yes how can I pass params? thank you very mutch 2005/11/16, Mike Kienenberger <[EMAIL PROTECTED]>: > I'm fairly certain that using loses f:param data and > t:save

Re: MyFaces and Spring.

2005-11-16 Thread Mike Kienenberger
Thanks, Yee and Marco. Under jsf-spring 2.7.1, here is what I have been using successfully for months: 1) Deleted META-INF/faces-config.xml out of the jsf-spring.jar file since the file was defective. 2) had variable resolver configured in WEB-INF/faces-config.xml (restoring functionality from s

Re: life cycle in version 1.1

2005-11-16 Thread Sean Schofield
That's how JSF works. The page basically posts back to itself so that it has a chance to do conversion, validation and handle events. If you use immediate = true (on the commandLink) you can skip the Process Validations and Update Model Phases. The Apply Request Values phase still happens though

Re: life cycle in version 1.1

2005-11-16 Thread Mike Kienenberger
I'm fairly certain that using loses f:param data and t:saveState data because it causes two lifecycle invocations -- first the old page is reloaded and the action is executed. Then the navigation rules force a second lifecycle invocation to create the new page. That said, I've never used f:param

Re: 500 error w/ collapsiblePanel example

2005-11-16 Thread Dennis Byrne
There is also a jasper exception w/ the dataList :( Original message >Date: Tue, 15 Nov 2005 19:10:22 +0100 >From: Martin Marinschek <[EMAIL PROTECTED]> >Subject: Re: 500 error w/ collapsiblePanel example >To: MyFaces Discussion > >ok, I get the 500 error if I click on the test link

Re: life cycle in version 1.1

2005-11-16 Thread ::SammyRulez::
sadly nothing is changed :-( ;-) 2005/11/16, Grant Smith <[EMAIL PROTECTED]>: > Try immediate="true" in your commandLink. > > > On 11/16/05, ::SammyRulez:: <[EMAIL PROTECTED]> wrote: > > i notice that if I have a page with a action that drive to another > > page like this > > > > > >

RE: Why tabs look like buttons?

2005-11-16 Thread Burke, Rodney
Hey Bobby,   The ‘save logic’ is definitely the source of the tabs changing into buttons. I have 2 tabbed panels and only applied the ‘save logic’ to one and it is only this changed one that exhibits the tab button look.   Just to double check, I commented out the ‘save logic’ and th

Re: life cycle in version 1.1

2005-11-16 Thread Grant Smith
Try immediate="true" in your commandLink.On 11/16/05, ::SammyRulez:: <[EMAIL PROTECTED]> wrote: i notice that if I have a page with a action that drive to anotherpage like this with a navigation like this /jsp/admin/listUsers.jsp    

life cycle in version 1.1

2005-11-16 Thread ::SammyRulez::
i notice that if I have a page with a action that drive to another page like this with a navigation like this /jsp/admin/listUsers.jsp EDIT_USER /jsp/admin/editUser.jsp the page wi

Re: Why tabs look like buttons?

2005-11-16 Thread Don Tam
Hi, I was just wondering, on a semi-related note, how would I set it up so that I can use a stylesheet class to set the background color of the panelTabbedPane instead of using the bgcolor attribute in the tag? I've tried declaring .myFaces_panelTabbedPane_pane in my stylesheet but it doesn'

Why is verbatim component transient?

2005-11-16 Thread Volker Weber
Hi, i just came over a problem with verbatim tags in ajax enabled components. see: http://www.mail-archive.com/users%40myfaces.apache.org/msg12124.html The UIOutput components created for verbatim tags are not saved to state because there are explicitly set to transient. This makes it impossible

Misunderstanding of phases

2005-11-16 Thread Marius Oancea
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have the following piece of code: [code] #{tocEntry.learnItem.title}#{tocEntry.quiz.title} [/code] the code display correctly : [code]falseGetting familiar with your JSP server falseY

Re: t:updateActionListener documentation

2005-11-16 Thread Mike Kienenberger
On 11/16/05, Martin Marinschek <[EMAIL PROTECTED]> wrote: > Just one action event is possible on each request. Maybe I'm misunderstanding the question, or maybe I'm misinterpreting the behavior, but I think any number of action events can fire on each page submit. This is assuming by "action eve

Re: Re: Re: tree2 how can I get the parent of a node??

2005-11-16 Thread Sean Schofield
Mathias, Before you get too far we should talk. I've been having some ideas of my own about refactoring that include support for an AJAX option. I will try to get up to speed on the latest SVN for tree2 (since I haven't looked in quite some time) and then get back to you. I'll try and post a de

Re: ClassLoading problem

2005-11-16 Thread Wayne Fay
Be sure to shut down jboss, then delete the various jars including anything in tmp/work, then restart and redeploy your app including the Myfaces jars...   Wayne  On 11/16/05, Marco Mistroni <[EMAIL PROTECTED]> wrote: hello  agree... got same error package your spring/myfaces/webapp files in y

Re: Why tabs look like buttons?

2005-11-16 Thread Bobby Rosenberger
Hey Rodney, I noticed that the tabs looked like buttons as well... but I found that it was due to my changing my XP theme to use the "XP Windows Theme". And, in my case, the tabs only looked like buttons when using IE. I'd be surprised if adding the 'save logic' were responsible for the style ch

Re: How to work now with number converter (previously: I need myfaces 1.1.0 nightly build)

2005-11-16 Thread Mike Kienenberger
On 11/16/05, Kołoszko Paweł <[EMAIL PROTECTED]> wrote: > If listRodzajeDzialan.number is Long then there is no converter error. > If listRodzajeDzialan.number is Double then there is converter error. Whether the above is true is going to depend on the input being converted. Sometimes you're going

Re: ClassLoading problem

2005-11-16 Thread Marco Mistroni
hello  agree... got same error package your spring/myfaces/webapp files in your app and don't trust jboss more than that, delete your tmp/work directory to make sure... once i struggled a day to find out where my app faces file were clashing..and found out that in tmp/work directory i h

Re: problem with SelectItem & value to be set on a Bean / solved

2005-11-16 Thread Marco Mistroni
Hello all,  sorry 2 bother.. problem fixed. i had accidentally deleted all faces config files...   sorry again   regards  marco  On 11/16/05, Marco Mistroni <[EMAIL PROTECTED]> wrote: hello all,  i am trying to populate  a selectable list with some items...   the value selected will b

Re: AJAX & verbatim tag usage problem

2005-11-16 Thread Andrew Kharchenko
Hi, Let me share some things that may be useful I've discovered. After ajax request processed, on following JSF request (that can be generated with some JSF submit for example when submit button clicked) children tree does not contain verbatims until ViewHandler.renderView method called. After th

how to convert a myface application to a standard portlet

2005-11-16 Thread Legolas Woodland
Hi Thank you for reading my post. is it possible to convert a jsf application to a Portlet ? I mean a jsf application wich used myface implementation. if it si feasible , can you pleas give me some hint about it

Re: ClassLoading problem

2005-11-16 Thread Wayne Fay
From the stack trace, I think your application is failing to find one of your Managed Beans specified in faces-config.xml. buildManagedBean is calling ClassUtils to find and instantiate the bean, but JBoss just can't find it, so it bombs out. I could easily be wrong, but that's what it looks like t

Re: AJAX & verbatim tag usage problem

2005-11-16 Thread Volker Weber
Hi, i just put a verbatim tag into my Ajay enabled tabgroup and i have the same problem here. Seems me to be a bug somewere, i will take a deeper look into this later this evening or maybe the next few days. It's a blocker for ajax enabled panels. regards Volker Andrew Kharchenko wrote: >

Re: HtmlGraphicImage reports bogus warning

2005-11-16 Thread Wayne Fay
You should file this as a bug in JIRA. The developer who removed the ESCAPE_ATTR probably had a good reason for taking it out, and can give you some advice on what to use instead. -OR- it was removed by accident, in which case your bug report will cause it to be added back. Wayne On 11/16/05, [E

Strange problem setting values to bound field with dynamically generated components

2005-11-16 Thread Don Tam
Hi, I am generating a custom panelTabbedPane and panel tabs from the setter of my bean. I am including the code below. Everything looks fine when the page first shows up, and the values are all correctly checked (in the case of SelectOneBooleanCheckbox) or set (in the case of SelectMany). T

Re: OC4J deployment problems

2005-11-16 Thread Wayne Fay
Hi Khurram, I have deployed my project which uses MyFaces 1.1.0 (and Tomahawk) with absolutely no issues whatsoever into both standalone OC4J and OAS/OC4J 10.1.2. Check your web.xml, faces-config.xml, and make sure the only JSF jars you have in WEB-INF/lib are myfaces -- delete any Sun JSF RI jar

Why tabs look like buttons?

2005-11-16 Thread Burke, Rodney
Hello,   I had a working tab panel that looked normal. However, after adding logic to save the tab state, the tabs now look like buttons. Does any one know what could be going wrong here?   To manage tab state I’m using myfaces 20051114 nightly build and the following logic:   JSP F

ClassLoading problem

2005-11-16 Thread balaji.saranathan
Hi,   I get such error in my application. MyFaces jar files are present under /server/default/lib directory whereas my beans are packaged in the web application. I suspect that to be the error, but jsut wanted to make sure , it is. Does anyone have any suggestion?   2005-11-16 20:08:54,015

MyFaces Deployment on jsp 1.2 complaint containers and <%@ page isELIgnored="false" %> tag complaince

2005-11-16 Thread Khurram Ahmed
According to the following http://myfaces.apache.org/gettingstarted.html "If you are using a JSP 1.2 container like Tomcat 4 you must also copy the file jsp-2.0.jar to your WEB-INF/lib dir." Does adding the above jar allow us to  set <%@ page isELIgnored="false" %> tags (part of jsp 2.0 specific

problem with SelectItem & value to be set on a Bean

2005-11-16 Thread Marco Mistroni
hello all,  i am trying to populate  a selectable list with some items...   the value selected will be associated to a bean property   the  bean property (named 'type') is of type int.   In building the selectableList i am using this code (in java)]   List list = new ArrayList();  SelectItem item =

Re: HtmlGraphicImage reports bogus warning

2005-11-16 Thread ketan . khimani
I am also facing the same problem when migrating form myfaces 1.0.9 to myfaces 1.1.1. Even escape attribute from When I have cecked the HtmlImageRenderer.java ,in that         HTML.IMG_PASSTHROUGH_ATTRIBUTES, in which BORDER_ATTR is there in both of the version of Java Classes but in tld border

Re: HtmlGraphicImage reports bogus warning

2005-11-16 Thread Cameron Ross
This is now registered as issue MYFACES-830 on jira. Dave Brondsema wrote: Cameron Ross wrote: When I set the border property in t:HtmlGraphicImage I get the following warning: WARNING: /nodetree.xhtml @67,79 border="0" Property 'border' is not on type: org.apache.myfaces.compon

Re: HtmlGraphicImage reports bogus warning

2005-11-16 Thread Dave Brondsema
Cameron Ross wrote: > When I set the border property in t:HtmlGraphicImage I get the > following warning: > > WARNING: /nodetree.xhtml @67,79 border="0" Property 'border' is not on > type: org.apache.myfaces.component.html.ext.HtmlGraphicImage > > Note, however, that the border does seem to be s

Re: How to work now with number converter (previously: I need myfaces 1.1.0 nightly build)

2005-11-16 Thread Yannick Le Teigner
You are correct. I faced the issue lately too, you have to use java.lang.Number in your backing bean. Yannick Kołoszko Paweł wrote: Ok., I've checked it. I have something like that: If listRodzajeDzialan.number is Long then there is no converter error. If listRodzajeDzialan.num

Providers and JSF

2005-11-16 Thread Guillermo Meyer
Last night I wrote this blog entry about using providers framework along with JSF.   http://jroller.com/page/gmeyer?entry=using_providers_in_jsf   I’ve already post to this list with the main idea but this is a little more detailed just in case anyone is interested.   Regards. Guille

Compilation error with Nightly Build 20051115

2005-11-16 Thread Matthias Kahlau
Hi! I still have the problem, that when I change the MyFaces 1.1.1 libs of my web app to Nightly Build 20051115, I get compilation errors regarding the JSP files. Can anybody please give a hint on what's the problem or what I can do to solve the problem. I need to try a Nightly Build because of M

Re: AJAX & verbatim tag usage problem

2005-11-16 Thread Andrew Kharchenko
On 11/16/05, Volker Weber <[EMAIL PROTECTED]> wrote: Hi Andrew,could you explain a bit more what your ajax request does?Goes your ajax request through the normal jsf lifecircle? wehre is itintercepted to render just the ajax part? Sure. Ajax request is intercepted in corresponding PhaseListener and

Re: AJAX & verbatim tag usage problem

2005-11-16 Thread Volker Weber
Hi Andrew, could you explain a bit more what your ajax request does? Goes your ajax request through the normal jsf lifecircle? wehre is it intercepted to render just the ajax part? Have you other, non verbatim, jsf tags inside your controll? Did they show an other behavior tahnthe verbatim? The

AJAX & verbatim tag usage problem

2005-11-16 Thread Andrew Kharchenko
Hi all. I'm working on custom JSF components development with AJAX support. There is a problem with tag usage: control contains one or several tags as children. When common request was sent to server - everything is OK: verbatim tags are shown. But when I send AJAX request to server - these verb

How to work now with number converter (previously: I need myfaces 1.1.0 nightly build)

2005-11-16 Thread Kołoszko Paweł
Ok., I've checked it. I have something like that: If listRodzajeDzialan.number is Long then there is no converter error. If listRodzajeDzialan.number is Double then there is converter error. If listRodzajeDzialan.number is BigDecimal then there is converter error. If listRodzaje

Re: MyFaces and Spring.

2005-11-16 Thread Marco Mistroni
Yes,   but it can happen for million of reasons.. send me your web.xml file as well as applicationcontext files / jsf files that you are using...   thanks an dregards  marco  On 11/16/05, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote: Hi Marco,   Have you seen any errors like this before in your i

Re: I need myfaces 1.1.0 nightly build

2005-11-16 Thread Martin Marinschek
Hi Pawel, 736 obviously is no bug - it is the behaviour prescribed by the TCK. So you'll probably need to change your backing beans to accustomate for this. regards, Martin On 11/16/05, Kołoszko Paweł <[EMAIL PROTECTED]> wrote: > > I just switched from myfaces 1.0.9 to 1.1.1 and unfortunately

I need myfaces 1.1.0 nightly build

2005-11-16 Thread Kołoszko Paweł
I just switched from myfaces 1.0.9 to 1.1.1 and unfortunately I can not work with it because of bug MYFACES-736. I switched to 1.1.0 (official version), where this problem do not exist, but there are problems with jsCookMenu in 1.1.0. In this situation I would like to check a 1.1.0 nightly b

Antwort: Re: Re: tree2 how can I get the parent of a node??

2005-11-16 Thread mathias . werlitz
I will try to include some events for expanding/collapsing and selecting a node. Listeners for this events should than very easy to implement. Internally there will be some kind of iterator for walking the tree ... but I'm still in a very early stage. There will be also some functions to directly

RE: Very puzzling out of order execution...

2005-11-16 Thread Yee CN
I found the problem – I attached some _javascript_ on the onclick attribute with the commandLink that does the submission. The _javascript_ caused double submit(). So there was indeed two parallel executions at the same time.   It seems that both submit() run on the same thread (with the

AW: problem with myfaces 1.1.0

2005-11-16 Thread Stefan Gesigora
Thank you, Bruno! That was the problem. But on my way to a working myfaces application here's the next barricade (after calling my app): Exception javax.servlet.ServletException: (class: _jasper/_jsps/_process/_ProcessSearch_jsp, method: _jspService signature: (Ljavax/servlet/http/HttpServlet

Re: t:updateActionListener documentation

2005-11-16 Thread Martin Marinschek
Simon, right, right, double right. Same request lifecycle. Just one action event is possible on each request. regards, Martin On 11/16/05, Simon Kitching <[EMAIL PROTECTED]> wrote: > Dennis Byrne wrote: > > I have questions regarding when @value is read and when > > @property is set. > > > >

Re: Does style attribute on t:column class work?

2005-11-16 Thread Bruno Aranda
I don't know, but I am using t:columns successfully (inside a t:dataTable) to show different cell background colors depending on the type of the item inside the cell... Bruno 2005/11/16, Simon Kitching <[EMAIL PROTECTED]>: > Hi, > > I am trying to set a max width for one particular column in an h