how to get value of bean using logic iterator

2005-08-03 Thread Shailendramani
Hi all, I am facing problem in to iterate a bean inside two arrayList. please send some example how to achive this. Thanks in advance Shailendra Mani

Re: JSTL 1.0 problem with Bayern Ch 11 example...

2005-08-03 Thread Martin Cooper
On 8/3/05, Givler, Eric <[EMAIL PROTECTED]> wrote: > I'm having a heck of a time trying to get the Bayern example from chapter 11 > working, and I'm really not sure why > It looks like there's a bug in your container. I just tried out your code on Resin 3.0.14, and everything works as expect

JSTL 1.0 problem with Bayern Ch 11 example...

2005-08-03 Thread Givler, Eric
I'm having a heck of a time trying to get the Bayern example from chapter 11 working, and I'm really not sure why I created an enterNumber.jsp page: <%@ page contentType="text/html;charset=windows-1252"%> untitled Enter your favorite number I created an p

Re: xtags:parse w/ io:http

2005-08-03 Thread William W
Okay after some fiddling around. It appears that the problem is in io:http tag. For some reason when I submit a new request, it does not take the new values. It somehow "caches" the first value that was used on the page. Hope someone can shed some insight. Regards, William On 8/2/05, William

Re: how do you Show data from sql query result using datagrid taglib

2005-08-03 Thread Ferindo Middleton Jr
I keep getting this error message saying: org.apache.jasper.JasperException: /web/registration_and_attendance_record_maintenance/find_and_list_registration.jsp(177,13) According to TLD or attribute directive in tag file, attribute items does not accept any expressions I'm calling the tag like

RE: How to print an "int" with a c:out tag?

2005-08-03 Thread Christian Taylor
I've never actually included my JSTL taglibs this way. I have just put jstl.jar and standard.jar in WEB-INF/lib. The TLD files are contained in standard.jar and should be automatically recognized by the container (Tomcat or otherwise). All I have to do then is include this line in any JSP: <[EMAIL

Tips for improving performance and optimizing tags

2005-08-03 Thread Marius Botha
Does anyone have any tips, ideas or things to watch out for when writing "good" tags (or can suggest a good website/book) that will assist in increasing performance. I developed a data table tag (very much like the displaytag) where the users can: 1. Sort data 2. Configure columns they want to see

Re: How to print an "int" with a c:out tag?

2005-08-03 Thread Murray Steele
As far as I can tell the for the fn taglib should probably be: /WEB-INF/fn.tld If fn.tld isn't in the WEB-INF of your webapp you should probably do a search on your filesystem for the file and copy it into your WEB-INF. It should be present *somewhere* on your system, most likely in the

RE: How to print an "int" with a c:out tag?

2005-08-03 Thread Marius Botha
Thanks guys, I tried that and got a new error (below). I will probably just go the scriptlet route for now as maybe I have an old or incorrect JAR somewhere. Can any one tell me where the TagLib for FN is? What I did: 1. Changed as per example. 2. Included FN taglib in my web.xml file as I do wi