Deliver centralized role management feature
[portal.git] / ecomp-portal-FE-common / client / app / views / role / role.html
index 2356058..9febc97 100644 (file)
   limitations under the License.
   ================================================================================
   -->
+  <style>
+  .checkbox .skin {
+    left: 112px;
+    top: -8px;
+}
+.checkbox input {
+    margin: 0px;
+    left: 105px;
+    height: 20px;
+    top: -4px;
+    }
+.checkbox span {
+    display: inline-block;
+    margin-left: 1px;
+    margin-top: 0;
+    position: relative;
+    top: -3px;
+}
+  </style>
 <div class="w-ecomp-admins-page-main">
        <div class="admins-home-container" id="page-content">
                <div id="title" class="w-ecomp-main-view-title">
                        <div>
                                <br>
                            <p class="p-info">Please edit the role details below:&nbsp;</p><br>
+                           
+                            <div class="property-label checkbox-label"> 
+                                       <label for="checkbox-app-is-restricted" class="checkbox"> 
+                               <input type="checkbox" ng-model="isGlobalRoleChecked" id="checkbox-app-is-restricted"  ng-checked="isGlobalRoleChecked" /> 
+                               <i id="checkbox-app-is-restricted" class="skin"></i> 
+                               <span>Global Roles: </span> 
+                           </label> 
+                               </div> 
                             
                                <div id="role-text" >
                                        <label id="role-text-name-label" >*Name:</label>
-                                       <input id="input-name"  class="input-field" maxlength="30"  type="text" data-ng-model="role.name">                                       
+                                       <input id="input-name"  class="input-field" maxlength="300"  type="text" data-ng-model="role.name">                                      
                                        <br>
                                        <label id="role-text-priority-label">Priority:</label>
                                        <input id="input-priority" class="input-field" maxlength="30"  type="text" data-ng-model="role.priority">                                               
                                </div>
                                
                                <br>
+                               <div ng-if="routeRoleId!=0">
                                <div id="page-title"  class="pageTitle">
                                        <label>Role Functions</label>
                                        <a id="add-new-role" ng-click="addNewRoleFunctionModalPopup();" ng-style="{'cursor':'pointer'}" class="icon-primary-accordion-plus" size="small"></a>
                                </div>
                        
                                <div b2b-table table-data="role.roleFunctions"  ng-hide="users.isLoadingTable"  search-string="users.searchString" class="b2b-table-div">
+                               <span class="ecomp-spinner" ng-show="isLoadingRoleFunctions"></span>
                                        <table>
                                                <thead b2b-table-row type="header">
                                                        <tr >
@@ -57,7 +86,7 @@
                                                        <tr >
                                                                <td id="role-function-{{roleFunction.name}}" b2b-table-body id="rowheader_t1_{{$index}}" headers="col1" ng-bind="roleFunction.name"></td>
                                                                <td b2b-table-body headers="rowheader_t1_{{$index}} col4">
-                                                               <div ng-click="removeRoleFunction(roleFunction);" ><a href="javascript:void(0)" class="icon-misc-trash"></a></div>
+                                                               <div id="{{$index}}-remove-trash-button" ng-click="removeRoleFunction(roleFunction);" ><a href="javascript:void(0)" class="icon-misc-trash"></a></div>
                                                                </td>                                                   
                                                        </tr>
                                                </tbody>
                                                <tbody b2b-table-row type="body"        row-repeat="role in role.childRoles">
                                                        <tr >
                                                                <td id="role-function-{{role.name}}" b2b-table-body id="rowheader_t1_{{$index}}" headers="col1" ng-bind="role.name"></td>
-                                                               <td b2b-table-body headers="rowheader_t1_{{$index}} col4">
+                                                               <td b2b-table-body headers="rowheader_t1_{{$index}} col4" id="{{$index}}-button-remove-role" >
                                                                <div ng-click="removeChildRole(role);" ><a href="javascript:void(0)" class="icon-misc-trash"></a></div>
                                                                </td>                                                   
                                                        </tr>
                                        </table>
                                </div>                                  
                        </div>
-       
+                       </div>
                </div>
        </div>
 </div>