ng-tasty icon indicating copy to clipboard operation
ng-tasty copied to clipboard

Custom attributes to th tags

Open sharok opened this issue 9 years ago • 2 comments

Related to #204

I have tried the following template for adding custom attributes:

<script type="text/ng-template" id="localTemplateThead.html">
                        <tr>
                            <th test="test" ng-repeat="column in columns track by $index"
                                ng-class="classToShow(column)"
                                ng-style="::column.style" ng-click="sortBy(column)">
                                Custom <span ng-bind="::column.name"></span>
                                v/th>
                        </tr>
                    </script>

But I don't see my test attribute.

sharok avatar Jan 18 '16 04:01 sharok

I have found error. There are error in docs. <thead tasty-thead template-url='"localTemplateThead.html"'></thead>

We need to use double quotes.

sharok avatar Jan 25 '16 15:01 sharok

@sharok do you wanna ask a PR for fix that?

Zizzamia avatar May 10 '16 17:05 Zizzamia