Hi Brandon, 

What about something like that : 

<table>
                <thead>
                    <tr>
                        <th class="Attributes">Attribute Set</th>
                        <th class="PHY">PHY</th>
                        <th class="SPD">SPD</th>
                        <th class="STR">STR</th>
                        <th class="AGI">AGI</th>
                        <th class="PRW">PRW</th>
                        <th class="POI">POI</th>
                        <th class="INT">INT</th>
                        <th class="ARC">ARC</th>
                        <th class="PER">PER</th>
                    </tr>
                </thead>
                <tbody>
                    <tr ng-repeat="statName in refStartingAttributes" 
ng-class="{'your_class_to_appy_to_the_row' : statNameValueCondition}">
                      <td ng-repeat="prop in statName">
                           {{ prop }}  
                      </td>
                    </tr>
                </tbody>
            </table>

Here's a plunker with an example code : http://plnkr.co/edit/muar28?p=info

Regards, 

Benjamin

Le mercredi 18 décembre 2013 22:24:41 UTC+1, Brandon Casey a écrit :
>
>
> <https://lh5.googleusercontent.com/-xOFDGpaLZ88/UrIR_7LrQyI/AAAAAAAADf8/WtNCeK7J3Cg/s1600/Capture.JPG>
>
> I hope this picture helps clarify things. For each key in 
> refStartingAttributes it will make a row. Then I give each column data from 
> that key's data set. It will repeat until all keys are done. It even 
> (thanks to CSS) highlights a row when I mouse over. The thing is, I want to 
> have one of those rows (identified by its key) to have a different colored 
> background. How would I do that?
>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to