Re: Why TagUtils.instance is final static. That cause me a lot of problem.. Is a small change can be done ...?

2006-06-14 Thread David Gagnon
(for me at least). Best Regards /David Gagnon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Why TagUtils.instance is final static. That cause me a lot of problem.. Is a small change can be done ...?

2006-06-13 Thread David Gagnon
I did an webBase ERP and in this context the window scope make sense. One session, 3 windows, 1 Request and 1 page scope. And I do want to change the implementation because this way I can use all the Struts taglib without a change! You are correct, but what if you are going to use JSTL tag

Re: Why TagUtils.instance is final static. That cause me a lot of problem.. Is a small change can be done ...?

2006-06-13 Thread David Gagnon
Hi Antonio, I suppose that you want to use some window-scoped attribute in your JSP page, right? In this case I think that you could "copy" you attribute from window scope to page scope (probably with some custom tag library) and then use it, without changing Struts codebase. HTH Antonio Ye

Why TagUtils.instance is final static. That cause me a lot of problem.. Is a small change can be done ...?

2006-06-11 Thread David Gagnon
Hi all, I'm running with struts 1.1 and I tried to migrate to 1.2.9 this morning. My biggest problem is that I needed to change the code base of my 1.1 to put new feature I needeed. One of them is that I introduced new scope like: window scope So I have ApplicationScope SessionScope Window