Re: SVN error when downloading examples for MyFaces 1.1.3

2006-09-07 Thread msidhana
Hi, I am facing similar issue for downloading axis cpp source from location. Even https is not working. What can be the reason? svn co http://svn.apache.org/repos/asf/webservices/axis/trunk/c/ axisc -Monica Fujun Zhu wrote: > > > Hi all, > > > Has anyone successfully downloaded examples for M

Re: DataTable and DataScroller problem

2006-09-07 Thread Mr Arvind Pandey
Hi, You have used twice in the page . Remove the second one. Rest is I think ok. If still some problem is there pls let me know I have worked a lot on this. May be I will be able to help you. Regards Arvind --- Feris Thia <[EMAIL PROTECTED]> wrote: > Hi, > > I'm quite new to JSF a

RE: Values are not displayed properly.

2006-09-07 Thread Mr Arvind Pandey
Hi, Thanks for your suggestion. But my problem is different. I have a table containing 'n' rows and just below the table in the same page I have have some input boxes which are initially empty. When I click on a row in table then with the help of row id I retrieve one object from server and fil

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

2006-09-07 Thread John
Through Navigation. #{login.login} authenticated /main.jsp -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 10:12 PM To: MyFaces Discussion Subject: Re: [Tobago] - Why would the RESTORE_VIEW afterPhase is not b

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

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

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

2006-09-07 Thread John
For some reason, directly after navigating from the login.jsp page to the main.jsp page, the RESTORE_VIEW afterPhase is not called.   My main.jsp page has three tabs...   After arriving on the main.jsp page (url doesn't update BTW - still reads: "http://localhost:9090/myfaces/login.jsp), if

Re: MyFaces and Trinidad and selectOneChoice-autoSubmit

2006-09-07 Thread Matthias Wessendorf
Markus, please use trinidad's mailing lists for that. -Matthias On 9/7/06, Markus Döring <[EMAIL PROTECTED]> wrote: Hi, I'm trying around with MyFaces 1.1.3 and Trinidad for some days. I've implemented a small site with a panelPage, some facets for navigation, ect. and everything works fine.

Re: tree 2 -- lazy loading.

2006-09-07 Thread William Huang
BTW, great work on the jsf-comp aatree. It gave me a good understanding on the tree2 component before I implemented using ajax4jsf. I only implement the lazy loading using ajax4jsf because we are already using it for other components. William Huang Product Development Team

Re: h:dataTable's data evaluated twice per request?

2006-09-07 Thread Dave Brondsema
Even for a commandLink APPLY_REQUEST_VALUES needs to be execute for the commandLink to work. So it looks like the proper solution is not try to do anything different with regards to JSF but to do better optimization and caching of the value binding in the backing bean. Dave Brondsema wrote: > My

Re: tree 2 -- lazy loading.

2006-09-07 Thread Andrew Robinson
I extend the tree2 classes not because of AJAX but to implement a lazy loading where the children nodes are not known until they are asked for (as in a database storage example). So the extended classes for tree2 will also work with Ajax4JSF, I just had more experience with AA at the time On 9/7/

RE: tree 2 -- lazy loading.

2006-09-07 Thread William Huang
Andrew's jsf-comp works. which uses AjaxAnywhere and extending tree2 classes. I also implemented tree2 lazy loading using Ajax4JSF, without needing to extend any tree2 classes. either way, it ways. William Huang Product Development Team

Editable Drop Down

2006-09-07 Thread Eugene Abarquez
Hello All, I am building an application with an editable drop-down component. It is somewhat similar to a combo-box, a combination of a textbox and a drop-down component wherein you can edit the values from the list. Is there an existing component like this in My Faces? If there is, I would real

Re: tree 2 -- lazy loading.

2006-09-07 Thread Andrew Robinson
It is extremely simple to add AjaxAnywhere. there is a small bit of JavaScript configuration to write that can be done once for all your pages (you basically setup which form(s) to use with AJAX and also tell AA if you want to replace the command button action with AJAX or not). I use AA 1.1.0.6 f

RE: tree 2 -- lazy loading.

2006-09-07 Thread Jiang, Jane \(NIH/NCI\) [C]
I found your blogs very useful. It looks like I can overwrite the getChildrenCount() method of my tree node to get around the problems I have. I never used AJAX. How complicated is it to plug in AjaxAnywhere? Many thanks for your help, Jane -Original Message- From: Andrew Robinson

Re: upgrading from tree to tree2

2006-09-07 Thread Jim the Standing Bear
Thanks, Martin, now I am looking at the nightly builds, but there is no src packages for tomahawk examples. Could you point me to it? Thanks. On 9/7/06, Martin Marinschek <[EMAIL PROTECTED]> wrote: It's in subversion - or in the nightly builds, which you can download as well. regards, Marti

Re: tree 2 -- lazy loading.

2006-09-07 Thread Andrew Robinson
FYI: I also published this code in the jsf-comp project at: http://sf.net/projects/jsf-comp It is under the AjaxAnywhere package: http://sourceforge.net/project/showfiles.php?group_id=137466&package_id=197375 On 9/7/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: I have a WIKI on how to do l

Re: tree 2 -- lazy loading.

2006-09-07 Thread Andrew Robinson
I have a WIKI on how to do lazy loading from an external source (web service, database, etc.): http://andrewfacelets.blogspot.com/2006/06/myfaces-tree2-creating-lazy-loading.html On 9/7/06, Jiang, Jane (NIH/NCI) [C] <[EMAIL PROTECTED]> wrote: I've been using the 2nd method of tree2 lazy loading

tree 2 -- lazy loading.

2006-09-07 Thread Jiang, Jane \(NIH/NCI\) [C]
I've been using the 2nd method of tree2 lazy loading I learned from the wiki page. I overwrote the getChildren() method to load in the children. It works fine. I am very surprised that the tree slowed down. I tried to track down the problem and found that every time I try to expand one node,

Re: Is there a stable release of Sandbox?

2006-09-07 Thread Mike Kienenberger
On 9/7/06, Martin Marinschek <[EMAIL PROTECTED]> wrote: no, there is no releases of the sandbox at all, sorry. Werner Punz will fix the tableSuggestAjax component in a couple of days, that should be working then. On 9/7/06, Dennis Byrne <[EMAIL PROTECTED]> wrote: There will never be a stable

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

2006-09-07 Thread Craig McClanahan
On 9/7/06, Martin Grotzke <[EMAIL PROTECTED]> wrote: On Tue, 2006-09-05 at 17:12 +0200, Ricardo Tercero Lozano wrote:> Forgot to say than If you really want to complete restore a previous> rendered view you must extend the NavigationHander functionality or > use a 'dialog' functionality like Shale

DataTable and DataScroller problem

2006-09-07 Thread Feris Thia
Hi,I'm quite new to JSF and MyFaces. I have page that will do searching based on a keyword and populate table with paging capability. I'm using lates stable MyFaces and Tomahowk extension. The problem is I can only seen 1 page. And when I try to move to another page. I have no data display on my d

Re: problem with myfaces1.1.3 websphere6.1

2006-09-07 Thread THIEN PHAM
Hi "phtan", Your problem with the calendar might be similar to my problem. There is a bug in WAS 6.1 that fails to locate javascript referenced by MyFaces. In my case, the server log exception under the ffdc folder shows something like this: Exception = java.io.FileNotFoundException Source = com

Re: DataTable don't show up

2006-09-07 Thread Feris Thia
The problem below is also solved... by repositioning the before the first .Regards,Feris I'm now having a problem with the scroller navigation after having the page structured like below : ==<%@ taglib uri=" http://java.sun.com/jsf/core " pre

RE: Values are not displayed properly.

2006-09-07 Thread Jaya Saluja
In the action make a call to the select method in the backing bean. Use a ListDataModel and use the method getRowData() -Original Message- From: Mr Arvind Pandey [mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 2:37 AM To: users@myfaces.apache.org Subject

Re: DataTable don't show up

2006-09-07 Thread Feris Thia
Hi David,On 9/7/06, David Friedman <[EMAIL PROTECTED]> wrote: Neither way should work at all.  You need to have proper HTML 4.0 structure. JSF is no different.  In the first one you have f:view in the body but it should be AFTER the opening tag for proper HTML structure.  The second one is

RE: DataTable don't show up

2006-09-07 Thread David Friedman
Neither way should work at all.  You need to have proper HTML 4.0 structure. JSF is no different.  In the first one you have f:view in the body but it should be AFTER the opening tag for proper HTML structure.  The second one is a really awful layout because you have f:view at the top befor

Re: tableSuggestAjax nightly gives error....

2006-09-07 Thread Gerald Müllan
Hi, what do you exactly mean with "clicked on an ajax suggest textbox"? Can you describe the problem a little bit further? I have tried the latest nightly and the component seems to work to me. In both browsers IE and firefox. cheers, Gerald On 9/6/06, Yee CN <[EMAIL PROTECTED]> wrote: H

MyFaces and Trinidad and selectOneChoice-autoSubmit

2006-09-07 Thread Markus Döring
Hi, I'm trying around with MyFaces 1.1.3 and Trinidad for some days. I've implemented a small site with a panelPage, some facets for navigation, ect. and everything works fine. In the main area i have a selectOneChoice component and a button to change the skin. That's also working. But if i remo

Dynamic PanelNavigation2 - Items getting duplicated on post

2006-09-07 Thread Kumar, Abhilash (Gok)
Hello: I have a dynamic panelnavigation2 in my application. I am using faceletes for templating and the menu page is in the template. When I request the template child, the menu and the template child page is loading correclty. But when I submit the template child page, the menu ites are getting

Re: Is there a stable release of Sandbox?

2006-09-07 Thread Dennis Byrne
There will never be a stable release of the sandbox. It is by nature unstable. When part of it becomes stable and valuable, it gradutates to the best component library in the world, Tomahawk :) http://myfaces.apache.org/sandbox/index.html Thanks, Dennis Byrne >-Original Message- >Fr

Re: bug ? infinite loop in tree2 ?

2006-09-07 Thread Aleksei Valikov
Hi. If i remove my custom "isNodeExpanded" and expand all nodes with "toggleExpanded", i have got an output that say the same thing at the same moment. How can I avoid this ? Is this a bug from tree 2 ? I can't say about this problem exactly but I've suffered from a lot of problems with t

Re: problem with myfaces1.1.3 websphere6.1

2006-09-07 Thread phtan
There are actually a few places in Websphere 6.1 to set class loader order, which can be quite confusing. The one which we tried and works (except the calendar problem mentioned above) is via this path: Enterprise Applications > > Manage Modules > Change class loader to "Classes loaded with

DataTable don't show up

2006-09-07 Thread Feris Thia
Dear All,I'm quite new to MyFaces and recently like to display data from a bean returning array of Strings. It works fine with a code but don't display with another. I just repotitioning the code. Hope someone can help me :) Here is the code that displays the data===

Re: JSF proxy component

2006-09-07 Thread Ricardo Tercero Lozano
You can use JSTL tags, for example. Or you can use Sitemesh with inline content decoration. But that content will not be binded to JSF.Ricardo.On 9/7/06, Martin Marinschek <[EMAIL PROTECTED]> wrote: No, there is nothing like a proxy component so far. Might make a niceaddition, though!regards,Mart

bug ? infinite loop in tree2 ?

2006-09-07 Thread Igor devor
Hi, Tomcat 5.5, myface 1.1.3 and Tomahawk 1.1.3 I have a managed bean that hold a TreeModelBase. This tree is feel with somme data. I have an action that replace the TreeModelBase of the bean with new empy one. This action work. After that, if i go to a any other page wit

Re: h:dataTable's data evaluated twice per request?

2006-09-07 Thread Dave Brondsema
My dataTable contains no input components, so it doesn't need to evaluate the value then, right? Is there any logic I can put in my backing bean ... or in an extended dataTable so that the evaluation is skipped in APPLY_REQUEST_VALUES? Cagatay Civici wrote: > Hi Dave, > > It's because the value

HTMLCommandButton created in Renderer - ActionListener not called

2006-09-07 Thread Michael Heinen
Hi all,   I am desperately trying to create a custom DataScroller with HTMLCommandButtons instead of HTMLCommandLinks. The problem is that the corresponding ActionListener is never called when I click the button. The clientID is not found in the requestMap in the decode method of my Ren

Re: upgrading from tree to tree2

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

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

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

Re: Is there a stable release of Sandbox?

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

Re: JSF proxy component

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

Re: JSF proxy component

2006-09-07 Thread Daniel Loebbe
Hi,   you are right, we already thought about that solution. But I originally want to embed the content of the second server into the pages of the main one.   Bye, Daniel  2006/9/6, Raj Saini <[EMAIL PROTECTED]>: Daniel,If your by "webserver" you mean Tomcat, you can font it with your  yourHTTP web

Re: including jsf pages from servlets or other classes

2006-09-07 Thread delbd
Suggestion, assuming you want to gather simple forms inside a more complex form: A.jsp -> contains viewRoot and form, include B_comp.jsp B.jsp -> contains viewRoot and form, include B_comp.jsp C.jsp -> contains viewRoot and form, include C_comp.jsp B_comp.jsp -> does not contain root neither form

Is there a stable release of Sandbox?

2006-09-07 Thread Yee CN
Hi,   Is there a stable release of Tomahawk sandbox? I am having problems with the current nightly (tableSuggestAjax), and the version I have was over 3 months old. I am looking for a more recent build that I can use.   Thanks!   Cheers, Yee

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

2006-09-07 Thread Martin Grotzke
On Tue, 2006-09-05 at 17:12 +0200, Ricardo Tercero Lozano wrote: > Forgot to say than If you really want to complete restore a previous > rendered view you must extend the NavigationHander functionality or > use a 'dialog' functionality like Shale dialogs > (http://shale.apache.org/features-dialog-

how can i use myfaces into the IBM websphere 5.1.2

2006-09-07 Thread om prakash
Hello sir/mam, I am facing problem to use myfaces into the IBM websphere 5.1.2 how come i can use it. Please send me step by step procedure to working in it. And please let me know that the facelets can be used in myfaces or not.   Thanks and Regards Om Prakash Software En

Values are not displayed properly.

2006-09-07 Thread Mr Arvind Pandey
Hi, I am using to display set of rows. When I click on the row, it displays the info of that row (i.e. Customer) just below the table in the same page for editing purpose. For the first time when I click on any row it displays the info of correct row that I have clicked. But second time If I