You need to sign in to do that
Don't have an account?
Aura:if Error on setting the value
Hi All,
I need help in resolving the error. I have declared a attribute name="flag" and doing some condition check and then setting the attribute value to
something inside if.But i am getting the following error.
Failed to save undefined: The attribute "flag" was not found on the COMPONENT markup://aura:if: Source
Thanks in Advance,
Deepak.
I need help in resolving the error. I have declared a attribute name="flag" and doing some condition check and then setting the attribute value to
something inside if.But i am getting the following error.
Failed to save undefined: The attribute "flag" was not found on the COMPONENT markup://aura:if: Source
<aura:attribute name="flag" default="0"/> <div class="slds"> <div class="slds-container--center slds-container--small slds-container--medium"> <aura:iteration items="{!v.ZenObjsnew}" var="zenobjsnew" aura:id="iter"> <div class="slds-grid slds-wrap"> <aura:set attribute="flag" value="0"/> <aura:if istrue="{!lessthan(v.flag,2)}"> <div class="slds-size--12-of-12 slds-small-size--6-of-6 slds-medium-size--6-of-12 slds-large-size--6-of-12 blue-bg "> <div class="slds-size--1-of-2"> <div class="slds-grid slds-wrap content-box"> <div class="slds-size--12-of-12 slds-medium-size--3-of-12"> <img src="{!v.imagepath1}" alt="{!v.imagetext1}"/> </div> <div class="slds-size--12-of-12 slds-medium-size--9-of-12"> <h4 class="liheading"> <div> <a href="{!v.linkpath1}"> {!zenobjsnew.ZenLms_Name_del__c} </a> </div> </h4> <p class="text-limit">{!v.linktext1} </p> <p class="language spacer">Chinese <a href="javascript:void(0)">???? </a> | Korean <a href="javascript:void(0)">??? </a> | French <a href="javascript:void(0)">Français </a> | Japanese <a href="javascript:void(0)">??? </a> </p> </div> </div> </div> </div> <aura:set attribute="flag" value="{!add(v.flag,1)}"/> </aura:if> </div> </aura:iteration> </div> </div>
Thanks in Advance,
Deepak.

First thing I notice is you're missing the type on your attribute declaration. Add in the type and see if that fixes your issue.