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
GAURAV GUNJAN 1GAURAV GUNJAN 1 

Lightning input Lookup Field is not working in Saleforce 1 mobile App.What is the alternate solution to this ??

ASIF ALIASIF ALI
You can use UI:Input as following,
<aura:component>
    <aura:attribute name="myText" type="string" default="Hello there!"/>
	<ui:inputText label="Enter some text" class="field" value="{!v.myText}" updateOn="click"/>
	You entered: <ui:outputText value="{!v.myText}"/>	
</aura:component>