1 <div id="page-content">
2 <h1 class="heading-page" id="profileSearch">Role Function</h1>
4 <div class="row-nowrap">
7 <div class="field-group">
8 <button class="btn btn-alt btn-medium" type="button"
9 ng-click="addRoleFuncPopUp(rowData);">Create</button>
14 <div class="form-row">
15 <div style="float: right;">
16 <div class="form-field form-field__small">
17 <input type="text" placeholder="Search role functions" ng-model="searchString" />
24 <div ng-show="showLoader" class="span loader-container">
25 <i class="icon-primary-spinner" role="img"
26 aria-label="Please wait while we load your content"></i>
29 <div b2b-table class="b2b-table-div" table-data="tableData"
30 search-string="searchString" current-page="currentPage"
34 <thead b2b-table-row type="header">
36 <th b2b-table-header key="name">Name</th>
37 <th b2b-table-header key="code">Code</th>
38 <th b2b-table-header sortable="false">Edit</th>
39 <th b2b-table-header sortable="false">Delete</th>
42 <tbody b2b-table-row type="body" row-repeat="rowData in tableData">
44 <td b2b-table-body ng-bind="rowData['name']"></td>
45 <td b2b-table-body ng-bind="rowData['code']"></td>
47 <div style="font-size: 20px;">
48 <a ng-click="saveRoleFuncPopUp(rowData);" class="icon-misc-pen"></a>
52 <div style="font-size: 20px;">
53 <a href="javascript:void(0)"
54 ng-click="delRoleFuncConfirmPopUp(rowData);"
55 class="icon-misc-trash"></a>