Re: What is wrong with this code

2005-12-09 Thread Harald Müller
Hi! I'm having the same troubles getting the content of a htmldatatable displayed. My code looks like this: public HtmlPanelTabbedPane getTabPane() { Application app = FacesContext.getCurrentInstance().getApplication(); // tabbedpane HtmlPanelTabbedPane hptp =

Antwort: Tree2 with clientSideTogle does not process collapsed nodes

2005-12-09 Thread mathias . werlitz
Well, sounds like a bug. The if statement is right there, at least with server-side toggle. But with client-side toggle all nodes should be processed ... every component should get the chance to update the value. Open a bug report and add my comment there. [EMAIL PROTECTED] schrieb am

Re: What is wrong with this code

2005-12-09 Thread Volker Weber
Hi Harald, you don't set any content to your UIData component, so you can't expect any content rendered. Setting the var property without using it in the coulum content is useless. But it makes no sense to have content without valuebindings using the 'var'. But to force your table to display

AW: rendering behavior of EditableValueHolders

2005-12-09 Thread Matthias Kahlau
- if submitted value is null, renders its local value, if not null Yep. Note, however, that in the update model phase, if there is an associated value-binding then the local value is pushed into the model and the local value is immediately set to null. See UIInput.updateModel. So in the

Re: What is wrong with this code

2005-12-09 Thread Onur Tokan
Hi, Thank you very much for your interests. Volker, this solves my problem. I will post the running implementation for further reference. Best regards, Onur On 12/9/05, Volker Weber [EMAIL PROTECTED] wrote: Hi Harald, you don't set any content to your UIData component, so you can't expect

AW: What is wrong with this code

2005-12-09 Thread Harald Müller
Hi! Volker, you've made my day ... works perfect! Thank you! Harry -Ursprüngliche Nachricht- Von: Volker Weber [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 09. Dezember 2005 12:34 An: MyFaces Discussion Betreff: Re: What is wrong with this code Hi Harald, you don't set any content

Re: Tree2 with clientSideTogle does not process collapsed nodes

2005-12-09 Thread Sean Schofield
Its been a while since I wrote those lines and I don't have the source right in front of me, but I'm not sure this is a bug. Why would you need to process something for a closed node on a client-side tree? For client side tree I envisioned only a simple tree with command links as your nodes. I

NoClassDefFoundError even though jar file is present

2005-12-09 Thread jeff . mullen
Greetings again I have been working through this issue with tutorials since I last left the topic discussed below and, though none of the tutorials work, I am down to a common error in all of them. The error in the web browser is exception: javax.servlet.ServletException:

Re: NoClassDefFoundError even though jar file is present

2005-12-09 Thread jeff . mullen
Dennis Thanks for the idea. Moving common-el.jar to tomcat\common\lib worked... but why? The MyFaces tutorial doesn't seem to indicate that this is necessary. Thanks Jeff Message from Dennis Byrne [EMAIL PROTECTED] received on 12/09/2005 12:39 PM |+--+ |

Re: NoClassDefFoundError even though jar file is present

2005-12-09 Thread Dennis Byrne
This is not necessary. I would confirm that this IS in fact a problem when putting the jar under lib. If so, you may have better luck investigating the container. Original message Date: Fri, 9 Dec 2005 12:59:45 -0500 From: [EMAIL PROTECTED] Subject: Re: NoClassDefFoundError even

Re: NoClassDefFoundError even though jar file is present

2005-12-09 Thread Craig McClanahan
On 12/9/05, Dennis Byrne [EMAIL PROTECTED] wrote: This is not necessary.I would confirm that this IS in facta problem when putting the jar under lib.If so, you mayhave better luck investigating the container. One thing to recall when debugging NoClassDefFoundError problems ... the class name

Question regarding model update

2005-12-09 Thread Matthias Kahlau
Hi! What happens if the user enters nothing in a textfield (inputText or inputCalendar or inputFileUpload), so that the field is left empty. Is the value-binding property of the tags value attribut set to Null or to an empty String in the update model values phase? Regards, Matthias

Re: Question regarding model update

2005-12-09 Thread Mike Kienenberger
empty-string On 12/9/05, Matthias Kahlau [EMAIL PROTECTED] wrote: Hi! What happens if the user enters nothing in a textfield (inputText or inputCalendar or inputFileUpload), so that the field is left empty. Is the value-binding property of the tags value attribut set to Null or to an empty

[OT] innerHTML, AjaxAnywhere, problems

2005-12-09 Thread Ryan Wynn
Has anyone had any problems with AA and setting the innerHTML property. I am getting a super informative javascript unknown runtime exception in IE at the line where AA tries to set my returned html into the zone span. The html looks okay. Thanks, Ryan

Creating cookies from jsf

2005-12-09 Thread Mike Kienenberger
What's the appropriate point to create and assign cookies to the current response? Can it be done at any time, or only during the render-response phase? Does it have to be done before anything else is rendered in the render-response phase? Could it be done by a post-processing servlet filter, or

Tree2 + rico.js = error

2005-12-09 Thread Luiz Augusto Ruiz
Hi, I am trying to use a tree2 with rico _javascript_ API to build a tree with drag'n drop and I'm having a _javascript_ error because prototype redefines the Array object, inserting 'methods', when an iteration in an Array is called in function CookieLib_setCookie, it is always supposed to find

Preventing File Download dialog from popping up twice

2005-12-09 Thread CONNER, BRENDAN \(SBCSI\)
We have a curious problem in our JSF application that did not appear in an equivalent Struts application: When we write contents to the response to be downloaded to the client (e.g., a comma-delimited .csv file), the browser pop-up that asks the user whether the user wants to open or save the file

Wrong validator methods invoked in Nightly 20051130

2005-12-09 Thread Matthias Kahlau
Hi! I use the validator attribute of inputCalendar, inputText and inputFileUpload. But as I can see in the logging output, JSF calls only one of the four validator methods in the process validations phase, but not the same one each time. The other methods are never called. What's going wrong?

RE: Tree2 with clientSideTogle does not process collapsed nodes

2005-12-09 Thread Daniel W. Gerard
First, let me say thank you for writing this component. My team and I are building a userid / resource provisioning system encompassing over 30 distinct classes of systems (loosely defined as something which requires a userid). Each system (or class of system) maps to a node of the tree. Under

selectBooleanCheckbox and dataTable

2005-12-09 Thread rahmoune patrick
Hi All,I'm using a dataTable and would like to implement multiple selection of rows.The dataTable use the table model describe in the wiki (WorkingWithLargeTables). Thank you for making this available.I try to figure out how to use the selectBooleanCheckbox tag in the dataTable. I'm