function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AffinaquestAffinaquest 

force:inputfield

The inputfield in the following code was working for us in Summer '17.  However, it no longer works in Winter '18.

<aura:component implements="flexipage:availableForAllPageTypes,force:appHostable,force:hasRecordId" access="GLOBAL">
<aura:attribute name="newItem" type="AQB__Batch_Item__c" access="GLOBAL" default="{ sobjectType: 'AQB__Batch_Item__c', 'AQB__Account__c': '', 'AQB__Method__c': '' }" />

<table>
<tr>
<td >Account:</td>
<td >
<force:inputField aura:id="inputAccountLookup" value="{!v.newItem.AQB__Account__c}" />
</td>
<td >Entry Type:</td>
<td >
<force:inputField aura:id="inputMethod" value="{!v.newItem.AQB__Method__c}" />
</td>
</tr>
</table>

</aura:component>

The inputfield is not working preceeded by a span or div either.