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
Vanitha ManiVanitha Mani 

Regarding Progressive indicator conditions

Hi..

I have conditions for progreesive steps in aura.
I have 3 fields 
 <lightning:recordEditForm recordId ="{!v.recordId}" objectApiName = "Case" aura:id="leadCreateForm" onsubmit="{!c.handleSubmit5}" >
        <lightning:messages />
                                
                                <lightning:inputField aura:id="bill" fieldName="Billing_Disposition__c" required ="true"/>
                               
                     
                                     
        <lightning:inputField aura:id="bill" fieldName="Billing_Hours__c" required ="true"/>
                               
                               
        <lightning:inputField aura:id="bill" fieldName="Billing_Comments__c" required ="true" />
                               
                                <br/>
                                <br/>
                                <br/>
                                
        
        
    </lightning:recordEditForm>

my requirement is if any one of these field is null then this page should display else it should be skipped..

and also if any field has value in record page that field should be skipped in record edit form and only fields with no values should be displayd in page for getting values from user..

how to achieve these two conditions..
Can anyone help me with this..
AnudeepAnudeep (Salesforce Developers) 
There isn't any attribute that is similar to render on VF in lightning:recordEditForm. We have the option of only using </aura:if> to conditionally display either the field or the record edit form

See this example for sample code

Let me know if this helps