not working

2004-05-24 Thread Yansheng Lin
Hi, I am getting ? instead of the property value on the page. I don't want to switch back to since I could get working. I am passing a dynamic var to a javascript action. Thanks for any help -Yan - To unsubscribe, e-ma

RE: native2ascii or better editor?

2004-03-03 Thread Yansheng Lin
I saw a screen capture for Yudit, looks promising. Not sure how hard it is to install. Btw, did you get the i18n for images issue figured out? -yan -Original Message- From: Evgeny Gesin [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 3:26 PM To: Tag Libraries Users List Su

RE: hello

2004-02-23 Thread Yansheng Lin
DO NOT open the attachment. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, February 21, 2004 3:52 PM To: [EMAIL PROTECTED] Subject: hello something is going wrong! - To unsubscrib

RE: Request encoding problem

2003-12-04 Thread Yansheng Lin
dam Hardy [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 3:04 PM To: Tag Libraries Users List Subject: Re: Request encoding problem As long as you set the filter parameter in the web.xml, then the filter config will be valid, not null. Adam On 12/04/2003 10:51 PM Yansheng Lin wrote

RE: Request encoding problem

2003-12-04 Thread Yansheng Lin
move on to the next chain.doFilter(srequest,sresponse); } } ~~~ And setup this filter for all JSP files in your web.xml. Hope this helps. -- - Original Message ----- DATE: Thu, 4 Dec 2003 12:58:54 From: "Yansheng Lin" <[EMAIL PROTECTED]> To: &qu

Request encoding problem

2003-12-04 Thread Yansheng Lin
Hi, I have trouble processing user's input using UTF-8 encoding. I can change to different locales with , but I don't think is working for me right now. I already set the page encoding in my hearder with: Here is my Systen.out in the beginning of dispatchAction(): System.ou

RE: Jstl i18n not working

2003-11-10 Thread Yansheng Lin
in "WEB-INF/classes", you can just use "ApplicationResources" as a basename. If it's in "WEB-INF/classes/org/j2e_translate", you have to use "org.j2e_translate.ApplicationResources" as a basename. So where is the property file *really* located? Quoting Ya

RE: Jstl i18n not working

2003-11-10 Thread Yansheng Lin
Oh, I see. I can find the resource bundle now for my other . But it still doesn't solve my first problem. That's why I got so confused. I guess it has something to do with putting the tag in the head. Wonder if someone can provide a good point for a JSTL beginner like me. Thanks a lot! -

RE: Jstl i18n not working

2003-11-10 Thread Yansheng Lin
e file is in the /WEB-INF/classes/org.j2e_translate directory with the settings you currently have... > -Original Message- > From: Yansheng Lin [mailto:[EMAIL PROTECTED] > Sent: Monday, November 10, 2003 11:18 AM > To: 'Tag Libraries Users List' > Subject: RE: Jst

RE: Jstl i18n not working

2003-11-10 Thread Yansheng Lin
Technology Services 515.278.7725 "Yansheng Lin" <[EMAIL PROTECTED]To: "'Tag Libraries Users List'" <[EMAIL PROTECTED]>gis.com> cc: Subject: Jstl i18n not working 11/10/2003 11:00AM P

Jstl i18n not working

2003-11-10 Thread Yansheng Lin
Hi, in my web.xml: javax.servlet.jsp.jstl.fmt.fall-backLocale en javax.servlet.jsp.jstl.fmt.localizationContext ApplicationResources.properties Then in my jsp: But I am getting the following output: ???j2emain.title??? Help ap

So many dependencies...

2003-07-25 Thread Yansheng Lin
How come JSTL uses some many libraries? It kind of messes up my lib directory. Can we merge them into one called jstl.jar? Or uses libs from commons? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

RE: Is there a way for sorting a table in jstl?

2003-07-14 Thread Yansheng Lin
a great example war. You can goolge for display tag or it's linked on basebeans.com downloads page. hth, Yansheng Lin wrote: >For example, sort by columns. > > -- Vic Cekvenich, Struts Instructor, 1-800-917-JAVA Advanced Struts Training and project recovery in North Eas

Is there a way for sorting a table in jstl?

2003-07-11 Thread Yansheng Lin
For example, sort by columns. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

BTW: JSTL is getting quite a boost in Struts Community:).

2003-07-10 Thread Yansheng Lin
>>FW: On Thu, 10 Jul 2003, David Graham wrote: > > It's a huge step *forwards* from the Struts tags. The JSTL is far more > powerful and easier to use. Plus, it's a standard so every Java web > developer is expected to know it. Besides these advantages (which are correct), there's another imp

RE: How come didn't regonize variable?

2003-07-10 Thread Yansheng Lin
e variable? > > > > The sortField looks like a property of your > html:form. Thus it exists in > > the form bean, not in scope by itself. So to use > c:out, you would need to > > do this: > > > > > > > > Hope this helps, > > > >

How come didn't regonize variable?

2003-07-10 Thread Yansheng Lin
I have a simple statement in my jsp file: The output source is: nothing As you can see, the struts tag rendered the value, but didn't. I am new to JSTL, so I have no clue why this didn't work. --