TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Abhilash J A
533
2.4k
598k
Problem to change two dropdownlist based on another jQuery
Jun 17 2016 1:25 AM
Hello Sir,<br /><br />I have two dropdownlist select2 based on another. But second drownlist do not working properly in MVC4.<br /><br /> @Html.DropDownList("company11", ViewData["companyy"] as List<SelectListItem>,"Select",new { @class = "validate[required]" })<br /> @Html.DropDownList("brand11", ViewData["brandss"] as List<SelectListItem>,"Select",new { @class = "validate[required]" })<br /><br />This jquery code:<br /><br /> $("#company11").change(function () {<br /> checkUserIdentity();<br /> var id = $(this).val();<br /> binddropdownn_branch(id);<br /> <br /> });<br /><br /> function binddropdownn_branch(id) {<br /><br /> $.ajax({<br /> type: "POST",<br /> url: '/Product/GetbarnchList?id=' + id,<br /> data: {},<br /> contentType: "application/json; charset=utf-8",<br /> dataType: "json",<br /> async: false,<br /> success: function (result) {<br /><br /> $("#brand11").find('option').remove();<br /><br /> $.each(result, function () {<br /><br /> var option = $("<option/>");<br /> option.attr("value", this.Value).text(this.Text);<br /> $('#brand11').append(option);<br /><br /> });<br /><br /><br /> }<br /> });<br /><br /> }<div></div><div> </div><div>Kindly reply me.</div>
Reply
Answers (
2
)
How to remove one image file from input file multiple
Adding DateTime in Table row Dynamically