0

我有幾個UI選擇,根據我想要加載到第二個選項的第一個選擇。我如何去做動態的第二個。我做了一些廣泛的搜索,但找不到任何東西。如何動態更改UI的選擇在angularjs中選擇

<ui-select append-to-body="true" 
      ng-model="requirementChoice" theme="bootstrap" 
      ng-disabled="disabled" close-on-select="true" 
      title="choose a requirement" 
      theme="selectize" 
      name="requirements" id="requirements"> 

    <ui-select-match placeholder=" 
      {{translations.SLA_CHOOSE_REQUIREMENTS}}"> 
     {{requirementChoice}} 
    </ui-select-match> 

    <ui-select-choices repeat="choice in requirementTypes | 
        filter:$select.search"> 
     {{choice}} 
    </ui-select-choices> 
</ui-select> 

這是第一個我的UI的選擇具有選擇和基於兩種選擇,我希望將數據加載到第二UI選擇是有辦法做到這一點?

+0

您可以創建一個虛擬jsfiddle或plunkr。在選擇第一個UI選擇時,您可以在第二個選項中重置選項......完全取決於您如何設置選項。 –

+0

謝謝我得到它我根據第一個ui選擇中選擇的選項更改了第二個ui-select的數組。 –

回答

相關問題