Great!!!!

You also not need the line

<c:set var="table" value="${table}" scope="request"/>
since

<c:forEach>

  do it for you if you specify in:

<c:forEach items="${tablesList}" var="table">

BTW:
<c:set var="table" value="${table}" scope="request"/> is something like
Collection table;
//put some data in table
 table=table;

It is not an error but it should be interpreted as a warning in your
java compiler

Cheers,

Daniel Cricco

On 8/3/06, Laura Vigna <[EMAIL PROTECTED]> wrote:
> Ops...forget the last message!
> All the code I mentioned in the last email was working JUST because it
> was written below my old code where I was retrieving values from the
> request!!!
> I'm SUCH an idiot! Sorry...
> But thanks to your suggestions now it works! Just like this:
> <c:forEach items="${tablesList}" var="table">
>         <c:set var="table" value="${table}" scope="request"/>
>          <display:table name="table">
>           </display:table>
>       <br>
> </c:forEach>
>
> TY!
>
>
> --
> Laura Vigna
> Java Developer
> Sobaco Software SA
> 6814 Cadempino, Switzerland
> Tel. +41 (0)91 960 75 30
> Email: [EMAIL PROTECTED]
>
> Happy Coding!
>
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys -- and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> displaytag-user mailing list
> displaytag-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/displaytag-user
>

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to