RE: myfaces support in a hosting provider

2006-03-30 Thread Jesse Alexander \(KBSA 21\)
isn't the tomcat-manager active? regards Alexander From: Rogerio Pereira [mailto:[EMAIL PROTECTED] Sent: Thursday, March 30, 2006 10:15 PMTo: MyFaces DiscussionSubject: myfaces support in a hosting provider Hi,I have one tomcat context avaliable for me at my hosting

RE: Spring, myfaces, hibernate

2006-03-30 Thread Jesse Alexander \(KBSA 21\)
valid point. 1-pagers often grow to ugly multi-page spaghetti-apps... introducing and therefor experimenting stuff like spring helps tremendously... maybe spring is enough, tough regards Alexander From: Jurgen Lust [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 9:05

RE: many facelets libraries

2006-03-13 Thread Jesse Alexander \(KBSA 21\)
hmm... try this link https://facelets.dev.java.net/nonav/docs/dev/docbook.html#config-webapp -init Seems that the solution is to specify multiple libraries as a semicolon-separated list: facelets.LIBRARIES A semicolon (;) delimitted list of paths to Facelet tag libraries,

RE: how to run MyFaces examples on SunApplication Server 8.2 ???? URGENT!

2006-03-06 Thread Jesse Alexander \(KBSA 21\)
In such a case extracts form the server-logs might help more... Have yo checked: http://wiki.apache.org/myfaces/Installation_and_Configuration? hth Alexander From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of DuduSent: Monday, March 06, 2006 1:47 PMTo: MyFaces

RE: what is the worse thing that could happen - escape=false

2006-02-26 Thread Jesse Alexander \(KBSA 21\)
That kind of security is a wasp's nest... _javascript_ is not the only possible fountain of problems... SQL-Code-injection is another one... My take is that JSF's validation might be already too far within the application's scope to deal with such attack-oportunities. I would prefer to have

RE: JSF log activity

2006-02-15 Thread Jesse Alexander \(KBSA 21\)
Hi Cool idea.. some instrumentation in this direction would be great... hmm.. could a phase-listener be used... need to check the API's thanks for the idea Alexander -Original Message- From: Csík Norbert [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 15, 2006 2:22 PM To:

RE: JSF log activity

2006-02-15 Thread Jesse Alexander \(KBSA 21\)
the information above;Regards,Cagatay Civici, On 2/15/06, Martin Marinschek [EMAIL PROTECTED] wrote: Navigation Listener?ViewHandler?Combo of both?regards,MartinOn 2/15/06, Jesse Alexander (KBSA 21) [EMAIL PROTECTED] wrote: Hi Cool idea.. some instrumentation

RE: online TLD API docs gone?

2006-02-14 Thread Jesse Alexander \(KBSA 21\)
it seems. Also the version numbers aren't consitent. (API-113 - Download-111) Hopefully they get online back soon. Philippe On 14 Feb 2006, at 11:45, Jesse Alexander (KBSA 21) wrote: Might result from the migration of the website to the maven build-system. regards Alexander

RE: MyFaces + Weblogic = Classloading Problems

2006-02-11 Thread Jesse Alexander \(KBSA 21\)
The problem you mention (and the code you found) were needed for WLS-versions prior to 8.1.4 From that patchlevel on a patch has been added to WLS to fix the contextlistener-init problem. I just deployed the MyFaces simple application (just had to remove the description tags from the

RE: Components disappearing!

2006-02-10 Thread Jesse Alexander \(KBSA 21\)
HI ! I am trying to make a custom component, a sortable column which is a column with an output text and 2 command buttons at its header. I extends the UIcolumn component and put a htmlPanelGrid in it header. HtmlPanelGrid contains an output text and 2 command buttons. I am trying to

RE: Architecture question

2006-02-08 Thread Jesse Alexander \(KBSA 21\)
-Original Message- If an application has 3 tiers: presentation, business, backend - in which of those would you put the JSF Model (the Backing Beans?) Usual answer: depends... ;-) When I read through the www, I have to assume that it belongs in the business tier while the rest

RE: charater/number on an image?

2006-02-07 Thread Jesse Alexander \(KBSA 21\)
checkout: - wiki: (links at the bottom) http://en.wikipedia.org/wiki/Captcha hth Alexander -Original Message- From: Mike Kienenberger [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 07, 2006 4:28 PM To: MyFaces Discussion Subject: Re: charater/number on an image? I read an

RE: Variable Resolver

2006-02-06 Thread Jesse Alexander \(KBSA 21\)
No need for the VariableResolver for such stuff... As Volker pointed out, it depends on the getter/setter methods. VariableResolver in ManagedBeans is only needed when you need to look up some beans with which you basolutely no direct connection. I dare to guesitmate that this will hit less than

RE: Variable Resolver

2006-02-06 Thread Jesse Alexander \(KBSA 21\)
The stacktrace also talks about HtmlOutputLabel searching for this property.. there is h:outputText value=#{labels.login_name} / in his jsp.. could it be that the labels bean (snippet from faces-config does not contain that bean) is also of class be.mnemonica.web.beans.LoginBean? That would

RE: Variable Resolver

2006-02-06 Thread Jesse Alexander \(KBSA 21\)
/managed-bean On 06 Feb 2006, at 15:01, Jesse Alexander (KBSA 21) wrote: The stacktrace also talks about HtmlOutputLabel searching for this property.. there is h:outputText value=#{labels.login_name} / in his jsp.. could it be that the labels bean (snippet from faces-config does

FW: Any way to disable/sidestep converters/validators while processing a ActionListener event?

2006-02-01 Thread Jesse Alexander \(KBSA 21\)
-Original Message- From: Jesse Alexander (KBSA 21) Sent: Thursday, February 02, 2006 8:24 AM To: MyFaces Development Subject: RE: Any way to disable/sidestep converters/validators while processing a ActionListener event? Hello: We would like to be able

RE: Packaging up Custom Components and Convertersl

2006-01-31 Thread Jesse Alexander \(KBSA 21\)
-Original Message- Is there documentation (either in a wiki or somewhere else) showing how to package up the classes and resource files used in a custom components and converters into their own JAR file, so that the JAR file can be shared among different applications? Best doc I

RE: Howto add faces-config.xml file to /META-INF in a jar to create a deployable jsf component?

2006-01-21 Thread Jesse Alexander \(KBSA 21\)
The faces-config.xml in the META-INF directory is necessary to have JSF automagically include your component in its runtime configuration. The JSF-spec say, that every jar-file in the WEB-INF/lib directory of a webapp is to be searched for a META-INF/faces-config.xml and if found the

RE: Dynamically refer to a component from another component

2006-01-20 Thread Jesse Alexander \(KBSA 21\)
You could help _javascript_ by generating a hidden field with a given id and the number of rows as value... hth Alexander From: Enrique Medina [mailto:[EMAIL PROTECTED] Sent: Friday, January 20, 2006 12:05 PMTo: [EMAIL PROTECTED]; MyFaces DiscussionSubject: Re: Dynamically refer to a

RE: Dynamically refer to a component from another component

2006-01-19 Thread Jesse Alexander \(KBSA 21\)
Do you know the parent bean? Do you know the id of the othercomponent? findComponent(java.lang.Stringexpr) Search for and return the UIComponent with an id that matches the specified search _expression_ (if any), according to the algorithm described below. This method exists in

RE: Dynamically refer to a component from another component

2006-01-19 Thread Jesse Alexander \(KBSA 21\)
No he says: You need to add the component to its parent component before you can receive a usefull clientId. hthAlexander From: Enrique Medina [mailto:[EMAIL PROTECTED] Sent: Thursday, January 19, 2006 5:12 PMTo: MyFaces DiscussionSubject: Re: Dynamically refer to a component from

RE: concurrency and t:dataTable (preserveDataModel, forceId, param)

2006-01-19 Thread Jesse Alexander \(KBSA 21\)
We solved the problem rendering an icon with a commandLink. Then we passed the unique record id as parameter to the link, and in that way the backend was able to delete the correct record. It did not need to guess on the record using the relative position in the table, but hit directly the

RE: do conversion and update model values, but skip validation?

2006-01-19 Thread Jesse Alexander \(KBSA 21\)
Welcome to the club (of the potential OptionalValidator users). As one of the initiants (together with Mike), I think I can say there is not an easier way to do it. And OV is not yet working perfectly when you do not use facelets. There are some loose ends to be fixed... We tried to make live

RE: Custom components

2006-01-19 Thread Jesse Alexander \(KBSA 21\)
Hi when I was lokking for something like that, I found it in JSF in Action from Manning written by Kito D. Mann which is also available in eBook-format http://www.manning.com/books/mann hth Alexander -Original Message- From: Jana Parvanova [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: dataScroller total page number (large data set)

2006-01-18 Thread Jesse Alexander \(KBSA 21\)
Create your own datamodel, which makes dataScroller think it has all the data ready, but will not load the data into memory... regards Alexander From: Emmanuel Jay [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 18, 2006 9:13 AMTo: MyFaces DiscussionSubject: Re: dataScroller total

RE: easiest way to get a jsf page as pdf download

2006-01-17 Thread Jesse Alexander \(KBSA 21\)
Reading this thread I came up with this idea: Have the render-kit create a dom-representation of the UI-tree. Then have a transform-mechanism convert it inot either html or pdf or wml, or... according to the useragents needs or according to some other request-settings that control the

RE: An optimised pattern for using t:dataTable - please verify.

2006-01-13 Thread Jesse Alexander \(KBSA 21\)
I am milling around since quite some time on the subject of datatables. In our app we have the case that hibernates fetches a few megabytes of data, which will then be saved in the state and the hibernate-objects remain referenced - no gc... My current thoughts are about a datamodel that does

RE: An optimised pattern for using t:dataTable - please verify.

2006-01-13 Thread Jesse Alexander \(KBSA 21\)
Subject: RE: An optimised pattern for using t:dataTable - please verify. On Fri, 2006-01-13 at 13:34 +0100, Jesse Alexander (KBSA 21) wrote: I am milling around since quite some time on the subject of datatables. In our app we have the case that hibernates fetches a few megabytes of data, which

RE: How to override the MyFaces 1.1.1 taglib listener registration?

2006-01-12 Thread Jesse Alexander \(KBSA 21\)
Why not use an apache webserver with its url-rewriting capabilities? hth Alexander -Original Message- From: David G. Friedman [mailto:[EMAIL PROTECTED] Sent: Thursday, January 12, 2006 5:55 PM To: MyFaces Discussion Subject: RE: How to override the MyFaces 1.1.1 taglib listener

RE: Question?

2006-01-11 Thread Jesse Alexander \(KBSA 21\)
Hi Marco look at the datascroller.jsp sample... x:dataScroller id=scroll_2 for=data rowsCountVar=rowsCount displayedRowsCountVar=displayedRowsCountVar

RE: dataTable with two rows per data row

2006-01-08 Thread Jesse Alexander \(KBSA 21\)
Hi Robert -Original Message- Is it possible to create a h:dataTable that has two HTML rows per row of data? Its just that I want to display a long message that wont fit next to all the other columns, as hoping it might be possible to display it under the row. -/Original

RE: Nighty build link does't work

2006-01-06 Thread Jesse Alexander \(KBSA 21\)
Hi Onur Sean has sent a mail tothis list on Wednesday 4th January with this content: -- ---snipped During the transition time the website will not be updated and the nightly builds will not be running. ---snipped

RE: JSF Chart Creator and JSF Client Side Validators

2006-01-05 Thread Jesse Alexander \(KBSA 21\)
What is with *our* sourceforge project jsf-comp for the chart related stuff? could this be a possibility for a (unknown) timeframe? That is the idea of the jsf-comp-project ;-) - easy access to a repository and distribution plattform with less restrictive rules on licences in order to have

RE: JSF Chart Creator and JSF Client Side Validators

2006-01-05 Thread Jesse Alexander \(KBSA 21\)
-Original Message- Is JFreeChart in the maven-repository? -/Original Message- according to http://www.ibiblio.org/maven/layout.html Maven repository contents at Wed Nov 10 02:31:45 EST 2004 JFreeChart is at: /jfreechart/jars/jfreechart-0.9.2.jar 1802240

RE: JSF Chart Creator and JSF Client Side Validators

2006-01-05 Thread Jesse Alexander \(KBSA 21\)
And http://www.ibiblio.org/maven2/jfreechart/jfreechart/ shows there is already the 1.0.0 version for maven 2... http://www.jfree.org/phpBB2/viewtopic.php?t=15696highlight=maven says the same... -Original Message- From: Jesse Alexander (KBSA 21) Sent: Thursday, January 05, 2006 10

RE: JSF Chart Creator and JSF Client Side Validators

2006-01-05 Thread Jesse Alexander \(KBSA 21\)
I doubt that it will be possible to work without the servlet... (knowing JFreeChart) regards Alexander From: Legolas Woodland [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 1:24 PM To: MyFaces Discussion Subject: Re: JSF Chart Creator and JSF Client

RE: SQL paging with dataScroller

2006-01-04 Thread Jesse Alexander \(KBSA 21\)
No way that you need to resort to stored procedures... It's just a bit nasty to do especially if you want to sort on every column. Basically the technique is about 20 years old. You need a special datamodel, which stores the key-information of the first and the last record. When you need the

RE: JSF web application test

2005-12-20 Thread Jesse Alexander \(KBSA 21\)
-Original Message- I believe you are looking for httpunit . -/Original Message- Or its abstraction JWebUnit. Alexander Original message What is the way to write automatic tests for web application using JSF? Right now I have to open web browser to manually

RE: Execute method automatically after page has been loaded and shown to user

2005-12-07 Thread Jesse Alexander \(KBSA 21\)
Hi Andy Have you thought about using the refresh-meta-tag? You could render the page on first visit with a refresh header set to 1 second. The page would be rendered reading --- please wait --- and in the background initiate a new request which then would build the connection, and render a new

RE: Simplifying column expression

2005-12-07 Thread Jesse Alexander \(KBSA 21\)
Not really all necessary... You would need to a) replace the datatable-renderer (he is responsible for the column-header-rendering) b) create the column-header-component... regards Alexander -Original Message- From: Mike Kienenberger [mailto:[EMAIL PROTECTED] Sent: Wednesday, December

RE: myfaces in weblogic

2005-12-06 Thread Jesse Alexander \(KBSA 21\)
Hi Peter I think I read somewhere, that SP4 for WLS fixes the problem, that WLS initializes the Servlets before the listeners have finished. That's why the MyFacesServlet explicetely can initialize MyFaces in its init()-method. This Servlet is still in the MyFaces jar-files. It only changed

FW: Error in deploying jsf application

2005-12-06 Thread Jesse Alexander \(KBSA 21\)
Sorry bad list again... -Original Message- From: Jesse Alexander (KBSA 21) Sent: Tuesday, December 06, 2005 1:44 PM To: MyFaces Development Subject: RE: Error in deploying jsf application Hi Bill do you mean tomcat.jar or tomahawk.jar hth Alexander

RE: Re: MyFaces for production?

2005-12-02 Thread Jesse Alexander \(KBSA 21\)
Sounds like time to do thread-dumps (and -analysis)... Have you two done some performance-measurements on your apps? regards Alexander -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Werner Punz Sent: Friday, December 02, 2005 9:59 AM To: users@myfaces.apache.org

RE: Using converters in non-JSF related code.

2005-12-01 Thread Jesse Alexander \(KBSA 21\)
Instead of subclassing it, I would prefer to delegate, that creates two classes with a less tight coupling. -Original Message- There's not much in a converter and there shouldn't be any reason why you couldn't do this. However, since you're having to pass in a FacesContext and a

RE: focus component

2005-11-25 Thread Jesse Alexander \(KBSA 21\)
11:35 AM To: MyFaces Discussion Subject: Re: focus component thanks jesse! On 11/25/05, Jesse Alexander (KBSA 21) [EMAIL PROTECTED] wrote: We have uploaded the component to the Jsf-Component (SF-)project. In this way we can collaborate better on this component. Yesterday we discovered

RE: Performance Question

2005-11-24 Thread Jesse Alexander \(KBSA 21\)
That does not sound like a performance problem... rather like a memory leak ... Or a wls-instance with too less memory... hth Alexander -Original Message- From: rosalba bochicchio [mailto:[EMAIL PROTECTED] Sent: Thursday, November 24, 2005 6:13 PM To: users@myfaces.apache.org Subject:

RE: javadocs for 1.0.9

2005-11-17 Thread Jesse Alexander \(KBSA 21\)
On 11/16/05, Jesse Alexander (KBSA 21) [EMAIL PROTECTED] wrote: Sorry, I was looking some hours ago at the download-page. As the use of mirrors is recommended I just found 1.1.0 and 1.1.1 but no 1.0.9. Shame on me Alexander -Original Message- From: Sean Schofield [mailto:[EMAIL

RE: javadocs for 1.0.9

2005-11-16 Thread Jesse Alexander \(KBSA 21\)
just where are the 1.0.9 download-files? regards Alexander -Original Message- From: Sean Schofield [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 16, 2005 7:24 PM To: MyFaces Discussion Subject: Re: javadocs for 1.0.9 The javadoc should be in one of the release bundles (source?)

RE: javadocs for 1.0.9

2005-11-16 Thread Jesse Alexander \(KBSA 21\)
Discussion Subject: Re: javadocs for 1.0.9 There is a link to them on the download page [1]. sean [1] http://archive.apache.org/dist/myfaces/ On 11/16/05, Jesse Alexander (KBSA 21) [EMAIL PROTECTED] wrote: just where are the 1.0.9 download-files? regards Alexander -Original Message

RE: Very puzzling out of order execution...

2005-11-15 Thread Jesse Alexander \(KBSA 21\)
Is this a request that is configured as Redirect? That could explain a few problems... hth Alexander From: Yee CN [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 6:01 PM To: 'MyFaces Discussion' Subject: Very puzzling out of order execution...

RE: contributing with components

2005-11-09 Thread Jesse Alexander \(KBSA 21\)
2005/11/9, Jesse Alexander (KBSA 21) [EMAIL PROTECTED]: Do you want single regions of one image to call different methods OR Do yo want to have one image call one method. If it is the second, then you could render a commandlink and have an image as its child. That's the way you might do

How to find out which implementation is running

2005-10-28 Thread Jesse Alexander \(KBSA 21\)
Hi When I want to write a component that must run under more than JSF-implementation, I often should know (runtime not development time) which implementation is running, in order to use the correct base-classes. Has somebody devised a clever method to find out which JSF-runtime is active? Or

RE: How to find out which implementation is running

2005-10-28 Thread Jesse Alexander \(KBSA 21\)
Discussion Subject: Re: How to find out which implementation is running Good question. If you devise something like this, there should also be a way to check for the spec version of the jsf implementation running. regards, Martin On 10/28/05, Jesse Alexander (KBSA 21) [EMAIL PROTECTED] wrote: Hi

RE: [PROPOSAL] PRETTY_HTML, was [RE: JFS's html output]

2005-10-26 Thread Jesse Alexander \(KBSA 21\)
-Original Message- Hm, probably someone could extend Jtidy to support the Pretty HTML feature also... -/Original Message- We still can give it back to them, if they want... -Original Message- Writing to log-files IMHO is a little bit difficult to work with. Often you have

RE: AW: FileDownload capability?

2005-10-26 Thread Jesse Alexander \(KBSA 21\)
-Original Message- The content-length is passed in the response header. Therefore it cannot be set once you have written data to the response body (after all, the header is written before the body, for details see http spec). If you know the length in advance you should set it (for

RE: [PROPOSAL] PRETTY_HTML, was [RE: JFS's html output]

2005-10-26 Thread Jesse Alexander \(KBSA 21\)
-Original Message- OK I looked into what JTidy delivers. Unfortunately it is not what we want :( The current jtidyServletFilter just VALIDATES the html and includes a validation-icon into the html-code delivered.The PrettyPrint feature is only available in the full-featured jtidy.

RE: [PROPOSAL] PRETTY_HTML, was [RE: JFS's html output]

2005-10-25 Thread Jesse Alexander \(KBSA 21\)
-Original Message- Just for discussion: Why implement the pretty-html option in every renderer? I think, it would be easier to postprocess the content in the framework before returning the complete html-content to the browser. What do you think? I found e.g.

RE: The value of Google

2005-10-24 Thread Jesse Alexander \(KBSA 21\)
-Original Message- From: CONNER, BRENDAN (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 25, 2005 1:03 AM To: MyFaces Discussion Subject: The value of Google It's pretty ironic that, if I go to Sun's Web site and search on JavaBean specification, I get lots of stuff but can't

RE: Comparable validation design

2005-10-22 Thread Jesse Alexander \(KBSA 21\)
-Original Message- Just a naming thing - shouldn't it be comparingValidator or compareValidator instead of comparableValidator? -/Original Message- I guess the name is just a first throw... maybe comparable because it accepts any Comparable object... But part of bringing it up here

RE: Adding a Component to a custom component

2005-10-22 Thread Jesse Alexander \(KBSA 21\)
-Original Message- What I need is to render a CommandButton which is part of the above component (a child of the component I suppose) without having to specify its HtmlCommandButton tag in the JSP. I guess i'd use app.createComponent() method somehow... -/Original Message-

RE: Comparable validation design

2005-10-21 Thread Jesse Alexander \(KBSA 21\)
-Original Message- 1) greaterThanValidator for=startDateInput/ is what I'm currently doing. 2) comparableValidator for=startDateInput operator=gt/ a) Operator values being eq, ne, lt, gt, ge, and le in addition to (or maybe instead of) b) ==, !=, , , =', and =. -/Original

RE: Comparable validation design

2005-10-21 Thread Jesse Alexander \(KBSA 21\)
-Original Message- t:booleanValidator op=or Ha ha! You're the expert on designing validators that wrap other validators. I'll let you write that one! :-) -/Original Message- Remember how I first objected to have OVW defined also as Validator... Just a few seconds later a

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

2005-10-20 Thread Jesse Alexander \(KBSA 21\)
on (custom components...): *.jsp : 18 *.java: 117 workspace: *.jar: 590 (some duplicates, because used in more than one project) I think these numbers could give an idea... regards Jesse Alexander (KBSA 21) wrote:

RE: Action Simulation

2005-10-20 Thread Jesse Alexander \(KBSA 21\)
Hi Patrick -Original Message- How can I simulate an event (a click in a button or link) from java code? -/Original Message- What do you want it for? Maybe then it is easier to answer... regards Alexander

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

2005-10-19 Thread Jesse Alexander \(KBSA 21\)
-Original Message- I only can say if speed is an issue, either move away from WTP based plugins or wait for better times. To split the project into several smaller subprojects and have ant doing the merge probably is the way to go currently. I cannot say how Nitrox behaves speedwise.

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: 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: 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

RE: [MyFaces] Custom Validator???

2005-10-17 Thread Jesse Alexander \(KBSA 21\)
Mike and I have experimented for quite some time before diving into the rather complicated world of the optional validator... Guess why we finally dived into that? Because there is no way around it. As I see for the quick-solution your way might be a Javascript-controlled pop-up! (And I HATE

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

2005-10-17 Thread Jesse Alexander \(KBSA 21\)
-Original Message- I'm asking what kind of IDE/Tool are you using for developing your JSF Web apps. -/Original Message- mostly: NitroX from M7: - good JSF-editor - good JSP-editor (Macromedia-style) - good recognization for distributed applications (apps relying on other apps...)

RE: [MyFaces] Custom Validator???

2005-10-15 Thread Jesse Alexander \(KBSA 21\)
Hi, we have the same problem. Mike and I are trying to do something in that direction. For validators that do not take parameters, we have a solution. Currently we are trying to create a wrapper for validators that allows to switch the validation mode from hard (Complete Process) to soft (all

multiple component jars

2005-09-28 Thread Jesse Alexander \(KBSA 21\)
Hi I use some components from the tomahawk collection and have written my own components as well. Now I am in the process of packaging my own components into jar-files and have run into a nasty feature of the JSF configuration. It is nice that each component-jar-file can have its own

RE: multiple component jars

2005-09-28 Thread Jesse Alexander \(KBSA 21\)
-Original Message- No way around this. -/Original Message- Feared so :( -Original Message- Same problem with PhaseListeners. -/Original Message- and any other configurable item... -Original Message- Maybe the spec should introduce something like a

RE: multiple component jars

2005-09-28 Thread Jesse Alexander \(KBSA 21\)
-Original Message- too late for 1.2, I suppose! exactly the right time for 2.0... I think there is something like an issue tracker on dev.java.net. -/Original Message- Not really. Ed Burns has answered this: -Original Message- Yes, this problem is real, but we

RE: Fwd: multiple component jars

2005-09-28 Thread Jesse Alexander \(KBSA 21\)
-Original Message- In any case - Ed's solution is very simple, might find its way even in 1.2, and is a whole lot better than having no possibility at all to get this problem fixed in your webapp! -/Original Message- a) great to see it already in 1.2 b) easy enough to backport it

RE: [ANNOUNCE] MyFaces passed the JSF TCK 1.1

2005-09-12 Thread Jesse Alexander \(KBSA 21\)
YIPPIIEH G R E A T congrats to the team Alexander -Original Message- From: Manfred Geiler [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 3:12 PM To: MyFaces Development; MyFaces Discussion Subject: [ANNOUNCE] MyFaces passed the JSF TCK 1.1 The MyFaces

RE: extentions vs. tomahawk

2005-09-10 Thread Jesse Alexander \(KBSA 21\)
Quick simple question. Is there really a difference between %@ taglib uri=http://myfaces.apache.org/extensions; prefix=x % and %@ taglib uri=http://myfaces.apache.org/tomahawk; prefix=t % tomahawk is the new name of the former

RE: Optional Validation Framework

2005-09-09 Thread Jesse Alexander \(KBSA 21\)
-Original Message- Yes, we'll see... it sure looks interesting! -/Original Message- It works and really solved our problem for our application. I just added simpler version of the RequiredValidator(2). I now will try to implement something for the other validators as well. Our

RE: master detail pages

2005-09-02 Thread Jesse Alexander \(KBSA 21\)
-Original Message- i think navigation is ok... i fear that some how the param is not passed to the managed bean if I check it in my action method it is null -/Original Message- Well in the code you showed earlier there was no check for the parameter. -Original Message-

RE: jsf and usability

2005-09-02 Thread Jesse Alexander \(KBSA 21\)
Meno male qualcun'altro collo stesso problema... === Well MyFaces is the only implementation allowing to banish JS. With ONE exception: commandLinks in a form will not work. Button will. So the only way is to device a css-style that

RE: master detail pages

2005-08-31 Thread Jesse Alexander (KBSA 21)
-Original Message- I'm a JSF total newbbie so.. I'm sorry if I'm asking something trivial. I read a lot of tutorials on page navigation and event handling... but I still can't figure out how to implement a simple master/detail pages. I make a page with dataTable reading values from a

RE: JSF success story

2005-08-31 Thread Jesse Alexander (KBSA 21)
-Original Message- What and where is jsf-comp? -/Original Message- https://sourceforge.net/projects/jsf-comp/ current active components: - optional validator - tabbed pane memory idea: - easy accessible repository for code around JSF - access for everyone willing to contribute -

RE: tabbedPane: jump directly to a specific pane

2005-08-19 Thread Jesse Alexander (KBSA 21)
? PK -Original Message- From: Jesse Alexander (KBSA 21) [mailto:[EMAIL PROTECTED] Sent: Friday, August 19, 2005 1:19 AM To: MyFaces Discussion Subject: x:tabbedPane: jump directly to a specific pane Hi we need to be able to jump to a specific pane directly instead of the first one

RE: tabbedPane: jump directly to a specific pane

2005-08-19 Thread Jesse Alexander (KBSA 21)
: RE: tabbedPane: jump directly to a specific pane Have you tried to use selectedIndex property? PK -Original Message- From: Jesse Alexander (KBSA 21) [mailto:[EMAIL PROTECTED] Sent: Friday, August 19, 2005 1:19 AM To: MyFaces Discussion Subject: x:tabbedPane: jump directly to a specific

jsf-comp TabbedPane Memory

2005-08-19 Thread Jesse Alexander (KBSA 21)
The MyFaces component panelTabbedPane somehow does not set the selectedIndex attribute when a value-binding is configured and I needed the possibility to display a specific tab when showing the tab-page. The results are described on: http://wiki.apache.org/myfaces/TabbedPaneMemory

RE: Renderkit for testing

2005-08-18 Thread Jesse Alexander (KBSA 21)
Somehow an appealling idea... Alexander -Original Message- From: Mike Kienenberger [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 17, 2005 4:57 PM To: MyFaces User mailing list Subject: Renderkit for testing Has anyone given any thought to a renderkit designed for testing? Perhaps

x:tabbedPane: jump directly to a specific pane

2005-08-18 Thread Jesse Alexander (KBSA 21)
Hi we need to be able to jump to a specific pane directly instead of the first one configured. This comes from a sub-dialog which we initiate on one of the tabs and we need to return to that tab... Has somebody already encountered a similar problem and maybe already solved it? We use the

RE: [incubator] new faces components proposal submitted

2005-08-18 Thread Jesse Alexander (KBSA 21)
I just wonder why it should be a new subproject. And whether it would not be better to concentrate all components under the tomahawk subproject. I feel that it will cause some confusion having more than one component sub-project. just my two cents Alexander -Original Message- From:

RE: MyFaces with Exadel studio

2005-08-10 Thread Jesse Alexander (KBSA 21)
Title: MyFaces with Exadel studio I'm using NitroX JSF, it is quite costly compared to MyEclipse or Exadel... but it works fairly well, although I have not yettried it under Linux. hthAlexander From: Delbrouck, Henri-Philippe [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 10, 2005

RE: Hibernate and MyFaces

2005-08-07 Thread Jesse Alexander (KBSA 21)
do you mean this one: http://blog.exadel.com/?p=8? Alexander -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Werner Punz Sent: Saturday, August 06, 2005 2:12 PM To: users@myfaces.apache.org Subject: Hibernate and MyFaces Just because I had a two hours time to spend

RE: ADF and MyFaces, what's the deal ?

2005-08-05 Thread Jesse Alexander (KBSA 21)
-Original Message- BUT IT'S NOT FREE ... http://www.oracle.com/technology/products/jdev/htdocs/jdevpricefaq.html That is why we changed from ADF 2 MyFaces. Regards, Christian PS: The only thing I am missing now is the afh:body tag. This was (with it's onload attribute) very useful

RE: Variable cell style classes in data table

2005-07-25 Thread Jesse Alexander (KBSA 21)
I did something similar, but I just needed to render an image according the content of a field. I ended up writing a Lookup-image component. Nothing complicated. hope this helps Alexander PS: I'll be offline for a week! But after august 2nd i can scetch up a component that does this trick, if

RE: [OT] Java-/JSP-source displaying servlet

2005-07-22 Thread Jesse Alexander (KBSA 21)
-Original Message- From: Sean Schofield [mailto:[EMAIL PROTECTED] I assume you have seen the SourceCodeServlet in the simple examples? It doesn't format the source code but it basically shows the jsp as it would look in a text editor (before the jsf tags are processed into HTML.)

RE: Contribution of component library planned, live demo availabl e

2005-07-22 Thread Jesse Alexander (KBSA 21)
-Original Message- So neither way is optimal. -/Original Message- That's why there should be a configuration switch to allow or not the use of javascript in a component. And whether the JS-enabled features should be called advanced? I have my own way of thinking about that. But

RE: Contribution of component library planned, live demo availabl e

2005-07-22 Thread Jesse Alexander (KBSA 21)
-Original Message- At the moment the themes/controls are working only with javascript, however it is possible to write a script-free theme. Of course in that case you will not have the full functionalltiy of the components (e.g. columnresizing in the sheet). The advantage is, that you

RE: Help with bundling Faces-Config

2005-07-21 Thread Jesse Alexander (KBSA 21)
-Original Message- Hi, I have some custom components built that have been bundled as a jar file. However, when I access them in my JSF page, I get ClassNotFoundException. The environment doesn't seem to pick it up from the jar file. Can you clarify if I can bundle my own

[OT] RE: How to remove a JDBC driver instance from the memory.

2005-07-21 Thread Jesse Alexander (KBSA 21)
Hi how about controlling that you have dereferenced the driver as completely as possible and then just ask the jvm to kindly consider doing a GC right now? have you considered asking this question in the JDBC-forum at sun's forum site? http://forum.java.sun.com/forum.jspa?forumID=48

RE: Contribution of component library planned, live demo availabl e

2005-07-21 Thread Jesse Alexander (KBSA 21)
Hi Is there a Javascript free version of the components? regards Alexander -Original Message- From: Udo Schnurpfeil [mailto:[EMAIL PROTECTED] Sent: Thursday, July 21, 2005 11:13 PM To: dev@myfaces.apache.org; users@myfaces.apache.org Subject: Contribution of component library

RE: Contribution of component library planned, live demo availabl e

2005-07-21 Thread Jesse Alexander (KBSA 21)
-Original Message- We are really interessted in your feedback regarding our examples. Unfortunatelly the descriptive text in the demo is not available in English yet. -/Original Message- Advantage of being swiss... no problem with the descriptions ;-) What I like is the clean

RE: Oracle ADF JSF

2005-07-19 Thread Jesse Alexander (KBSA 21)
-Original Message- 2. Oracle will never extend MyFaces component palette; they just test their components with MyFaces runtime. -/Original Message- Check the messages in this mailing lists history very carefully. Particularily I mean the second message of Jonas Jacobi:

  1   2   >