Re: suggestions for how to display calendar

2005-07-13 Thread Jesse Vitrone
like this: Jurgen, the component author, is working on a few last issues (last for this first version, of course, as the component will be improved more in the sandbox). Once he is ready, we will create the patches to include this component in the sandbox, Regards, Bruno 2005/7/13, Jesse

Re: suggestions for how to display calendar

2005-07-12 Thread Jesse Vitrone
JSF way of doing it though. Jesse Mike Kienenberger wrote: On 7/12/05, Jesse Vitrone <[EMAIL PROTECTED]> wrote: I'm working on an application that has some PIM functionality and has a calendar / schedule that needs to show a monthly view of the calendar, with all th

Re: suggestions for how to display calendar

2005-07-12 Thread Jesse Vitrone
oblem. Thanks again, Jesse Jesse Vitrone wrote: I'm working on an application that has some PIM functionality and has a calendar / schedule that needs to show a monthly view of the calendar, with all the events for that day. I'm not sure the best way to display this using JSF. I h

suggestions for how to display calendar

2005-07-12 Thread Jesse Vitrone
7;s not a data table? This was pretty easy to write as a jsp tag, and I can't seem to think of an easy way to do this with JSF. Any suggestions would be appreciated. Thanks, Jesse Vitrone

Re: session vs request

2005-07-08 Thread Jesse Vitrone
27;s not a class that I'm supposed to be using directly. Is there a way for me to be using a DataModel that's serializable? Thanks, Jesse Wendy Smoak wrote: From: "Jesse Vitrone" <[EMAIL PROTECTED]> on MyFaces Discussion I've googled this, but didn't fin

Re: session vs request

2005-07-07 Thread Jesse Vitrone
g McClanahan wrote: On 7/7/05, Jesse Vitrone <[EMAIL PROTECTED]> wrote: Obviously nobody has limitless memory and performance, that's why I'm wondering if there is a rule of thumb for figuring out if it's going to be too much for the server to handle. Is 100

Re: session vs request

2005-07-07 Thread Jesse Vitrone
stion I think.   I think also jsf supports both approaches via the ability to store backing info on the client side via config option.   Garry From: Jesse Vitrone [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 07, 2005 6:11 PM To: MyFaces Discussion Subject: Re:

Re: session vs request

2005-07-07 Thread Jesse Vitrone
ng to think about.  Thanks for the info. Jesse Sean Schofield wrote: True. I only knew to keep looking because I distinctly remembered such a conversation with Craig way back when. sean On 7/7/05, Jesse Vitrone <[EMAIL PROTECTED]> wrote: Sean, Thanks for the link, I s

Re: session vs request

2005-07-07 Thread Jesse Vitrone
Here is a link to one thread of interest: http://www.mail-archive.com/users@myfaces.apache.org/msg01696.html HTH, sean On 7/7/05, Jesse Vitrone <[EMAIL PROTECTED]> wrote: I have always learned, don't put stuff in the session unless you have to, so when I started my project,

session vs request

2005-07-07 Thread Jesse Vitrone
I have always learned, don't put stuff in the session unless you have to, so when I started my project, I made all of my backing beans request scoped, but started wondering lately if there are benefits to keeping them in the session. Is there a valid argument for making them session beans? Yo

Re: session problems

2005-04-11 Thread Jesse Vitrone
e this after I do a session.invalidate? Thanks, Jesse Jesse Vitrone wrote: I'm having some problems with my login page. When a user tries to log in, I try to grab the session and use it for some stuff like this: FacesContext fc = FacesContext.getCurrentInstance();

session problems

2005-04-09 Thread Jesse Vitrone
I'm having some problems with my login page. When a user tries to log in, I try to grab the session and use it for some stuff like this: FacesContext fc = FacesContext.getCurrentInstance(); ExternalContext ec = fc.getExternalContext(); HttpSession httpSession = (

Re: x:commandSortHeader

2005-02-04 Thread Jesse Vitrone
Oh, never mind, I missed the part in the example where getCars() was calling the sort method. Jesse Jesse Vitrone wrote: When you click on the link generated by a x:commandSortHeader, what method does it call on the backing bean? I see in the sort table example, there's this

x:commandSortHeader

2005-02-04 Thread Jesse Vitrone
When you click on the link generated by a x:commandSortHeader, what method does it call on the backing bean? I see in the sort table example, there's this code: But what method does it call? No need for an

Re: Background parallel HTTP request (ASP.NET callback logic)

2005-02-02 Thread Jesse Vitrone
Isn't something similar being done here? http://irian.at/myfaces/jslistener.jsf Jesse Heath Borders wrote: Yes, JSF could potentially do something like this, but there are a lot of concurrency issues to consider. Particularly, dealing with saving and restoring the state of the app. On

Re: url problem

2005-01-19 Thread Jesse Vitrone
On Wed, 19 Jan 2005 10:47:43 -0500, Jesse Vitrone <[EMAIL PROTECTED]> wrote: sure, reason is uses POST of HTTP. in faces-config.xml's navigation rulez will do the trick. If I understood you right... :-) Yes

Re: url problem

2005-01-19 Thread Jesse Vitrone
Yeah, even with the *, no luck. Matthias Wessendorf wrote: mmm, reload could be a candiate for not finding "from-view-id" tried with * (just for fun...) ? HTH, Matthias -Original Message----- From: Jesse Vitrone [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 4:48 PM T

Re: url problem

2005-01-19 Thread Jesse Vitrone
sure, reason is uses POST of HTTP. in faces-config.xml's navigation rulez will do the trick. If I understood you right... :-) Yes, that's exactly what I was looking for, thanks.  Now that the URL looks right, that exposes another problem I'm having that I thought this would've fi

url problem

2005-01-19 Thread Jesse Vitrone
First - great job with MyFaces - keep up the great work. Second - is there an archive for this mailing list? I wanted to search that before I asked my question, but I couldn't find one. Third - my real question - When I use a command link to call a method, then move on to another page, the URL

Re: passing from one backing bean to another

2005-01-18 Thread Jesse Vitrone
Never mind, I was able to do it with this: FacesContext context = FacesContext.getCurrentInstance(); BackingBeanB b = (BackingBeanB) context.getApplication().getVariableResolver().resolveVariable(context, "BackingBeanB"); >From there I was able to set stuff on my bean and it wa