i'm completing the process of moving existing grid's to prometheus and have found that the asp.net version of grid would set the class of each cell in the grid footer row as well as setting the class for the <tr> row tag.
in prometheus, this isn't happening.
in prometheus, this isn't happening.
<tr class="GridFooter_Grid">
<td class="GridFooter_Grid"> </td>
in prometheus this comes out as:
<tr class="GridFooter_Grid">
<td> </td>
internet explorer then gets choosy about setting borders on the footer. my grid skin sets a border-top which no longer appears (this is after adding the style into the skin as "tr.GridFooter_Grid" to go with the existing "td.GridFooter_Grid" - before i added that, the footer wasnt being styled at all).
any ideas?