@@ -58,7 +58,7 @@ <h4>{{headers.label}}</h4>
5858 < table class ="table table-striped table-editable no-margin mb-sm {{headers.tableClass}} ">
5959 < thead >
6060 < tr >
61- < th class ="{{field.name}} " ng-repeat ="field in headers.fields | filter: {viewable: true} ">
61+ < th class ="{{field.name}} {{field.customClass}} " ng-repeat ="field in headers.fields | filter: {viewable: true} ">
6262 < a ng-click ="order(field.name) " ng-if ="field.type!=='custom' ">
6363 {{field.label}}
6464 < i class ="fa fa-caret-up " style ="font-size:15px; " ng-if ="sort.sortKey==field.name && sort.order=='desc' "> </ i >
@@ -75,16 +75,16 @@ <h4>{{headers.label}}</h4>
7575 </ thead >
7676 < tbody >
7777 < tr ng-repeat ="data in tableData.data ">
78- < td ng-repeat ="field in headers.fields | filter: {viewable: true} ">
78+ < td class =" {{field.name}} {{field.customClass}} " ng-repeat ="field in headers.fields | filter: {viewable: true} ">
7979 {{parseRecord(data,field)}}
8080 < div ng-if ="field.type=='custom' " data ="data " field ="field " getscope ="getscope " fw-custom-field > </ div >
8181 </ td >
8282 < td class ="text-right btn-column " ng-if ="headers.settings.edit || headers.settings.delete ">
8383 < div class ="btn-group " role ="group ">
84- < button ng-if ="headers.settings.edit " ng-click ="edit(data) " type ="button " class ="btn btn-default btn-edit ">
84+ < button ng-if ="headers.settings.edit " ng-click ="edit(data) " type ="button " class ="btn btn-default btn-edit " title =" {{'letsfw.editar'|locale}} " >
8585 < span class ="glyphicon glyphicon-pencil "> </ span >
8686 </ button >
87- < button ng-if ="headers.settings.delete " ng-click ="delete(data) " type ="button " class ="btn btn-default btn-delete ">
87+ < button ng-if ="headers.settings.delete " ng-click ="delete(data) " type ="button " class ="btn btn-default btn-delete " title =" {{'letsfw.excluir'|locale}} " >
8888 < span class ="glyphicon glyphicon-remove "> </ span >
8989 </ button >
9090 </ div >
0 commit comments