0
votes
1answer
36 views

Filter my @html.dropdownlistfor

Im working with a project and i need to filter my second dropdownlistfor based on my first dropdownlistfor value. Its simple to understand but hard to code it since i dont know jquery or javascript ...
0
votes
3answers
73 views

Jquery changing Selected value in MVC dropdown

I have been searching the internet and reading a lot of different ways to do this, but for some reason, none of them are working for me. There must be something I am missing here. What I am trying to ...
0
votes
0answers
115 views

Android Stock browser doesn't fire .change() for the first time

New version of Android stock browser (>= 4.1) doesn't fire .change() event for dropdown. I am rendering dropdown from asp.net mvc3 and, the dropdown has two onchange function associated to it. They ...
0
votes
2answers
165 views

dropdownlistfor + jquery validation

I am creating an application in asp .net mvc3 c#. I create a dropdown list but I am unable to do a client side validation using Jquery. I have looked at numerous articles related to it and know that ...
0
votes
1answer
209 views

MVC DropdownListFor html helper interferes with JQuery submit when @size specified

I have this bizarre issue with MVC's html helper in that when I specify the @size for @Html.DropdownListFor, it prevents the jquery .submit from communicating with the server. Any ideas as to what ...
0
votes
1answer
215 views

Trying to use easypagination.js with a variable step

I'm borrowing easyPaginate's code and simply trying to add on a dropdown feature to adjust the number of items displaying on each page. My dropdown works on page 1. The moment I click on page 2(or ...
0
votes
1answer
111 views

Jquery populate dropdownbox

Im trying to populate a dropdown list using jquery. The population has but the default text "Select Model" is replaced by the new data.. Javascript: data = $.map(data, function (item, a) { ...
0
votes
2answers
122 views

How to write @Html.DropDownListFor (and so) inside jQuiery $('#id').http('')?

I need to inject some UI element inside table getting by AJAX, I has an ID of element and I can write the value like this $('#s-@ViewData.Model.SomeID').html('<input type="submit" ...
0
votes
1answer
2k views

Load PartialView with using jquery Ajax?

PartialView @model OsosYeni23072012.Models.TblMeters <h3> Model.customer_name </h3> <h3> Model.meter_name </h3> Controller [HttpGet] public ActionResult ...
0
votes
1answer
512 views

Ajax.beginform postback form using dropdown

In an MVC appllication, we have a dropdownlist on a form. I am using Ajax.Beginform() to post back data. Is there a way to use dropdown selected index changed event to postback form data using ...
0
votes
2answers
779 views

Appending list items to MVC DropDownList with jQuery

I am trying to dynamically append list items to the MVC DropDownListFor with jQuery. Unfortunately nothing happens when I run my code. I have used console.log to double check the html that's being ...
0
votes
1answer
51 views

Html.DropownlistFor with editablefield

I'm using a dropdownlistfor that populates some data from the database, the idea is that i want that the default value of the dropdown, has to be editable. So the user can submit one of the options ...
1
vote
2answers
359 views

Change data in dropdownlist with ajax,jquery mvc

I have a dropdownlisftFor that populate some data from the database that is filtered, and a checkbox. The idea is that, when i uncheck the checkbox, I want to change the data, that is populated in the ...
0
votes
0answers
153 views

Html.DropDownFor Binding Issue in IE8 Related to CSS

All, I'm having this strange issue in IE8 regarding binding model data to an Html.DropDownListFor element with a CSS width attribute applied. I have a parent dropdown list that when changed causes a ...
0
votes
3answers
2k views

How to dynamic bind html.DropDownList() in MVC

I have a dropdownlist and a textbox in my page,I want to change the dropdownlist with the textbox change. I use JQuery post like this: $("#txtBuildId").change(function() { var builddate = ...
0
votes
1answer
437 views

jquery chenge function not working on dropdown

jquery change function on dropdown is not working at my application and working at jfFiddle Application code <select id="title" name="title"><option value="">-select-</option> ...
0
votes
2answers
300 views

Refreshing MVC DropDownListFor with jQuery

I'm using jQuery to re-populate a DropDownListFor using the following code: $('#Teste).change(function () { $.ajax({ type: 'GET', url: ...
0
votes
2answers
336 views

MVC3 Model property bound to Html.DropdownListfor not updated on selecting dropdown by Jquery

I have a MVC3 application with ASPX view engine. My page is having a dropdownlist created by Html.DropdownListFor(m=>m.EmpId,(selectlist)Model.EmpDetails). I update this dropdown on a situation ...
1
vote
1answer
573 views

DropDownList not autosized properly within Jquery UI Accordion

My dropdownlist width is smaller than the longest text in the SelectList. When I click the dropdown, it resizes to fit properly. If I remove the .accordion from the div, the dropdowns all size ...