I realize that the online configuration documentation already includes 
new "css" properties such as 'css.table' , 'css.th.sortable', 'css.th.sorted', 
etc.

I also realize that the live examples use them. I tried to use them with 
release 1.0-b2 but is does not work. Do you confirm that these "css" 
properties are part of 1.0-b3 release ?

I would like to use release 1.0-b3 in order to have access to these new config 
properties. When will be an early beta release available ?

Fred



From: Fabrizio Giustina <[EMAIL PROTECTED]> 
 RE: Odd & even   
2003-12-16 12:54  
 Actually the name of css classes added automatically can't be changed.
 It will be possible in the next beta of the library.
 
 Fabrizio
 
 PS. "_" is not a valid character in css classes
 
 
 -----Original Message-----
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 fredatwork
 Sent: Monday, December 15, 2003 5:53 PM
 To: Display Tag Mailing List
 Subject: [displaytag-user] Odd & even
 
 I'm starting using the display tag library.
 
 How can I change the name of the "odd" and "even" class names ? I wann
 choose my own class names that are standardized my own way.
 
 The following JSP code generated this html code :
 
        <display:table name="parameters">
        
                <display:column         property="orderNumber"
                                        title="#"
                                        class="TABLE_DATA"
                                        headerClass="TABLE_HEADER"/>
        
                <display:column         property="name"
                                        title="Name"
                                        class="TABLE_DATA"
                                        headerClass="TABLE_HEADER"/>
        </display:table>
 
 <table>
 <thead>
 <tr>
 <th class="TABLE_HEADER">#</th>
 <th class="TABLE_HEADER">Name</th></tr></thead>
 <tbody>
 <tr class="odd">
 <td class="TABLE_DATA">1</td>
 <td class="TABLE_DATA">first</td></tr>
 <tr class="even">
 <td class="TABLE_DATA">2</td>
 <td class="TABLE_DATA">second</td></tr></tbody></tbody></table>
        
 </html>
 
 I would like to avoid the "odd" and "even" class names, and have names
 like "TABLE_ODD_ROW" and "TABLE_EVEN_ROW" that I can use in my CSS file.
 
 Is there a way to do it ?
 
 If not, I would recommend a change to the library.
 
 Fred.
 
 
 From

 


-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
displaytag-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to