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
Krishna KatveKrishna Katve 

ui:inputselect error

Hi All,

I am getting
"This page has an error. You might just need to refresh it. Action failed: ui:inputSelect$controller$valueChange [Maximum call stack size exceeded] Failing descriptor: {ui:inputSelect$controller$valueChange}" error after selecting any value in ui:inputselect and there is no event written on it.

Inputselect tag from component:

<ui:inputSelect class="slds-input" labelClass="slds-form-element__label" label="Sales Org" aura:id="slsOrgPcklst" value="{!v.prepareOrderController.selectedSalesOrg}" disabled="{!v.prepareOrderController.quoteAlreadySubmited}">
                                <aura:iteration items="{!v.prepareOrderController.salesOrgs}" var="salesOrg">
                                    <aura:if isTrue="{!v.prepareOrderController.selectedSalesOrg == salesOrg.value}">
                                        <ui:inputSelectOption label="{!salesOrg.label}" text="{!salesOrg.value}" value="true"/>
                                        <aura:set attribute="else">
                                            <ui:inputSelectOption label="{!salesOrg.label}" text="{!salesOrg.value}"/>
                                        </aura:set>
                                    </aura:if>
                                </aura:iteration>
                            </ui:inputSelect>

Please advise.
Thanks in advance.