Re: JSR 168 Portlet and ExtensionsFilter

2005-10-18 Thread Dave Brondsema
Ryan Wynn wrote: I am trying to get the inputCalendar to work inside a Portlet. It seems to me that although I have the myfaces ExtensionsFilter mapped in my web.xml the appropriate javascript is not being included in the response. I get DateFormatSymbols is undefined which looks like it is de

RE: Conditional include in JSF page

2005-10-18 Thread urswagner
I found a way. If You have an elegant solution You tell it me. >-- Original-Nachricht -- >Reply-To: "MyFaces Discussion" >Date: Tue, 18 Oct 2005 23:56:34 +0200 >From: [EMAIL PROTECTED] >Subject: Conditional include in JSF page >To: users@myfaces.apache.org > > > >Hello > >Who can give me a worki

Re: No tag "panelNavigation2"

2005-10-18 Thread James McGrath
Ok, so panelNavigation2 is just a temporary development version of panelNavigation - no need for a response if this is correct. Thanks everybody for your help. Cheers. Thomas Spiegl wrote: I plan to replace panelNavigation by panelNavigation2 the next days. I didn't want to break panelNavigat

Re: JSR 168 Portlet and ExtensionsFilter

2005-10-18 Thread Simon Kitching
Ryan Wynn wrote: I am trying to get the inputCalendar to work inside a Portlet. It seems to me that although I have the myfaces ExtensionsFilter mapped in my web.xml the appropriate javascript is not being included in the response. I get DateFormatSymbols is undefined which looks like it is

JSR 168 Portlet and ExtensionsFilter

2005-10-18 Thread Ryan Wynn
I am trying to get the inputCalendar to work inside a Portlet.  It seems to me that although I have the myfaces ExtensionsFilter mapped in my web.xml the appropriate _javascript_ is not being included in the response. I get DateFormatSymbols is undefined which looks like it is declared in date.js

Conditional include in JSF page

2005-10-18 Thread urswagner
Hello Who can give me a working solution for a conditional include. In the config file a have this entry Partner Partner org.partneragency.web.PartnerBean request In the partner bean I the loggedIn property which is true if the partner is logged in. I need a working code l

Apply style to a panelTab

2005-10-18 Thread Eric Hsieh
When gets rendered a and get created. The styleClass attached to gets put onto the tag. Is there a way to apply a style class to the tag? Some styles are only applicable to block elements like "overflow". Right now, renders into something like this: from: to: a container gets cr

Re: Problem with

2005-10-18 Thread Simon Kitching
[EMAIL PROTECTED] wrote: I just started working with myFaces (and tomahawk) for the past couple of days and so I apologize if this question is really basic. Here's what I have: A (Shale) backing bean called "worklist" with: private DataModel assignmentsModel = new ListDataModel(); ..etc.. pr

Re: Tree2 - on-demand load capable?

2005-10-18 Thread Anu Padki
I had been reading yr wiki page and have some qs on it. The facet used in yr code is projekt-folder, is that a renderer/facet you had to write in order to implement the lazy load? The other question is how do I find all available facets for a myfaces renderer and is how do you write a component

Problem with

2005-10-18 Thread gramani
I just started working with myFaces (and tomahawk) for the past couple of days and so I apologize if this question is really basic. Here's what I have: A (Shale) backing bean called "worklist" with: private DataModel assignmentsModel = new ListDataModel(); ..etc.. private List _assignments; ..et

Re: Autoscroll

2005-10-18 Thread Julián García
I have cleaned up my pages of div tags. However, it still doesn't work... Anyone knows how to fix this? My page is full of verbatim tags, although no divs are generated. Thanks. Paul Klaer wrote: The "window.scrollTo" function is available if you click on an object that is enabled for the scro

JSCookMenu..

2005-10-18 Thread Deepinder Singh
I am testing JSCookMenu, I have added the the navigation rules in the related xml file. But, I can only navigate to the linked pages only once in 10 clicks or so. Rest of the time the same page refreshes. Has any one seen this issue. Any w/a? Thanks, deepinder ___ Siebel IT'S ALL ABOU

Re: Question about dataTable

2005-10-18 Thread Mathias Brökelmann
try to use an instance of DataModel as the value for either valuesEmbque or fieldsEmbque. You can then determine with DataModel.getRowData() the current value of the List to determine which value you should return for each cell: public class RemessaBean { private DataModel fieldsEmbqueModel; p

panelTabbedPane, with one tab in the html

2005-10-18 Thread Mariano Petrakovsky
In previous versions... the panelTabbedPane generate a html only for the selected tab... but in the next versions... all tabs are hidden into the html for validation... Exists any way to switch into this two modes? Why?... each tab have many components... then this genera

RE: survey: what tool are you using for JSF ?

2005-10-18 Thread Ted Jones
We are using Eclipse 3.1 with the Web Tool Platform plugin (http://www.eclipse.org/webtools/wst/main.html). Very fast and WST has a lot of great features. -Original Message- From: Randahl Fink Isaksen [mailto:[EMAIL PROTECTED] Sent: Monday, October 17, 2005 12:43 PM To: MyFaces Discussion

Re: Question about dataTable

2005-10-18 Thread PATRICIA GUEDES
Thanks for your reply! That's exactly what I needed. But, now I have another problem. How can I reference an Object's attribute in a ArrayList? Follow a simple example (very ugly) : private static final Fields[] fiel

RE: Experience with JSF on applications for the general public / public customers

2005-10-18 Thread Darren Hartford
 I want friendly URLs to take users to certain records from the database I have done this, although I used HTTP Params (as you note) and used a pass-thru via JSF's getExternalContext to get the param values. From: Alex Coles [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 200

Re: Question about dataTable

2005-10-18 Thread Mathias Brökelmann
try out the t:columns component which allows you to have NxM tables. Take a look into the myfaces-examples (opendatatable) 2005/10/18, PATRICIA GUEDES <[EMAIL PROTECTED]>: > Hi, I´m from Brazil (sorry my bad English) and I need to build a > table where the columns are dynamics. The columns came f

Experience with JSF on applications for the general public / public customers

2005-10-18 Thread Alex Coles
Hi, I am currently beginning work on a digital asset management project which involves two applications - an admin application and a public-facing application. For DAOs and Business Services I will use Hibernate and Spring. I am planning to use JSF for the view layer of the admin application. In f

Question about dataTable

2005-10-18 Thread PATRICIA GUEDES
Hi, I´m from Brazil (sorry my bad English) and I need to build a table where the columns are dynamics. The columns came from a ArrayList of "fields" and the lines came from each field's values. How can I do that? Ex: field1 field2 field3 field4 field5 (colunas vêm de um ArrayList de

Re: Ajax and JSF

2005-10-18 Thread Alex Coles
AJAX-ifying some individual components - such as a autocomplete drop-down menu - is actually not that difficult to achieve in JSF. Based on code from the Blueprints catalog, I've played with it a little bit and it seems to work pretty well. What seems to be much more difficult to achieve is, rather

Re: ClassCastException in HtmlCommandLink

2005-10-18 Thread Marius Kreis
Hi, it's me again... Well I still get an error about duplicate Ids -- but only when I generate them on my own. If I don't do anything about them (and ignore the warnings) everything's fine... Thats the code snippet: ... HtmlCommandLink instanceLink = new HtmlCommandLink(); instanceLink.

RE: Conversion problem

2005-10-18 Thread gvial
Waow! This sure sucks for me... Looks like it's just recreated at every submit I hit so I can basically never keep any of its values... Kinda defeats the point of what I was trying to do but I found a way around, it just kills all the reflection process we were trying to use. Thanks for the help,

Re: survey: what tool are you using for JSF ? [Scanned by ClamAV]

2005-10-18 Thread Nebojsa Vasiljevic
Netbeans 4.1 (programmers) + Dreamweaver (Web designers). JSP editor in Netbeans is very good, but there is no JSF specific support. Considering two future directions: - visual JSF editing in IDE (NitroX, Exadel, Java Studio Creator) - better integration with Dreamweaver (Facelets) Nebojsa --

Super!

2005-10-18 Thread Martin Marinschek
Mathias, wow - you have solved the server side state saving problem we have had for ages? That will make some users very, very happy! Thanks from the whole team, great news indeed. Do you want to give us (on the dev list) a short wrapup on how you solved things? Did you keep close to the RI or

Re: survey: what tool are you using for JSF ? [Scanned by ClamAV]

2005-10-18 Thread Jan Dockx
(Embedded image moved to file: pic07657.jpg) This is a highly relevant discussion for most people on this list! I think a more permanent record should be in the wiki, so I started a page, with a dirty copy of the mails so far:

RE: SelectItems generation using Providers

2005-10-18 Thread Jesse Alexander \(KBSA 21\)
don't sound bad. But you would use it in the SelectItems-tag. If you want you can provide a first shot using the jsf-comp project (on sourceforge). CVS access is easier than sandbox-committer rights. But for easy transfer to the sandbox/extensions everything must be apache-compatible (licenses..

SelectItems generation using Providers

2005-10-18 Thread Guillermo Meyer
Hi all: I’m planning to adapt Providers framework (http://providers.sourceforge.net/) to JSF. Mainly, Providers could be used to generate SelectItems inside UISelect* components.   For example, you could declare a hypothetical Providers bean in the faces-config.xml like this:  

Re: Tree2 with checkboxes problem

2005-10-18 Thread Sean Schofield
A few thoughts ... I'm not sure the binding attribute on tree2 works properly although I could be wrong since I haven't worked closely on it in a few months now. I don't think you need to have refs to the tree data, etc. in your backing bean. Try using ActionEvent.getComponent() instead. sean

Re: need help in running the 'simple.war' from myfaces-20051006-examples

2005-10-18 Thread Sean Schofield
This appears to be a problem with the thread pooling of your app server and not MyFaces. sean On 10/11/05, Jiehuan Li <[EMAIL PROTECTED]> wrote: > > > > I imported the simple.war to Rational Application > > Developer 6.0, and tried to run it on the Websphere > > Application Server 6.0 test enviro

Re: Tree2 Style tags bug?

2005-10-18 Thread Sean Schofield
You can control the appearance of the node description through your JSP in the normal JSF manner. Its no different then in that regard. See the tree2NiceWrap.jsp in the examples. sean On 10/10/05, Vo, Ky <[EMAIL PROTECTED]> wrote: > In my tree2 node, I have a description like "This is a desc

Re: No tag "panelNavigation2"

2005-10-18 Thread Thomas Spiegl
I plan to replace panelNavigation by panelNavigation2 the next days. I didn't want to break panelNavigation during development phase, therefore i invented panelNavigation2. If you want to use panelNavigation2, please use a nightly build >= 2005-10-15. panelNavigation2 has a layout attribute: layo

Re: survey: what tool are you using for JSF ?

2005-10-18 Thread Werner Punz
I will add a dedicated Exadel section now that the showstoppers have been ironed out (yes I tried it yesterday and all the stuff which I had problems with is ironed out as it seems) tonight, also have a look at the MyFaces Eclipse section of the wiki (there is one already) it covers to a small degr

Re: survey: what tool are you using for JSF ?

2005-10-18 Thread ir. ing. Jan Dockx
This is a highly relevant discussion for most people on this list! I think a more permanent record should be in the wiki, so I started a page, with a dirty copy of the mails so far: . Please give your current and future colleague web developers 5 minutes of your time, and edit that page. It's easy

Re: problems wiht date extension tag

2005-10-18 Thread Marco Mistroni
Hello,   i am getting little confused... i have downloaded myfaces-examples-1.1.0 and all the date tags work perfectly fine     i hten downloded one of the nightly build (dated 14/10/2005) and the date tag was messed up..   am i correct in assuming that the libraries in myfacs-exmaples-1.1.0 are ol

RE: tabbed pane focus

2005-10-18 Thread Timo Schnölzer
unsubscribe From: Kelly Goedert [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 12:47 PMTo: users@myfaces.apache.orgSubject: tabbed pane focus Hi,I have a tabbed pane with 3 tabs. On the second tab I have a link, which I'd like that when clicked, goes to the first tab. Is that p

tabbed pane focus

2005-10-18 Thread Kelly Goedert
Hi, I have a tabbed pane with 3 tabs. On the second tab I have a link, which I'd like that when clicked, goes to the first tab. Is that possible? Thank you Kelly

RE: commandButton - how to set to ignore required Validation?

2005-10-18 Thread Jeffrey Porter
I know I’m gonna be a member of the OptionalValidator Club. Just waiting for my membership pack to arrive (i.e. building one now) ;-)     JP   -Original Message- From: Jesse Alexander (KBSA 21) [mailto:[EMAIL PROTECTED] Sent: 18 October 2005 11:19 To: MyFaces Discussion Sub

RE: Re: survey: what tool are you using for JSF ?

2005-10-18 Thread Jesse Alexander \(KBSA 21\)
-Original Message- > trying: Exadel v3 pro: > - good JSF-editor > - good JSP-editor (Macromedia-style) > Btw. Jesse Exadel now has the 3.0.5 released Features: MyFaces 1.1.0 and some bugfixes to the biggest showstoppers I have encountered, basically according to the Exadel guys the forced

RE: commandButton - how to set to ignore required Validation?

2005-10-18 Thread Jesse Alexander \(KBSA 21\)
If that does not completely solve your problem: Welcome to the club of the (potential) users of OptionalValidator ;-)   Or in another mode: I needed that "soft" validation on something other than the cancel button...   regards Alexander From: Jeffrey Porter [mailto:[EMAIL PROTECTED] Sent:

RE: commandButton - how to set to ignore required Validation?

2005-10-18 Thread Jeffrey Porter
immediate="true"   Add the immediate="true" value to the commandButton tag.         -Original Message- From: Jeffrey Porter [mailto:[EMAIL PROTECTED] Sent: 18 October 2005 10:33 To: MyFaces Discussion Subject: commandButton - how to set to ignore required Validation?    

commandButton - how to set to ignore required Validation?

2005-10-18 Thread Jeffrey Porter
    Is there a way I can set a command button to ignore the validation required on the page?   I.e. To create a “cancel” button on a page   Thanks Jeff                                                                  

RE: FacesContext/VariableResolver to get bean - how to set a bean?

2005-10-18 Thread Jeffrey Porter
Brief Summary (for those that care): 1. Define the managed bean in faces config. 2. Define the t:saveState tag in your JSP 3. Command button called that executes the code in the action class below. Then redirects to the page with the saveState tag. JSP... Action Class... ValueBinding b

Re: No tag "panelNavigation2"

2005-10-18 Thread James McGrath
Thanks for the quick response. I am using MyFaces 1.1.0. You are right, panelNavigation2 does not appear in META-INF/tomahawk.tld, so it could be something in a new release. I think I will use the panelNavigation tag instead (I'm really not sure what the difference between the two is actually

AW: Custom column renderer

2005-10-18 Thread andreas.mitter
If I unterstand you right, you can use the rendered Attribute e.g. Hope that helps Regards, Andy -Ursprüngliche Nachricht- Von: Henrik Bentel [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 18. Oktober 2005 10:34 An: users@myfaces.apache.org Betreff: Custom column renderer Hi I have

Custom column renderer

2005-10-18 Thread Henrik Bentel
Hi I have a question that I'm sure is a newbie one. I'm looking to create custom renderer for a colum in a DataTable. I have a column whose internal data is integers. However what I am looking to render in the table cell is depending on the integer value: - Either a hyperlink (with associat

RE: FacesContext/VariableResolver to get bean - how to set a bean?

2005-10-18 Thread Jeffrey Porter
Thanks Mike. I'll follow your example for the moment. It doesn't seem the most logical way to do it. I'm surprised that MyFaces doesn't have a more structured way to do this. Anyone else have a view on this? Jeff. -Original Message- From: Mike Kienenberger [mailto:[EMAIL PROTECTED]

Re: No tag "panelNavigation2"

2005-10-18 Thread Luca Conte
It is in nightly build! James McGrath ha scritto: > Hi All, I'm new to using Tomahawk, but have a bit of experience with > JSF, anyway I'm having a frustrating time at the moment. > > I'm sure there is a really simple solution to this - but I have been > circling this problem for days and can't

Re: No tag "panelNavigation2"

2005-10-18 Thread James McGrath
Thanks for the quick response. I am using MyFaces 1.1.0. You are right, panelNavigation2 does not appear in META-INF/tomahawk.tld, so it could be something in a new release. I think I will use the panelNavigation tag instead (I'm really not sure what the difference between the two is actually).

Re: survey: what tool are you using for JSF ?

2005-10-18 Thread Werner Punz
Martin Marinschek wrote: > IntelliJ IDEA - without Faces support whatsoever :( > > regards, > > Martin > Btw. it is kind of off topic but Jetbrains has cancelled Visual Fabrique due to the advancements the J2EE specs have made, there was no sense in pushing out a proprietary framework, given the