Hello, I have created a view of a pretty basic content type that just displays the fields in a table.
Works great in firefox! But in IE :( and Safari only one column is being outputted.
Am I doing something wrong?
Here's the tables output from FireFox:
<table class="results views-table">
<thead>
<tr>
<th class="views-field views-field-field-rodeo-date-value"> Rodeo Date </th>
<th class="views-field views-field-title"> Rodeo </th>
<th class="views-field views-field-field-place-value"> Place </th>
<th class="views-field views-field-field-time-value"> Time </th>
<th class="views-field views-field-field-earnings-amount"> Earnings </th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="views-field views-field-field-rodeo-date-value">
</td>
<td class="views-field views-field-title"> Redding </td>
<td class="views-field views-field-field-place-value"> 1 </td>
<td class="views-field views-field-field-time-value"> 34.98 (Avg) </td>
<td class="views-field views-field-field-earnings-amount"> $ 1,717.69 </td>
</tr>
<tr class="even">
<td class="views-field views-field-field-rodeo-date-value">
</td>
<td class="views-field views-field-title"> Bonnyville </td>
<td class="views-field views-field-field-place-value"> 6 </td>
<td class="views-field views-field-field-time-value"> 16.77 </td>
<td class="views-field views-field-field-earnings-amount"> $ 555.00 </td>
</tr>
</tbody>
</table>
And in Safari and IE :
<table class="results views-table">
<thead>
<tr>
<th class="views-field views-field-title"> Rodeo </th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td class="views-field views-field-title"> Redding </td>
</tr>
<tr class="even">
<td class="views-field views-field-title"> Bonnyville </td>
</tr>
</tbody>
</table>
I'm not sure but it looks like the date field is messing everything up????
Thanks for the help!
Comments
Comment #1
sskully commentedSORRY! I figured it out!!!! Damn permissions!
Comment #2
dawehnerPlease mark things as fixed/closed if they are ready.
Thanks for saying that you fixed it.
Comment #3
ridoj commentedHey sskully, i have the same problem: How you fixed it? Thanks
Ok my problem also are permissions :)