Re: Something similar to Struts nested:iterate tag?

2006-04-04 Thread Bjørn T Johansen
On Mon, 3 Apr 2006 22:44:04 -0700 Craig McClanahan [EMAIL PROTECTED] wrote: On 4/2/06, Bjørn T Johansen [EMAIL PROTECTED] wrote: Does there exist something similar to nested:iterate tag in myfaces/jsf? Or should one use a datatable with just one row and and one column and populate this

Re: ADF sample

2006-04-04 Thread Arash Bijanzadeh
On 4/3/06, Mike Kienenberger [EMAIL PROTECTED] wrote: On 4/3/06, Arash Bijanzadeh [EMAIL PROTECTED] wrote: I dl the apache-drop.zip and tryed to deploy the example war but get this error message: 16:46:39,258 ERROR [STDERR] java.lang.ClassCastException:

RE: Tree2: IllegalStateException - Node is expanded but also considered a leaf

2006-04-04 Thread Steven De Vlaminck
Hallo, I had the same problem, and the attached mail (from this mailing-list) contains a treemodel and extended treenode, which fixed the problem for me... They were also developing a new kind of treemodel @ apache. But I'm no longer really following this list, so I don't know the status of

id of a datatable

2006-04-04 Thread Benjamin Bratkus
hello users, can anyone tell me how to set the id to a variable of my managedbean ? i.e a String called travelNr. best regards, ben

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Mario Ivankovits
Hi! In any case, we are on the right path here, I suppose. I am not that enthusiastic about the rumba framework - but hey - this might change. Reloading the objects using their key for every request might sometimes become a real performance killer as you often have to deal with a couple of

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Alexey Maslov
One thing though: it's not always enough to store only the object's id: imagine the case of the collapsible panel, or a server side switched tabbed panel, where the full information is not always wrapped in the http-request. For these cases, you'll need to provide a possibility to save

AW: id of a datatable

2006-04-04 Thread Schaal, Roland
Something like h:datatable id=#{managedbean.datatableId} should work with public String getDatatableId() in your bean that returns the String of your ID -Ursprüngliche Nachricht- Von: Benjamin Bratkus [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 4. April 2006 08:58 An: MyFaces

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Alexey Maslov
Bill, Thank you for a great idea! We had some discussions about such an approach having some beer but have not planned anything specific yet. You gave me an example of a concrete implementation and it is definitely a feature to consider. We have a long-term plans to support Rumba

Re: AW: id of a datatable

2006-04-04 Thread Benjamin Bratkus
thx for your fast response, but this case i tryed yesterday by myself and i've got h:dataTable id=#{Travel.travelNr} value=#{Travel.hopsModel} var=Hop first=#{Travel.hopsTable.firstRowIndex} rows=#{Travel.hopsTable.noOfRows} styleClass=rka rowClasses=firstRow, secondRow

Re: Tree 2 Question

2006-04-04 Thread Hans Sowa
HiHas anybody an idea?2006/4/3, Hans Sowa [EMAIL PROTECTED]: Hi allI want to collapse the whole tree. Is there a method like expandAll which I can call?Thanks in advance. -- mfg Hans Sowamailto:[EMAIL PROTECTED] -- mfg Hans Sowamailto:[EMAIL PROTECTED]

Problem uploading files with Myfaces portlet

2006-04-04 Thread Raj Saini
Hi, I am using myfaces portlet for developing JSR-168 portlets with Jetspeed-2. I am facing problems while submitting a form for file uploading with enctype=multipart/form-data. With this encoding action method is not called. However, same application works fine, if I run it as standalone. This

Re: Problem uploading files with Myfaces portlet

2006-04-04 Thread Sébastien Marin
We don't use the bridge and we have the same problem. So you can see the bug : http://issues.apache.org/jira/browse/TOMAHAWK-168 We have just to wait... Selon Raj Saini [EMAIL PROTECTED]: - Hi, - - I am using myfaces portlet for developing JSR-168 portlets with - Jetspeed-2. I am facing

Re: Yahoo! User Interface Library

2006-04-04 Thread Mert Çalışkan
I'd integrated some rico components with jsf. But not the ajaxified ones. (accordion, the other panel features etc.). Working along nicely with the JSP too. Anyone has a requirement for such components? maybe pack them up as an open source project... On 4/4/06, Martin Marinschek [EMAIL PROTECTED]

Re: Problem uploading files with Myfaces portlet

2006-04-04 Thread Raj Saini
Sébastien, What do you use for JSF portlets? I also tried the Apache Portal's JSF brdige and it has same problem. Regards, Raj On 4/4/06, Sébastien Marin [EMAIL PROTECTED] wrote: We don't use the bridge and we have the same problem. So you can see the bug :

Re: Problem uploading files with Myfaces portlet

2006-04-04 Thread Sébastien Marin
We stay with jetspeed but we are going to try the JBoss portal. Because thera are problem with upload file, open popup, display pdf in a window browser, etc. So there are to many problem ! I get a solution temporaly but not very nice because other parameter of the form are not submitted. I use a

Re: Problems with displaying buttons behind checkboxes

2006-04-04 Thread Gerald Müllan
Hi, why having a button in this usecase? I think a value change listener applied to the selectManyCheckbox would also do his work!? From the usability point of view, having a button behind a radio-check isn`t very intuitive, right? Hope that helps, cheers, Gerald On 4/4/06, [EMAIL

AW: Problems with displaying buttons behind checkboxes

2006-04-04 Thread n . schweighardt
Title: AW: Problems with displaying buttons behind checkboxes Hi, thanks for your answer, I hope that I understood you. It is not a radio-check button, the user is able to choose more than one option and then go on. (That is the first use case) The second use case is when the user wants

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Werner Punz
Mario Ivankovits schrieb: I still think the seam way is the better, session in conversation is much more intuitive to work with as you can work with your objects as expected. I would like to see a seam-light. A single jar file which you can drop into your tomcat and can start working with

Using f:convertNumber to format output string?

2006-04-04 Thread Bjørn T Johansen
I need to format a number in an input text box and f:convertNumber seems to do what I want... But as far as I can tell, I then get a problem when the user changes that number; the user then has to use the same format to input the number, or am I mistaken? Regards, BTJ --

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Martin Marinschek
When is Seam closing the session if the user leaves the PC and doesn't finish his task? when the servlet session is closed? regards, Martin On 4/4/06, Werner Punz [EMAIL PROTECTED] wrote: Mario Ivankovits schrieb: I still think the seam way is the better, session in conversation is much

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Alexey Maslov
I'd add one more question - is session-per-conversation approach suitable for shopping cart scenario: ShoppingCart instance lives for the application lifespan and persistent objects (say ProductItem) are added and removed? I'm asking because we had some problems with session-per-conversation

Re: Problems with displaying buttons behind checkboxes

2006-04-04 Thread Gerald Müllan
Yes, sorry; spoke about radios and meant checkboxes :) But shouldn`t make a difference. With: h:selectManyCheckbox ... onchange=document.forms['your_form'].submit() valueChangeListener=#{bean.checkForOptionInfo} .. f:selectItems

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Werner Punz
Martin Marinschek schrieb: When is Seam closing the session if the user leaves the PC and doesn't finish his task? when the servlet session is closed? Conversations have timeouts to my knowledge...

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Werner Punz
Alexey Maslov schrieb: I'd add one more question - is session-per-conversation approach suitable for shopping cart scenario: ShoppingCart instance lives for the application lifespan and persistent objects (say ProductItem) are added and removed? I'm asking because we had some problems with

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Alexey Maslov
Mario, I am not that enthusiastic about the rumba framework - but hey - this might change. Reloading the objects using their key for every request might sometimes become a real performance killer as you often have to deal with a couple of objects. But ok, it depends on the use-case. I

RE: AW: id of a datatable

2006-04-04 Thread Conway. Fintan \(IT Solutions\)
It might be that you are setting the id to a literal value #{Travel.travelNr}, instead of asking MyFaces to get the travelNr from the Travel bean #{Travel.travelNr} - Note no quotes here. If you need the id surrounded by quotes the following might work - id = '' #{Travel.travelNr} ''.

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Werner Punz
Alexey Maslov schrieb: We had a working solution that provided convenient conversation support. It had some threading issues so we delayed it until the next Rumba release. I think that multi-page conversations are usually not a central part of the application and it is better to optimize

[ANN] JAVAWUG BOF XVII / Thursday 20th April 2006 @ 19:00 / Oracl e City of London

2006-04-04 Thread Pilgrim, Peter
Dear All I would like to formally announce that JAVAWUG (Java Web User Group) is holding the seventeenth Birds-of-Feather (Meet up XVII) at the Oracle City of London offices on Thursday, 20th April 2006. The meeting will take place in a room with Audio/Visual facilities between 7-9:30 pm.

t:inputCalandar triggers only after first request

2006-04-04 Thread Andreas Zeller - zit-systems
Hello everybody... I got a problem with the inputCalendar. The popup works just fine, but only if I request the page twice. If I don't, nothing will happen when I click the icon. I'm not so much into this javascript stuff, so I'd be glad if anybody could point me into the right direction or even

Problem when report generation and JSF navigation

2006-04-04 Thread Thomas Gaudin
Hi,I am using JasperReport to generate PDF files on the fly. It is working fine the first time I click on the link to the report but it fails alternatively every 2 clicks exactly...I guess I am somehow messing up the navigation mecanism but I don't know where to start my investigation. Any hint is

RE: selectOneRow component

2006-04-04 Thread Frank Russo
I switched the t:dataTable, but I'm still getting that it can't find the renderer. I'm using the build of myfaces with tomahawk and sandbox components from two nights ago. I checked the jars, and the renderer is in the sandbox jar... Frank Russo Senior Developer FX Alliance, LLC

Re: Problem when report generation and JSF navigation

2006-04-04 Thread Sébastien Marin
Hello, i have the same problem. The first action is Ok but the second just do a refresh or made error. It is the same process when we click on the back icon of the web browser. I would like to understand. Thanks Selon Thomas Gaudin [EMAIL PROTECTED]: - Hi, - - I am using JasperReport to generate

Re: IllegalStateException, Node is expanded but it is also considered a leaf

2006-04-04 Thread Sunil
Thanks a bunch Bill Steven. I will try both of your suggestions and hopefully it would work for my case !! I hope they release the 1.1.2 version asap !! Thanks once again.. Sunil

What is shared jar files?

2006-04-04 Thread Arash Bijanzadeh
Could somebody tell me what is this myfaces-shared* files for. I tryed to use jenia which claims for HtmlFormRendererBase, which is in shared jar files. But trying to include them in the WEB-INF/lib gives me lots of : java.lang.ClassCastException: at

snaphot source code

2006-04-04 Thread Ramazan VARLIKLI
I work with myfaces-1.1.3 snapshot,Where can I find the source codes? From: Arash Bijanzadeh [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2006 4:14 PM To: MyFaces Discussion Subject: What is shared jar files? Could somebody tell me what is this myfaces-shared* files

Re: snaphot source code

2006-04-04 Thread Arash Bijanzadeh
On 4/4/06, Ramazan VARLIKLI [EMAIL PROTECTED] wrote: I work with myfaces-1.1.3 snapshot,Where can I find the source codes?You can get the source from svn : http://apache.org/dev/version-control.html

question for command navigation/command navigation2

2006-04-04 Thread Yasushi Okubo
Hi experts I would like to use command navigation (t:commandNavigation) or command navigation2 (t:commandNavigation2) with action listener like commandlink can do. When I check the usage section, I do not see action listener attribute. Could someone advise me how to add action

Re: snaphot source code

2006-04-04 Thread Werner Punz
Ramazan VARLIKLI schrieb: I work with myfaces-1.1.3 snapshot,Where can I find the source codes? http://svn.apache.org/repos/asf/myfaces/current/ you have to do a checkout on this dir, since it is only a shadow directory. Then you will get the myfaces sources. The build process is done via

RE: ExceptionHandling with JSF and Tiles

2006-04-04 Thread Michael Heinen
Thanks for your answer. I tried this and your points 1) and 2) are working well. But I cant get jsp errors redirected to the error jsp. The ErrorHandlerServlet is called but the content of my error jsp is not displayed in this case. The tiles are still partially rendered and the

Re: Yahoo! User Interface Library

2006-04-04 Thread Gerald Müllan
Hi, we have already an accordion panel component, but others would be really nice :) Since there are so many js-frameworks out there in the meantime, we have to focus on only one, and not do a hick-hack of just a few libraries. As I get it from an overview; the features which are provided by

Re: What is shared jar files?

2006-04-04 Thread Werner Punz
Arash Bijanzadeh schrieb: Could somebody tell me what is this myfaces-shared* files for. I tryed to use jenia which claims for HtmlFormRendererBase, which is in shared jar files. But trying to include them in the WEB-INF/lib gives me lots of : this is somewhat confusing and has to do with

RE: MyFacesGenericPortlet messing with PortletPreferences in Liferay?

2006-04-04 Thread Marcio E Miranda
Sorry Silvert, Ive found out that the problem was related to the way Liferay handles PortletPreferences. It seems that the first time a portlet is deployed, Liferay saves the preferences (from portlet.xml) in a database. From that point, Liferay will retrieve preferences from the

Re: Rumba - MyFaces-based application framework

2006-04-04 Thread Alexey Maslov
Werner, Thanx a lot for clear and useful answer :). --- Werner Punz [EMAIL PROTECTED] wrote: Alexey Maslov schrieb: I'd add one more question - is session-per-conversation approach suitable for shopping cart scenario: ShoppingCart instance lives for the application lifespan and

Re: t:inputCalandar triggers only after first request

2006-04-04 Thread Mike Kienenberger
On 4/4/06, Andreas Zeller - zit-systems [EMAIL PROTECTED] wrote: I got a problem with the inputCalendar. The popup works just fine, but only if I request the page twice. If I don't, nothing will happen when I click the icon. I'm using Tomcat 5.5, Facelets and MyFaces stable. If by MyFaces

Re: Something similar to Struts nested:iterate tag?

2006-04-04 Thread Mike Kienenberger
On 4/2/06, Bjørn T Johansen [EMAIL PROTECTED] wrote: Does there exist something similar to nested:iterate tag in myfaces/jsf? Or should one use a datatable with just one row and and one column and populate this cell with html components? Or is there another way? I don't know what a

Re: The content-type does not change

2006-04-04 Thread Mike Kienenberger
For what it's worth, I successfully use this. But I don't know if it's portlet-friendly. OutputStream responseStream = ((HttpServletResponse)facesContext.getExternalContext().getResponse()).getOutputStream(); HttpServletResponse response =

problem with panelTabbedPane on winXP and IE6

2006-04-04 Thread Garner Shawn
My active tab has been renderring as a button. I went to the example site at http://www.irian.at/myfaces/tabbedPane.jsf and the active tab there has the active tab renderred as a button also. I read a website and this seems to be an winXP and IE6 specific issue and figured out I can fix it by

Clash with Chiba?

2006-04-04 Thread Adam
Dear All, I have a jsf webapp (war) a chiba/webforms one. If I have both loaded inside the same copy of tomcat (5.5.12 or 4.1.31 jdk 1.4 or 1.5) I get the error as seen below. The jsf app seems to function OK but.any ideas? Both web apps are using the 2.3 web.xml markup. TIA Adam

Re: Clash with Chiba?

2006-04-04 Thread Mike Kienenberger
Network errors during xml parsing almost always involve trying to fetch the DTD from the internet rather than locally. Read through these threads for some ways to solve the problem. http://www.mail-archive.com/users@myfaces.apache.org/msg12767.html

Re: Problem when report generation and JSF navigation

2006-04-04 Thread Murat Hazer
Hi,You should add this line just above facesContext.responseComplete() line;facesContext.getApplication().getStateManager().saveSerializedView( facesContext);PS: Martin's solution... On 4/4/06, Sébastien Marin [EMAIL PROTECTED] wrote: Hello, i have the same problem. The first action is Ok but

Re: problem with panelTabbedPane on winXP and IE6

2006-04-04 Thread Gerald Müllan
Hi, Yes, you are right. This is only a missinterpreting issue with IE, and only if you you set the panel to serverSide tab switch. Because you have to do a post, the button is rendered. You can easily access it with: .activeTabClass input { ... } This will also only affect the tab, and not the

Browser based component decisions

2006-04-04 Thread Richard Wallace
Hey all, I'm looking at trying to add some more advanced UI elements to a webapp I'm developing. One thing that I'm concerned about is that this is an app that will be used by the general public, not just in-house. That means I have no control over the OS or browser used to access the site.

Re: Browser based component decisions

2006-04-04 Thread Craig McClanahan
On 4/4/06, Richard Wallace [EMAIL PROTECTED] wrote: Hey all,I'm looking at trying to add some more advanced UI elements to a webappI'm developing.One thing that I'm concerned about is that this is anapp that will be used by the general public, not just in-house.That means I have no control over

[OT] New JSF portal

2006-04-04 Thread Rogerio Pereira
Hi guys!I created a brazilian portuguese portal called faces.eti.br, in this portal all brazilian developers can search for JSF related info (components, IDEs, articles).All brazilian (and portuguese) developers are invited to join a contribute to this portal. -- Yours truly

RE: ExceptionHandling with JSF and Tiles

2006-04-04 Thread Cote.Mark
We have a rootLayout.jsp I guess this is what you mean by the "outer" template: Here is the code for it: [EMAIL PROTECTED] errorPage="/error/ErrorHandlerServlet?popup=false" %%@ taglib uri="/WEB-INF/tags/myfaces_core.tld" prefix="f"% %@ taglib uri="/WEB-INF/tags/struts-tiles.tld"

Re: Re: problem with panelTabbedPane on winXP and IE6

2006-04-04 Thread Garner Shawn
I will try what you said for the css, thanks. You should add that to the Wiki because others are apparently having buttons renderred also and may not be a filter issue as my case wasn't. and only if you you set the panel to serverSide tab switch. I'm not sure what the serverSideTabSwitch

Re: flat calendar problem?!

2006-04-04 Thread Bogdan Sava
Have any ideea when it will be fixed ? Thx Bogdan Martin Marinschek wrote: well, that's the old date-converter problem again. oh, yes, we know that. It's a spec problem, IMHO. use an s:dateTimeConverter to work around this, or your own custom converter. regards, Martin On 3/31/06,

Re: Browser based component decisions

2006-04-04 Thread Matthias Wessendorf
friendly to have the component do its own check on user agent, and emit the The incoming stuff from ADF Faces donation contains more comfortable stuff regarding UserAgent. AdfFacesContext afc = AdfFacesContext.getCurrentInstance(); Agent agent = afc.getAgent(); You may take a look ;-)

Re: Something similar to Struts nested:iterate tag?

2006-04-04 Thread Matthias Wessendorf
Right, dataList is similar to that what you requested. Under [1] you'll find an example of that component [1] http://www.irian.at/myfaces/dataList.jsf On 4/4/06, Mike Kienenberger [EMAIL PROTECTED] wrote: On 4/2/06, Bjørn T Johansen [EMAIL PROTECTED] wrote: Does there exist something similar

Re: flat calendar problem?!

2006-04-04 Thread Matthias Wessendorf
On 4/4/06, Bogdan Sava [EMAIL PROTECTED] wrote: Have any ideea when it will be fixed ? JSF 1.2 has fixed this (in spec) Thx Bogdan Martin Marinschek wrote: well, that's the old date-converter problem again. oh, yes, we know that. It's a spec problem, IMHO. use an

Re: Browser based component decisions

2006-04-04 Thread Richard Wallace
Craig McClanahan wrote: On 4/4/06, *Richard Wallace* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hey all, I'm looking at trying to add some more advanced UI elements to a webapp I'm developing. One thing that I'm concerned about is that this is an app that will be

[#MYFACES-1191] panelNavigation doensn't works properly with IFRAME - ASF JIRA

2006-04-04 Thread Rogerio Pereira
I reported this bug to 1.1.1, but this bug affect all the newer versions, somebody can change this for me, please?-- Yours truly (Atenciosamente),Rogério

How to implement a Start Again Button on a edit view

2006-04-04 Thread Lindholm, Greg
I have an edit view that let's the user modify an object thru a number of steps. All the steps redisplay the same view with additional/changed information. Once all the information has been entered there is a Save button to make the changes permanent. I want to have a Start Again button that the

Re: t:inputCalandar triggers only after first request

2006-04-04 Thread Andreas Zeller - zit-systems
Hi Mike, Gonna try that... Last time I took 1.1.3 it screwed up my entire application. Hope that works... Thanks... Andreas Mike Kienenberger wrote: On 4/4/06, Andreas Zeller - zit-systems [EMAIL PROTECTED] wrote: I got a problem with the inputCalendar. The popup works just

JavascriptLocation

2006-04-04 Thread John Slave
I found this code: String javascriptLocation = (String) component.getAttributes().get(JSFAttr.JAVASCRIPT_LOCATION); AddResource addResource = AddResourceFactory.getInstance(context); on effect fade component. My question is where is javascript_location set? Where does it link?

Render an Image

2006-04-04 Thread udokrass
Hi, i tried several ways to render an image with an myfaces-tag but with no success. Really frustrating... How can i render this Hex-String???

RE: How to implement a Start Again Button on a edit view

2006-04-04 Thread Lindholm, Greg
The redirect/ does start fresh but I cannot use it because I loose my backing-bean which has the original object to be modified. My backing bean is request scope and passed around with the t:saveSate/ which doesn't work across a redirect/. Here is the REALLY INTERESTING thing The good

[tobago] Unknown protocol 'file:/../tobago-theme.xml'

2006-04-04 Thread Stefan Hedtfeld
Hi, when deploying my webapp placed inside an ear using the latest tobago from svn (I'm running on a JBoss 4.0.4RC1) I get the followin error (see stacktrace below). The tobago-theme.xml file is generated during the build process using the values from tobago-config.xml (please corret me if

Re: How to implement a Start Again Button on a edit view

2006-04-04 Thread Mike Kienenberger
On 4/4/06, Lindholm, Greg [EMAIL PROTECTED] wrote: The redirect/ does start fresh but I cannot use it because I loose my backing-bean which has the original object to be modified. My backing bean is request scope and passed around with the t:saveSate/ which doesn't work across a redirect/.

Re: [tobago] Unknown protocol 'file:/../tobago-theme.xml'

2006-04-04 Thread Bernd Bohmann
Hi Stefan, contains the war in META-INF a tobago-theme.xml? Can you send a list of the content of /home/stefan/as/jboss-4.0.4RC1/server/fuelmaster/tmp/deploy/tmp41369fuelmaster.ear-contents/fuelmaster-webapp-0.1-SNAPSHOT-exp.war/ please Regards Bernd Stefan Hedtfeld schrieb: Hi, when

Re: [tobago] Unknown protocol 'file:/../tobago-theme.xml'

2006-04-04 Thread Stefan Hedtfeld
Hi, I've looked into the JIRA issue mentioned in the tobago-theme.xml, and in subissue 4 there seems to be a similar problem on weblogic on windows (I'm running on linux I forgot to mention). This is the content of the war (I used jar -tvf): 0 Tue Apr 04 23:19:26 CEST 2006 META-INF/

Validation questions

2006-04-04 Thread Richard Wallace
I've got 2 forms that I'm trying to do validation on. One form is an assessment form, where the user needs to answer each question. For the validation if a user doesn't enter a response, we want error messages at the top of the page that say: Questions 1, 3, and 7 have not been answered.

Re: [tobago] Unknown protocol 'file:/../tobago-theme.xml'

2006-04-04 Thread Udo Schnurpfeil
You might have unpacked the tobago-theme-xxx.jar files into the war (Possibility 2 in http://tobago.atanion.net/site/themes.html). But the META-INF must not unpacked. Does this helps? I don't know JBoss very good. If the JBoss does it themself, we might have to fix something... Regards

Re: [tobago] Unknown protocol 'file:/../tobago-theme.xml'

2006-04-04 Thread Stefan Hedtfeld
Hi Udo Bernd, thanks for your responses. I think I've mixed up the two ways to handle resources. I'll have a look at this but it might be the end of the week till I've time to do so. Regards, Stefan. Udo Schnurpfeil schrieb: You might have unpacked the tobago-theme-xxx.jar files into the war

Re: [tobago] Unknown protocol 'file:/../tobago-theme.xml'

2006-04-04 Thread Udo Schnurpfeil
Hi, there is a bug in the maven-theme-plugin of tobago while unpacking the stuff. Bommel will commit a fix. (You may only update the tobago-tool directory, because we still refator) Hope that helps. Udo P.S. But I wondering, why the War-Root is in the classpath in JBoss. AFAIK this should

Re: Validation questions

2006-04-04 Thread Mike Kienenberger
On 4/4/06, Richard Wallace [EMAIL PROTECTED] wrote: For the validation if a user doesn't enter a response, we want error messages at the top of the page that say: Questions 1, 3, and 7 have not been answered. So, I've been thinking about what the best way to do that is. The best thing

Re: How to implement a Start Again Button on a edit view

2006-04-04 Thread Mario Ivankovits
Hi! You could probably create a second navigation rule which includes redirect/ and activate it after your've updated your view. I am not sure proposing redirect/ for this is the best idea. Once we have a technology in place which will survive request information this wont work any more -

Re: How to implement a Start Again Button on a edit view

2006-04-04 Thread Mike Kienenberger
On 4/4/06, Mario Ivankovits [EMAIL PROTECTED] wrote: I am not sure proposing redirect/ for this is the best idea. Once we have a technology in place which will survive request information this wont work any more - given the user configures the new classes. That's a good point. It does now

Re: How to implement a Start Again Button on a edit view

2006-04-04 Thread Mike Kienenberger
On 4/4/06, Mike Kienenberger [EMAIL PROTECTED] wrote: On 4/4/06, Lindholm, Greg [EMAIL PROTECTED] wrote: Previously the startAgain() method was just returning null. I changed the startAgain() method to to return startAgain and added a navigation rule back to the same page and now it is

why selectBooleanCheckbox does not take a label

2006-04-04 Thread Dave
I hope to render a checkbox followed by a label.Buth:selectBooleanCheckbox does not take a label, why? I have to use two components. How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates.

Re: JavascriptLocation

2006-04-04 Thread Werner Punz
John Slave schrieb: I found this code: String javascriptLocation = (String) component.getAttributes().get(JSFAttr.JAVASCRIPT_LOCATION); AddResource addResource = AddResourceFactory.getInstance(context); on effect fade component. My question is where is javascript_location set?

Re: Tables colspan

2006-04-04 Thread Werner Punz
Hagay Avisar schrieb: Hi All, How can I simulate “colspan” behavior in JSF? What is the substitute tag? Can I use “panelGrid” to set up pages layout, And can I have some thing similar to “colspan” behavior? Thanks. There is no real colspan per se unfortunately you have limited control via

Re: Validation questions

2006-04-04 Thread Richard Wallace
Mike Kienenberger wrote: On 4/4/06, Richard Wallace [EMAIL PROTECTED] wrote: For the validation if a user doesn't enter a response, we want error messages at the top of the page that say: Questions 1, 3, and 7 have not been answered. So, I've been thinking about what the best way to do

Re: Validation questions

2006-04-04 Thread Mike Kienenberger
Mike Kienenberger wrote: It is possible to simulate a custom required validator (see http://wiki.apache.org/myfaces/OptionalValidationFramework), but it isn't going to help you in any way On 4/4/06, Richard Wallace [EMAIL PROTECTED] wrote: How so? No matter what you do, you're still

Re: n x n dataTable (myFaces)

2006-04-04 Thread Mike Kienenberger
On 3/31/06, fischman_98 [EMAIL PROTECTED] wrote: Was trying to make it dymamic for the future, but can't figure out how to make the row and column data work in conjunction with one another. Need to somehow iterate through row objects that contain lists of column objects. if the var in the

ADD_RESOURCE_CLASS

2006-04-04 Thread Dave
18:33:07,672 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResourceWhat does the parameter mean? what value should I set?Thanks. New Yahoo! Messenger with Voice. Call

Re: Validation questions

2006-04-04 Thread Richard Wallace
Mike Kienenberger wrote: Mike Kienenberger wrote: It is possible to simulate a custom required validator (see http://wiki.apache.org/myfaces/OptionalValidationFramework), but it isn't going to help you in any way On 4/4/06, Richard Wallace [EMAIL PROTECTED] wrote: How so?

Re: Validation questions

2006-04-04 Thread Craig McClanahan
On 4/4/06, Richard Wallace [EMAIL PROTECTED] wrote: Mike Kienenberger wrote: Mike Kienenberger wrote: It is possible to simulate a custom required validator (see http://wiki.apache.org/myfaces/OptionalValidationFramework), but it isn't going to help you in any way On 4/4/06, Richard Wallace

Re: ADD_RESOURCE_CLASS

2006-04-04 Thread Dennis Byrne
This is in the documentation for AddResourceFactory http://myfaces.apache.org/commons/apidocs/org/apache/myfaces/renderkit/html/util/AddResourceFactory.html Dennis Byrne -Original Message- From: Dave [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 4, 2006 09:35 PM To:

is it possible to call a method and pass an arguement from jsf?

2006-04-04 Thread David Schlotfeldt
I have a backing bean called Menu that has a method getMenuItems() that returns a List of MenuItems. Each MenuItem has an id, title, and child MenuItems which are in a List. I want the url of menu items to be a join of the menuitem's id and its ancestors' id. Eg. if we are on 'a' and its

Re: Validation questions

2006-04-04 Thread Richard Wallace
Craig McClanahan wrote: On 4/4/06, *Richard Wallace* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Mike Kienenberger wrote: Mike Kienenberger wrote: It is possible to simulate a custom required validator (see

Re: Validation questions

2006-04-04 Thread Craig McClanahan
On 4/4/06, Richard Wallace [EMAIL PROTECTED] wrote: That's a great run down.I'll give this a try sometime soon I think.The only thing I'm not sure about with that is how could you do globalmessages, form specific messages, and component specific messages. That's probably not a very likely scenario

Re: Extensions filter and Ajax

2006-04-04 Thread Andrew Robinson
I'm still looking for a solution, and getting to the point where I need this fixed, so would appreciate any advice. I have tried: Manually calling the Add resource's add javascript to header on the 2 tree2 js files but I am still getting JavaScript errors. I would be great if the renderers could

Re: Using Tobago with facelet?

2006-04-04 Thread Andrew Robinson
In regards to the It is not possible to combine tobago with other jsf tag libraries, is there any movement for getting Tobago to be just a component library so that it can be used alongside of Tomahawk and other component libraries (like ADF when it is part of MyFaces for example)? Tobago looks

context path in h:graphicImage

2006-04-04 Thread Lance Frohman
When I use an h:graphicImage url=/images/myimage.gif / the resulting html has the context path added to the beginning: img src=/contextpath/images/myimage.gif;jsessionid=FC8DCE7CCC9D6174FB47A3CC5183 11FC / Is there any way to prevent this? Thanks, Lance

Re: context path in h:graphicImage

2006-04-04 Thread Andrew Robinson
This problem has been discussed on this list. Check out the archives for the subjects: mailto outputLink with session id problem jsessionid added to resources in myfaces SVN current? Basically the problem is that the client doesn't support cookies or there is no active cookie. It is a feature of

RE: context path in h:graphicImage

2006-04-04 Thread Lance Frohman
Sorry, I know why the jsessionid is there, that's not the problem. I have my .gif files being served by apache, so they really are in /images/ directory, not /contextpath/images/ directory. So the images are not found. I want to be able to have the resulting img tag be img src=/images/myimage.gif