|  |  |  | 
|---|
|  |  |  | <aura:attribute name="showSpinner" type="Boolean" default = "False"/> | 
|---|
|  |  |  | <aura:attribute name="staticResource" type="Map"/> | 
|---|
|  |  |  | <aura:attribute name="pi_fields_map" type="Map"/> | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <ltng:require scripts="{! $Resource.AWSService+'/AWSService.js' }" /> | 
|---|
|  |  |  | <ltng:require scripts="{! $Resource.jquery183minjs }" /> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <div class="{! v.container_class}"> | 
|---|
|  |  |  | <!-- header --> | 
|---|
|  |  |  | 
|---|
|  |  |  | <aura:iteration items="{! section.layoutColumns}" var="col"> | 
|---|
|  |  |  | <aura:iteration items="{! col.layoutItems}" var="field"> | 
|---|
|  |  |  | <aura:if isTrue="{! field.behavior != 'Readonly' }"> | 
|---|
|  |  |  | <lightning:inputField required="{! field.behavior == 'Required' }" fieldName="{! field.field}" value="{! field.value}" /> | 
|---|
|  |  |  | <lightning:inputField required="{! field.behavior == 'Required' }" aura:id="field" fieldName="{! field.field}" value="{! field.value}" /> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | </aura:if> | 
|---|
|  |  |  | </aura:iteration> | 
|---|