0

I've got 2 dropdownlist :

    <div class="control-group">
        @Html.LabelFor(x => x.ServiceId)
        @Html.DropDownListFor(x => x.ServiceId, new SelectList(Model.ServiceList, "Id", "Title"), new { @class = "open" })
    </div>

    <div class="control-group">
        @Html.LabelFor(x => x.ServiceShareId)
        @Html.DropDownListFor(x => x.ServiceShareId, new SelectList(Model.ServiceShareList, "Id", "Title"), new { @class = "open" })
    </div>

I want to filter serviceshare values by service dropdownlist selected value. how to do?

1
  • can you please setup a basic plunkr Commented Mar 1, 2014 at 8:12

1 Answer 1

1

To filter the dropdownlist using angular pls find the below link for help.

http://plnkr.co/edit/n7TebC?p=preview

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.