Re: myfaces 1.2 release date?

2007-02-14 Thread Matthias Wessendorf
month is much more likely than weeks On 2/15/07, kal stevens <[EMAIL PROTECTED]> wrote: My boss asked me to look into updating the myfaces libraries, to get the new tags and a few bugs we have were fixed. We are using 1.1.3 myfaces, and 1.1.3 of tomahawk. A few of our bugs were fixed in 1.1.4/1

Re: JSF and Ajax combine issue

2007-02-14 Thread Cagatay Civici
Hi, Are there mature JSF and Ajax combine technology in MyFaces or the other JSF Implementations. You can take a look at Ajax4JSF and IceFaces. Also please use the users list instead of the dev list since getting an answer is more likely there. Regards, Çagatay

Re: [Tobago] Ajax Frameworks With Tobago.

2007-02-14 Thread Varma Dendukuri
Hi Volker, Here is my JSF Code. The Panel i.e to be Updated Regards, Varma On 2/14/07, Bernd Bohmann <[EMAIL PROTECTED]> wrote: Hello Varma, can you send your jsf page, please. Regards Bernd Varma Dendukuri wrote: > Added t

multimedia components issue

2007-02-14 Thread kevin wu
Are there multimedia components in MyFaces or the other implements of JSF? Such as Flash and video components.

JSF and Ajax combine issue

2007-02-14 Thread kevin wu
Are there mature JSF and Ajax combine technology in MyFaces or the other JSF Implementations.

WAP components issue

2007-02-14 Thread kevin wu
Are there mature JSF WAP components in MyFaces or the other JSF implements? Where can I find them?

Re: myfaces 1.2 release date?

2007-02-14 Thread Dennis Gesker
+1. Also, when will tomahawk support 1.2 ? --drg kal stevens wrote: > My boss asked me to look into updating the myfaces libraries, to get > the new tags and a few bugs we have were fixed. > We are using 1.1.3 myfaces, and 1.1.3 of tomahawk. > > A few of our bugs were fixed in 1.1.4/1.1.5, so I wa

myfaces 1.2 release date?

2007-02-14 Thread kal stevens
My boss asked me to look into updating the myfaces libraries, to get the new tags and a few bugs we have were fixed. We are using 1.1.3 myfaces, and 1.1.3 of tomahawk. A few of our bugs were fixed in 1.1.4/1.1.5, so I was considering upgrading to one of those I was just curious if I should wait

Error

2007-02-14 Thread Will Norman
I am trying to use inputFileUpload and keep getting the error message "myFileId": Conversion error occurred I am using the example from this page: http://www.onjava.com/pub/a/onjava/2005/07/13/jsfupload.html?page=6 I have the bean in the $tomcat/common/classes dir b/c I would like to add some

Re: How to call bean method from url?

2007-02-14 Thread Adrian Mitev
Try Shale remoting - http://www.shale.apache.org 2007/2/14, Volker Weber <[EMAIL PROTECTED]>: Hi, whats the problem with a servlet? Here is the base code: http://wiki.apache.org/myfaces/InvokingJsfPagesWithStandardUrls#head-6c1aaf488d48f938896da962aaa4361ec3ffaf70 Regards, Volker 2007/2/

Re: [Solved] Dynamic panelGrid within dataTable

2007-02-14 Thread fastbob
Simon, Sorry for creating confusion. When I'm saying "dynamic generation," specifically I'm generating a panelGrid. To expand on your latest example, imagine that for different types of people (teacher, CEO, banker) you have to display different details for searching, e.g., grade level drop-down

Re: Component binding on dynamic number of check boxes

2007-02-14 Thread Simon Kitching
Pfau, Oliver wrote: Hi, I have a t:dataList which renders a dynamic number of checkboxes. Now I want to change the style of all checkboxes with component binding. Is it possible to define a component binding for the checkboxes ? Why don't you apply a binding to the t:dataList component, the

Re: [Solved] Dynamic panelGrid within dataTable

2007-02-14 Thread Simon Kitching
Hi, When you say "dynamic generation", do you mean CGLIB or similar? This approach *does* work (and is used in the project I'm currently working on) but I didn't mean to imply that with my comment. To expand on my example below, if a table of Person objects has a column containing: the

Tomahawk Calendar component hint on mouse over day cells

2007-02-14 Thread Sansaricq Marcel-EMS002
Hi everybody, I am using myfaces-api-1.1.4 and Tomahawk 1.1.3. I just noticed that when I point the mouse over any day cell of the Tomahawk calendar component (renderAsPopup="true"), the message that is displayed is "sHint". Does anyone know how to change this string or not display it at all ? Tha

Re: [Solved] selectList - how to pass a parameter to backing bean method from XHTML?

2007-02-14 Thread fastbob
Lisa, Something I found helpful for passing parameters to beans from JSF is the following link: http://balusc.xs4all.nl/srv/dev-jep-com.html http://balusc.xs4all.nl/srv/dev-jep-com.html fastbob Lisa wrote: > > We need to build a pulldowns (select list boxes) on the front end (select > lists,

Re: [Solved] Dynamic panelGrid within dataTable

2007-02-14 Thread fastbob
Hmmm. I think you're spot on with your comment about putting the functionality into the row object itself. That's what I was trying to do when I erroneously attempted to bind to the dataTable var. Each row object would be responsible for generating the appropriate components. But it sounds like th

Is it possible to refresh the dropdown h:selectOneMenu

2007-02-14 Thread bansi
Here is my requirement The user creates new record by selecting "New" value from the dropdown. Then user enters values on form fields and clicks the Submit button. The result is new Record gets created in the database and also gets populated in the dropdown. But the dropdown still shows the "New"

Re: [Tobago] Ajax Frameworks With Tobago.

2007-02-14 Thread Bernd Bohmann
Hello Varma, can you send your jsf page, please. Regards Bernd Varma Dendukuri wrote: Added true to tobogo-config.xml and then it is working fine now. But the values are not set to the backing bean. For now i read the properties from the request parameters. Is there any better solution ??

Re: How to reset scroller?

2007-02-14 Thread [EMAIL PROTECTED]
Sorted out, thanks a lot. Tomek Adrian Mitev wrote: Actually it's not bug in the scrollers, it comes from the dataTable. Create binding to the dataTable and in the method where you change the model put the following: dataTable.setFirst(0); This should fix your problem. The same is with ac:aj

Myfaces,Dogo, DIALOG

2007-02-14 Thread krasig
Hi GURUS. In the beginning, excuse me for the bad English. So, I must create modal window and i choose to create it with Dojo. But i have in this window to display some controls and after close to get insurted data in parent window. The problem is that i must create this modalwindow as module wh

Re: [Solved] selectList - how to pass a parameter to backing bean method from XHTML?

2007-02-14 Thread Jeff Bischoff
I think Simon hit the nail on the head for you, Lisa. You should really give this a shot. Simon Kitching wrote: Then write a custom class that implements the Map interface (probably by subclassing AbstractMap). Override the get method to do your database lookup, using the key string that is pa

Re: Custom Component TLDs

2007-02-14 Thread Jeff Bischoff
No idea, sorry. Does it work when you paste them all into one file? Remo Liechti wrote: Nobody? -Original Message- From: Remo Liechti [mailto:[EMAIL PROTECTED] Sent: Freitag, 9. Februar 2007 15:07 To: users@myfaces.apache.org Subject: Custom Component TLDs Hi Guys I've a problem

Re: Highlight current row

2007-02-14 Thread Jeff Bischoff
Thanks Oliver. I want to report this issue with either Facelets or Tomahawk, but first I have to narrow down who's responsible for causing it. I'll do some testing when I get a chance. Jeff Bischoff Kenneth L Kurz & Associates, Inc. opick wrote: Hi Jeff, sorry for being away for sometime.

Re: How to call bean method from url?

2007-02-14 Thread Volker Weber
Hi, whats the problem with a servlet? Here is the base code: http://wiki.apache.org/myfaces/InvokingJsfPagesWithStandardUrls#head-6c1aaf488d48f938896da962aaa4361ec3ffaf70 Regards, Volker 2007/2/14, Yuri Ivanov <[EMAIL PROTECTED]>: Thank you for replay, but then I need to create paymentStatus

RE: How to call bean method from url?

2007-02-14 Thread Yuri Ivanov
Thank you for replay, but then I need to create paymentStatus.jsf page and then access these fields in that jsf. And it's I don't like this approach because, first must be called Action and only then View. May be I will try shale for this ... Are there other tools for complete this task? -

Re: How to reset scroller?

2007-02-14 Thread Adrian Mitev
Actually it's not bug in the scrollers, it comes from the dataTable. Create binding to the dataTable and in the method where you change the model put the following: dataTable.setFirst(0); This should fix your problem. The same is with ac:ajaxDataScroller 2007/2/14, [EMAIL PROTECTED] <[EMAIL PROT

How to reset scroller?

2007-02-14 Thread [EMAIL PROTECTED]
Hi, I'm using your component called t:dataScroller with a4j, but I've got the same issue with others scrollers like ac:ajaxDataScroller. So I have t:datatable with some values(ex.10rows), and the scroller, when I scroll for example to second page, and then I'll clear the t:datatable(and add

Re: How to call bean method from url?

2007-02-14 Thread David Delbecq
You can define a request scope bean for which some properties are managed by JSF: simple example: http://yourserver/youApp/paymentStatus?transactionId=123456789&result=987654321 and in faces-config.xml: transactionResultBean com.company.Some

InputSuggestAjax bug

2007-02-14 Thread Laurentiu Trica
Hi guys I have an inputSuggestAjax on my page and if I have a preloaded value in it, like Tomahawk for example. I press the arrow to see some suggested values, it shows me a list with some values, but the problem is that it adds the characters from the tail of the first suggested item in the list

Re: How to call bean method from url?

2007-02-14 Thread Adrian Mitev
Create phaselistener where to check the url and invoke method or simply use Shale Remoting [1] [1] http://shale.apache.org/shale-remoting/index.html 2007/2/14, Yuri Ivanov <[EMAIL PROTECTED]>: Hello all, I am new in JSF, I have a simple question. I need to integrate JSF application with ext

How to call bean method from url?

2007-02-14 Thread Yuri Ivanov
Hello all, I am new in JSF, I have a simple question. I need to integrate JSF application with external payment system. This system can call my url if payment successfully transferred. But I can't understand how can I define method in back bean that will be called before rendering response. Of

drill down and lifecycle

2007-02-14 Thread ::SammyRulez::
Hi all. I'm refactoring an existing application which have a multiple level drill down (a set of seven level of master/detail pages). I noticed that at every drilldown the query for the master page is executed again. I think because the first step in life cycle is Restore view. I'm wondering if

[Tobago] nesting tc:sheet

2007-02-14 Thread Michał 'Gandalf' Stawicki
Hi, did anyone tried nesting tc:sheet inside another tc:sheet's column? I don't get any errors, but the inner tc:sheet just isn't rendered regards, michael -- [EMAIL PROTECTED] http://stawicki.jasliska.pl GG: 369 JID: [EMAIL PROTECTED]

Re: [ Tobago ] [ Solved ]Help regarding Input Suggest

2007-02-14 Thread madan chowdary
Hi Volker, Solved the InputSuggest for used the below code as in JSP and Java public List suggestSearchCriteria(String msg){ System.out.println("*** Inside getSuggestMethod *** " + msg); List suggestions = new ArrayList(); suggestions.add("Madan"); suggestions.

Component binding on dynamic number of check boxes

2007-02-14 Thread Pfau, Oliver
Hi, I have a t:dataList which renders a dynamic number of checkboxes. Now I want to change the style of all checkboxes with component binding. Is it possible to define a component binding for the checkboxes ? Regards, Oliver

Re: s:inputSuggestAjax - encoding Problem

2007-02-14 Thread Gerald Müllan
Hi, you should be able to get the latest sandbox .jar from this url (no need to build it from local environment): http://people.apache.org/builds/myfaces/nightly The fix should be included there. cheers, Gerald On 2/13/07, Birgit Kaschte <[EMAIL PROTECTED]> wrote: Hi, is the fix included i

HTMLColumn: adding components to it

2007-02-14 Thread Remo Liechti
Hi guys and girls ;-) I'm writing a custom JSF component: public class PortableHeaderRenderer extends HtmlGridRenderer { ... } So we see here, my component is a . Now I would like to add some as a child element to this component. I think I have to do it like this to create a new one. HtmlColum

Get path of node (tree2)

2007-02-14 Thread Wiebke Henrici
Hi, I have a question concerning the use of tree2. My basic version works alright, but now I have the following problem: My nodes are displayed as commandLinks and when a user clicks on one node, I want to find out the "path" of the node. I need the information: the node which was clicked, belong