Hi All,
I our J2EE application using display-tag we are getting the following
problem.

INFO:org.displaytag.properties.TableProperties.<init>(TableProperties.ja
va:543) : Was not able to load a displaytag.properties; Can't find
bundle for base name displaytag, locale en_US

Please suggest us a way to rectify this issue.

With Regards,
Saravanan S.V.


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, September 16, 2004 8:57 AM
To: [EMAIL PROTECTED]
Subject: displaytag-user digest, Vol 1 #479 - 2 msgs

Send displaytag-user mailing list submissions to
        [EMAIL PROTECTED]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/displaytag-user
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of displaytag-user digest..."


Today's Topics:

   1. Java packaging? (Nic Werner)
   2. Re: Java packaging? (scott)

--__--__--

Message: 1
Date: Wed, 15 Sep 2004 16:48:36 -0700
From: Nic Werner <[EMAIL PROTECTED]>
Organization: Sonoma State University
To:  [EMAIL PROTECTED]
Subject: [displaytag-user] Java packaging?
Reply-To: [EMAIL PROTECTED]

Greetings,
    This is a simple question, but I just don't know enough of where to 
look:

I'm using Novell's JDBC-LDAP bridge driver, and want to display the 
results in DT. The accessors are these two, getColumnLabel and 
getColumnCount:

--------------------------------
   <%
    for(int i=1; i <= rsmd.getColumnCount() ; i++){
    %>
        <TH><%= rsmd.getColumnLabel(i) %> </TH>
<%  }
    //Step #4
    //    b) Column Rows:

       while(rs.next()) {
%>
    <TR>
        <% for(int i=1; i <=rsmd.getColumnCount() ; i++) { %>
              <TD>
                <%= rs.getString(i) %>
              </TD>
        <% } %>
    </TR>
---------------------------------

Can someone please point me in the right direction on how to repackage 
this for DT to access? Would I just make an arraylist with these values?

Thanks,

- Nic.


--__--__--

Message: 2
Date: Wed, 15 Sep 2004 20:10:39 -0400
From: scott <[EMAIL PROTECTED]>
Organization: Electronic Data Systems
To:  [EMAIL PROTECTED]
Subject: Re: [displaytag-user] Java packaging?
Reply-To: [EMAIL PROTECTED]

This is a multi-part message in MIME format.
--------------030808070602020401040402
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Yes, you can make an ArrayList and pass it to displaytag.  It would be 
better to create the list in a class file or servlet, if possible,  and 
then have it pass the list to the JSP.

Nic Werner wrote:

> Greetings
>    This is a simple question, but I just don't know enough of where to

> look:
>
> I'm using Novell's JDBC-LDAP bridge driver, and want to display the 
> results in DT. The accessors are these two, getColumnLabel and 
> getColumnCount:
>
> --------------------------------
>   <%
>    for(int i=1; i <= rsmd.getColumnCount() ; i++){
>    %>
>        <TH><%= rsmd.getColumnLabel(i) %> </TH>
> <%  }
>    //Step #4
>    //    b) Column Rows:
>
>       while(rs.next()) {
> %>
>    <TR>
>        <% for(int i=1; i <=rsmd.getColumnCount() ; i++) { %>
>              <TD>
>                <%= rs.getString(i) %>
>              </TD>
>        <% } %>
>    </TR>
> ---------------------------------
>
> Can someone please point me in the right direction on how to repackage

> this for DT to access? Would I just make an arraylist with these
values?
>
> Thanks,
>
> - Nic.
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by: thawte's Crypto Challenge Vl
> Crack the code and win a Sony DCRHC40 MiniDV Digital Handycam
> Camcorder. More prizes in the weekly Lunch Hour Challenge.
> Sign up NOW http://ad.doubleclick.net/clk;10740251;10262165;m
> _______________________________________________
> displaytag-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/displaytag-user
>

--------------030808070602020401040402
Content-Type: text/x-vcard; charset=utf-8;
 name="hacktorious.vcf"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="hacktorious.vcf"

begin:vcard
fn:Scott Macri
n:Macri;Scott
email;internet:[EMAIL PROTECTED]
tel;work:703-289-3187
tel;home:703-352-1747
version:2.1
end:vcard


--------------030808070602020401040402--



--__--__--

_______________________________________________
displaytag-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-user


End of displaytag-user Digest


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
displaytag-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to