Re: Changing a JSP-file does not rebuild view properly.

2006-08-18 Thread Dmitry Y. Shyshkin
I have had same problem. You may insert follow lines of code at start of you page. This will create a new view on each request. <% FacesContext facesContext = FacesContext.getCurrentInstance(); UIViewRoot viewRoot = facesContext.getApplication().getViewHandler().createView(facesContext, r

Re: dojo 0.3.1 is flying into the codebase

2006-08-18 Thread Rogerio Pereira
I'm interested in work on SplitContainer for JSF, the work on a version of TitlePane is under progress...2006/8/18, Werner Punz <[EMAIL PROTECTED]>: Matthias Wessendorf schrieb:> great, thx dude!>Ok it is done, some components are either broken or half broken.The ones i noticed:The effects tag... t

Re: dojo 0.3.1 is flying into the codebase

2006-08-18 Thread Werner Punz
Matthias Wessendorf schrieb: great, thx dude! Ok it is done, some components are either broken or half broken. The ones i noticed: The effects tag... the api for the fade has changed (i was aware of that upfront) the timed notifier (I will look into that asap) the autosuggest ajax control (

Re: dojo 0.3.1 is flying into the codebase

2006-08-18 Thread Matthias Wessendorf
great, thx dude! On 8/18/06, Werner Punz <[EMAIL PROTECTED]> wrote: as we speak, i did an upfront test and things look good almost no component except for the ajax input suggest and the effects tag is broken (the effects due to the movement of dojo towards its own animation framework) anyway, f

dojo 0.3.1 is flying into the codebase

2006-08-18 Thread Werner Punz
as we speak, i did an upfront test and things look good almost no component except for the ajax input suggest and the effects tag is broken (the effects due to the movement of dojo towards its own animation framework) anyway, for people in this list using the nightlies, the tests upfront look goo

Re: the biggest myfaces webapp

2006-08-18 Thread Werner Punz
Rogerio Pereira schrieb: Somebody has myfaces webapps with more than 50/100 concurrent users? To my knowledge Irian has done several installations in the past which are way bigger, but Martin can comment on that one, not me ;-)

RE: More than one org.apache.myfaces.ADD_RESOURCE_CLASS ?

2006-08-18 Thread Gary VanMatre
>From: "Jaya Saluja" [EMAIL PROTECTED] >Hi, > >I am trying to add messages to my application. How to I do that in JSF?>> >>Eg: If I delete a user I would like to have a message on my jsf page which says “User deleted”>   Add a "global" messages component to your view.       Action method binding

RE: More than one org.apache.myfaces.ADD_RESOURCE_CLASS ?

2006-08-18 Thread Jaya Saluja
Hi,   I am trying to add messages to my application. How to I do that in JSF?   Eg: If I delete a user I would like to have a message on my jsf page which says “User deleted”   Thanks, Jaya   From: Rogerio Pereira [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 2:4

Re: Anyone using t:saveState on beans with Spring objects injected

2006-08-18 Thread Mike Kienenberger
On 8/18/06, Frank Russo <[EMAIL PROTECTED]> wrote: I think I understand how it works. I guess the issue is, that I have to make the spring objects transient, since I can't set them as serializable. I forget the error I get when they are serializable. Since they are transient, they are not depende

Re: More than one org.apache.myfaces.ADD_RESOURCE_CLASS ?

2006-08-18 Thread Rogerio Pereira
Please forget, my fault, i was asking this because i must have one to serve the resouces from my component jar, but after take a closer look on AddResource stuff i see the same mechanism service resources inside different jars with package name starting with org.apache.myfaces.custom, so i'll crea

RE: Anyone using t:saveState on beans with Spring objects injected

2006-08-18 Thread Frank Russo
I think I understand how it works. I guess the issue is, that I have to make the spring objects transient, since I can't set them as serializable. I forget the error I get when they are serializable. Since they are transient, they are not dependency injected when the bean is deserialized on the nex

Re: More than one org.apache.myfaces.ADD_RESOURCE_CLASS ?

2006-08-18 Thread Mario Ivankovits
Hi! > Can i have more than org.apache.myfaces.ADD_RESOURCE_CLASS registered > on web.xml? No. Why would you need this? Ciao, Mario

Re: commandLinks don't work on Tomcat 5.5.17

2006-08-18 Thread Mike Kienenberger
On 8/18/06, Jeff Bischoff <[EMAIL PROTECTED]> wrote: > Actually, I think this was said in error. I don't think 1.1.2 is > interchangeable with newer versions. Maybe I'm wrong, but the errors > I've seen don't seem to paint that picture I think you're probably right - how could it be compatibl

Re: commandLinks don't work on Tomcat 5.5.17

2006-08-18 Thread Jeff Bischoff
Actually, I think this was said in error. I don't think 1.1.2 is interchangeable with newer versions. Maybe I'm wrong, but the errors I've seen don't seem to paint that picture I think you're probably right - how could it be compatible with both Tomahawk 1.1.2 AND 1.1.3(and greater)? The cl

Re: has anyone used EL with a jsp style tag? - you were right

2006-08-18 Thread Thomas_Perry
Thanks for your support Mike. You were right, the syntax was correct, I just had to put it on the right tag. In the end, this is what I tested and worked... Thanks again. Tom "Mike

Re: Schedule component in workweek mode

2006-08-18 Thread Andrew Robinson
(This is what I did in the 1.1.3 sandbox version -- it should apply to newer versions, I think) Extend AbstractScheduleModel Return the start date in "getSelectedDate" return WORKWEEK for the mode in getMode in "updateDates(Date)", I just record the date in a calendar member variable in loadEntri

Re: commandLinks don't work on Tomcat 5.5.17

2006-08-18 Thread Mike Kienenberger
On 4/18/06, Martin Marinschek <[EMAIL PROTECTED]> wrote: > From the release 1.1.2 on, you can use any Tomahawk release with a > release number greater than 1.1.2 with any MyFaces Implementation > release - we have taken special care to enable this. On 8/18/06, Jeff Bischoff <[EMAIL PROTECTED]

Re: Anyone using t:saveState on beans with Spring objects injected

2006-08-18 Thread Dennis Byrne
Hi Frank, I don't know how much of this you already know, but here goes. t:saveState is pointed at one value on the "EL landscape". It calls getValue() in the last phase of request x and setValue() on the first phase of request x + 1 . The value is transported between requests using java ser

Re: commandLinks don't work on Tomcat 5.5.17

2006-08-18 Thread Jeff Bischoff
I think this confusion stems from the announcement of MyFaces 1.1.2 release: On 4/18/06, Martin Marinschek <[EMAIL PROTECTED]> wrote: > Hi *, > > the MyFaces PMC is proud to announce a new and great release of the > MyFaces Core Implementation. > > Please pay attention to the fact that you cannot

Re: the biggest myfaces webapp

2006-08-18 Thread Rogerio Pereira
No, just to know.2006/8/18, Gerald Müllan <[EMAIL PROTECTED]>: You have performance problems with jsf? :)cheers,GeraldOn 8/18/06, Rogerio Pereira <[EMAIL PROTECTED]> wrote:> Somebody has myfaces webapps with more than 50/100 concurrent users? >> --> Yours truly (Atenciosamente),>> Rogério (_rogerio

Re: How to save tree2 state

2006-08-18 Thread Gus
Hi William, Thank you very much!!! Your codes are very great. I will try it out. Have a great weekend!!! Gus William Huang-2 wrote: > > sure if your facelet code looks like this > > .. > > > your bean code > > public class TreeBean { > private TreeModel treeModel; > private String[]

Anyone using t:saveState on beans with Spring objects injected

2006-08-18 Thread Frank Russo
I having issue using t:saveState on beans with spring classes. If I implement Serializable on my Spring classes I get startup errors, so I had to set the spring objects as transient in my beans. On a new request, though, the spring classes are null, so they are not getting injected the secon

Re: How to save tree2 state

2006-08-18 Thread William Huang
forgot one thing //add this before the return treeModel.setTreeState(treeState); William Huang Product Development Team IntraLinks, Inc. 99 Bedford Street Boston, MA 02111 t 617 648 3511 f 617 648 3550 [EMAIL PROTECTED]

Re: How to save tree2 state

2006-08-18 Thread William Huang
sure if your facelet code looks like this .. your bean code public class TreeBean { private TreeModel treeModel; private String[] expandedNodes; //you need to populate the expandedNodes string array ... pulic TreeModel getTreeModel() { TreeState treeState = new TreeStateBase();

Re: the biggest myfaces webapp

2006-08-18 Thread Gerald Müllan
You have performance problems with jsf? :) cheers, Gerald On 8/18/06, Rogerio Pereira <[EMAIL PROTECTED]> wrote: Somebody has myfaces webapps with more than 50/100 concurrent users? -- Yours truly (Atenciosamente), Rogério (_rogerio_) -- Gerald Müllan Schelleingasse 2/11 1040 Vienna, Aust

Re: the biggest myfaces webapp

2006-08-18 Thread Matthias Wessendorf
martin ? On 8/18/06, Rogerio Pereira <[EMAIL PROTECTED]> wrote: Somebody has myfaces webapps with more than 50/100 concurrent users? -- Yours truly (Atenciosamente), Rogério (_rogerio_) -- Matthias Wessendorf further stuff: blog: http://jroller.com/page/mwessendorf mail: mwessendorf-at-gma

Re: How to save tree2 state

2006-08-18 Thread Gus
Hi William, Thank you sooo much for your reply and good idea. Yes, I had clientSideToggle set false and true, but both of them could not solve the problem. That is a good idea to use the TreeState. Could you please give me a little detail codes to show how to use it? Thank you very much. Best reg

Re: How to save tree2 state

2006-08-18 Thread William Huang
do you have clientSideToggle set to true or false? I experience that before, I had to use the TreeState in the manage bean to preserve expanded or clopse nodes. William Huang Gus

jscookmenu and roles

2006-08-18 Thread t.bednarz
Does jscookmenu support roles? The meaning would be that a login bean retrieves the role(s) of a user and the menu is built depending on the roles he has. Is there any sample available that shows how this would work? Many thanks -- View this message in context: http://www.nabble.com/jscookmen

Re: New component - interested?

2006-08-18 Thread Martin Marinschek
When is the panel displayed? When you click on the image, or when you hover over it, or when you click on the link? regards, Martin On 8/18/06, Laurentiu Trica <[EMAIL PROTECTED]> wrote: It is an idea. But I'm not sure if the merge wouldn't make the component difficult to use. I mean you shou

Re: Changing a JSP-file does not rebuild view properly.

2006-08-18 Thread Mike Kienenberger
Search for "facelets" :-) But if you're really stuck with JSPs, then I'd recommend searching the container documentation for the ability to turn off caching. This is a JSP compilation issue rather than a JSF issue. On 8/18/06, Thorbjørn Ravn Andersen <[EMAIL PROTECTED]> wrote: I have had a pr

Re: Popup over Datascroller arrows

2006-08-18 Thread Mike Kienenberger
Unfortunately, the facets have to be on the dataScroller, not a child of dataScroller. Furthermore, the children of such facets have to be UIGraphic components. You can either submit patches to support alternate behavior, or you can ignore the facets and design your own button layout directly in

Re: ExtensionsPhaseListener exception

2006-08-18 Thread Mike Kienenberger
Because you're mixing incompatible versions of MyFaces. Use the same versions for 1.1.2 and earlier. After 1.1.3, you can use different core and tomahawk versions as long as both are at least 1.1.3. On 8/18/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Could someone give me any hint wha

Re: [Tomahawk] panelTabbedPane and serverSideTabSwitch question

2006-08-18 Thread Mike Kienenberger
On 8/18/06, Nicolas Kalkhof <[EMAIL PROTECTED]> wrote: my last statement, that your hint did the trick was not accurate, sorry. the tabbedpane is still rendered completely using the 1.1.5 snapshot from about 2 weeks ago. maybe this is because iŽm rendering the tabbed pane in a portlet? Maybe.

Re: Custom component, loses attribute value?

2006-08-18 Thread Robert Campbell
Hi Gary,That worked perfectly!! Thank you so much..RobOn 8/18/06, Gary VanMatre <[EMAIL PROTECTED] > wrote: >From: "Robert Campbell" <[EMAIL PROTECTED]> >Hello, >>I have a custom component - a class extending UIComponentTag, a class >extending UIComponentBase, and a class extending Renderer. The e

Re: How to save tree2 state

2006-08-18 Thread Gus
Sorry, since the system is very slow. I accidently posted the three threads. Adminstrator, could you please remove the last two threads. Thank you. Gus wrote: > > Hi everyone, > > I recently used tree2 as a sidemenu. When I clicked a tree node link, the > whole tree nodes collapsed. I want to

Re: Custom component, loses attribute value?

2006-08-18 Thread Gary VanMatre
>From: "Robert Campbell" <[EMAIL PROTECTED]> >Hello,>>I have a custom component - a class extending UIComponentTag, a class >extending UIComponentBase, and a class extending Renderer. The entire >control works as it should, that is until I hit refresh. Upon a refresh, my >UIComponentBase class

ExtensionsPhaseListener exception

2006-08-18 Thread [EMAIL PROTECTED]
Could someone give me any hint what this can be: Thanks java.lang.NoSuchMethodError: org.apache.myfaces.renderkit.html.util. DummyFormUtils.isWriteDummyForm(Ljavax/faces/context/FacesContext;)Z at org.apache.myfaces.renderkit.html.util.ExtensionsPhaseListener. writeCodeBeforeBodyEnd(Exte

How to save tree2 state

2006-08-18 Thread Gus
Hi everyone, I recently used tree2 as a sidemenu. When I clicked a tree node link, the whole tree nodes collapsed. I want to save the tree current state. I used facelets template. I really appreciate if somebody can give me a help. Thank you in advance. Best regards, Gus -- View this message in

How to save tree2 state

2006-08-18 Thread Gus
Hi everyone, I recently used tree2 as a sidemenu. When I clicked a tree node link, the whole tree nodes collapsed. I want to save the tree current state. I used facelets template. I really appreciate if somebody can give me a help. Thank you in advance. Best regards, Gus -- View this message in

the biggest myfaces webapp

2006-08-18 Thread Rogerio Pereira
Somebody has myfaces webapps with more than 50/100 concurrent users?-- Yours truly (Atenciosamente),Rogério (_rogerio_)

Stable auto-complete text input

2006-08-18 Thread Behrang Saeedzadeh
Hi, I'm searching for a stable auto-complete text input component that is both compatible with MyFaces* (1.1.3) and can be used in a JSF-based JSR-168 portlet on Liferay. Does anybody know of any :-? * Looks like some components work fine with a specific JSF implementation but fail to work corre

How to save tree2 state

2006-08-18 Thread Gus
Hi everyone, I recently used tree2 as a sidemenu. When I clicked a tree node link, the whole tree nodes collapsed. I want to save the tree current state. I used facelets template. I really appreciate if somebody can give me a help. Thank you in advance. Best regards, Gus -- View this message in

Re: New component - interested?

2006-08-18 Thread Laurentiu Trica
It is an idea.But I'm not sure if the merge wouldn't make the component difficult to use. I mean you 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

Unwanted behavior: Action method being called several times

2006-08-18 Thread Julien Martin
Hello, I have a managed bean that calls a session ejb which itself does a search. The problem is that it is supposed to retrieve a resultset ONCE and the displayed behavior is that it never stop doing so. It fetches the resultset more than 15 TIMES. Here is the managed bean and the method to look

Re: adding checkbox to tomahawk treetable

2006-08-18 Thread nimisha sharma
Hi Michael,   I am myself struggling with the jenia-dataTools jar.. coz we are using jsf with spring and it is not compatible with that (jsf-spring jar provided by de.mindmatters) .. I dissected the jar file.. :-) and found out that in META-INF, the file jenia-dataTools-config.xml does not have a

inputDate, issues with valueChangeListener

2006-08-18 Thread Ricardo Ramírez
Hi everybody, I have seen some differences between the 1.1.3 and 1.1.5 behaviour of the inputDate. In 1.1.3, if I have a valuechangelistener registered, whenever I change the value of one of the (day, month, year) the valuechangelistener is invoked. This is ok. If everything is unmodified and I c

More than one org.apache.myfaces.ADD_RESOURCE_CLASS ?

2006-08-18 Thread Rogerio Pereira
Hi guys!Can i have more than org.apache.myfaces.ADD_RESOURCE_CLASS registered on web.xml?-- Yours truly (Atenciosamente),Rogério (_rogerio_)

compatibility of jsf-spring provided by de.mindmatters with jars provided by jenia

2006-08-18 Thread nimisha sharma
Hi,   I just cannot figure out what is it that is conflicting between these two jars. coz if i use the jenia files without jsf-spring jar, it works fine and vice versa.. but i have to use both of them.. has anyone worked wih jsf-spring and also displaying checkboxes that the end user can save the

Custom component, loses attribute value?

2006-08-18 Thread Robert Campbell
Hello,I have a custom component - a class extending UIComponentTag, a class extending UIComponentBase, and a class extending Renderer. The entire control works as it should, that is until I hit refresh. Upon a refresh, my UIComponentBase class getter functions suddenly return nulls. For instance, m

Null pointer in variable resolver

2006-08-18 Thread Mads Henderson
Hi.I frequently - but far from always get a NPE when I use the variable resolver to resolve a session scope variable. Does anyone have any idea of what I am doing wrong?The setup is this.I have set up a session scope backing bean let's call it my myBean. I have a servlet that generates graphic elem

AW: adding checkbox to tomahawk treetable

2006-08-18 Thread Michael Südkamp
Thanks Nimisha, First, from http://myfaces.apache.org/impl/tlddoc/h/selectBooleanCheckbox.html I learned that the component ID indeed can not be set by EL :-( I had a look at www.jenia.org. I saw their table multiple selection example which you are probably refering to. I am able to deploy their

Re: Help using the jscookMenu!!!

2006-08-18 Thread Angelo Luis
i dont use portlets and dont use tiles :(On 8/18/06, Gerald Müllan <[EMAIL PROTECTED]> wrote: Sorry, then I don`t really have an idea what can be wrong.Maybe a tiles problem? portlets? The wrong link looks that there is some issue with the id.cheers,GeraldOn 8/17/06, Angelo Luis <[EMAIL PROTECTED]>

Popup over Datascroller arrows

2006-08-18 Thread janw
Hello, is it possible to show a popup over a datascroller arrow? I tried this, but the result was that there was no "arrow first" rendered. ... -- View this message in context: http://www.n

Changing a JSP-file does not rebuild view properly.

2006-08-18 Thread Thorbjørn Ravn Andersen
I have had a problem for a while and I would appreciate a hint regarding which words I should use with google to find the solution :) I do iterative development of JSF in JSP-pages, and I have found that apparently the view built in the page is somehow cached, and that cache is not correctly i

Re: define another ResourceHandler

2006-08-18 Thread Rogerio Pereira
I agree.2006/8/18, Mert Çalışkan <[EMAIL PROTECTED]>: the tag should be placed inside f:view to make it work. But i think thats not a nice solution.Mert..  On 8/18/06, Cagatay Civici <[EMAIL PROTECTED] > wrote: Hi Rogerio,I dont think importing at head is possible with the phaselistener approach.

Re: define another ResourceHandler

2006-08-18 Thread Mert Çalışkan
the tag should be placed inside f:view to make it work. But i think thats not a nice solution.Mert..  On 8/18/06, Cagatay Civici <[EMAIL PROTECTED]> wrote: Hi Rogerio,I dont think importing at head is possible with the phaselistener approach.  Cagatay On 8/18/06, Rogerio Pereira < [EMAIL PROTECT

Re: define another ResourceHandler

2006-08-18 Thread Cagatay Civici
Hi Rogerio,I dont think importing at head is possible with the phaselistener approach.CagatayOn 8/18/06, Rogerio Pereira < [EMAIL PROTECTED]> wrote:Cagatay pointed the Mert solution for me, but how can i use this to generated the css/js import only at html head? 2006/8/17, Rogerio Pereira < [EMAIL

forceId and t:inputHidden

2006-08-18 Thread Michael Heinen
Using forceId="true" with t:inputHidden and a binding attribute still gives me the generated id which is not forced. When I drop the binding attribute it works well.   Is this the expected behaviour with bindings or a bug? When it is a bug I’ll open a jira issue.   Michael

Re: Help using the jscookMenu!!!

2006-08-18 Thread Gerald Müllan
Sorry, then I don`t really have an idea what can be wrong. Maybe a tiles problem? portlets? The wrong link looks that there is some issue with the id. cheers, Gerald On 8/17/06, Angelo Luis <[EMAIL PROTECTED]> wrote: version 1.1.3 MyFaces On 8/17/06, Gerald Müllan <[EMAIL PROTECTED]> wrot

Re: Datatable columns problem- extra columns

2006-08-18 Thread BMRao
Eric, can you tell me how you have connected to My Sql database, and how your JSP page looks. mail it to [EMAIL PROTECTED] BMRao PM Volksoft Tech Eric Lee wrote: > > We are using h:dataTable (also tried x:dataTable) to render four columns > whose data are supplied by bean properties. This

Re: define another ResourceHandler

2006-08-18 Thread Rogerio Pereira
Cagatay pointed the Mert solution for me, but how can i use this to generated the css/js import only at html head?2006/8/17, Rogerio Pereira < [EMAIL PROTECTED]>:Hi guys!Is there another context parameter to especify a alternative ResourceHandler? With MyFacesResourceHandler i'm getting this error

Fwd: Configuring the inputHtml component, looking for information

2006-08-18 Thread Mikael Andersson
(Forwarding to the correct mailing list)Hi,I am looking for information about configuring the way HTML is generated by the inputHtml component.E.g. instead of bold generating an inline style sheet declaration, is it possible to get inputHtml/kupu to generate a span with a css class instead class="b