Returns am HTML select element for each property in the object that is represented by the specified expression using the specified list items and tag attributes.
2
votes
2answers
154 views
On asp.net-mvc site, why isn't html DropdownlistFor() working properly?
I am having an issue where the item in the dropdown list is not being selected. I am building up an array of SelectListItems and setting the right one to selected = true but its not getting selected.
...
0
votes
1answer
213 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
110 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) {
...
3
votes
2answers
427 views
Html.DropDownListFor value not selected on edit mode
I am succesfullly able to save value to database (title value) on insert , but when i render the same view in edit mode then title field must hold the selected value but in my case no value is ...
8
votes
1answer
17k views
twitter bootstrap autocomplete dropdown / combobox with Knockoutjs
I have a requirement where I HAVE TO use bootstrap autocomplete dropdown, BUT user can have free form text in that dropdown if they wish. Before you think about TypeAhead, I could use Bootstrap ...
1
vote
0answers
148 views
Arithmetic opertions using Convert.toInt32 and toString problems in ASP.net
I'm trying to do this but it returns 1024 no matter what value x is.
(Convert.ToInt32(x) * 1024).ToString()
This line is embedded in some razor code:
Html.DropDownListFor(
m => ...
0
votes
1answer
173 views
How do I add more than one Dropdownlist in an ActionResult in MVC3
I want to add another dropdownlist. The below code works for one dropdown, but how would I add one for Categories?
public ActionResult Create()
{
var ddl = new Users();
...
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
2answers
539 views
Binding a Generic List to a Dropdownlistfor in MVC3
I have a generic list method that returns a CategoryID and CategoryName.
I have spent enough time researching and cant seem to put it together. I very new at MVC.
Here is my DropdownList Method in a ...
0
votes
1answer
137 views
DropDownListFor`s Selected value works with ViewModel but not integer
When I select a template in my dropdownlist and press the OK button to make a form post the DeleteTemplateListViewModel object is created and filled with the corrent templateId and the ModelState is ...
2
votes
1answer
353 views
MVC3 Html.DropDownListFor with both static and dynamic values
I'd like to populate a Html.DropDownListFor with both static and dynamic values in my controller. I can't seem to figure out how to make this work. I've tried a few different approaches, but most ...
0
votes
0answers
136 views
MVC trying to populate my dropdownlist from my repository using ADO.net only
I need help on writing this. I am very new to MVC(2 weeks). I cant use EF, just plain ADO.net.
I just need it to return a SelectList so I could populate a dropdownlist.
public ...
0
votes
0answers
152 views
ASP.NET MVC DropDownListFor empty Id
I am trying to update a table within my View whenever the user selects an option within a DropDownListFor control.
I am using Ajax.BeginForm:
@using (Ajax.BeginForm("SortListing", "Listing", new ...
0
votes
3answers
1k views
MVC, entity framework, foreign key data set to null when using HTML.DropDownFor
I am using MVC4 and EF5 codefirst. I have a problem whereby when creating a new data record with reference to a row with a foreign key, the fields of the foreign key row are set to null.
Here is a ...
4
votes
2answers
1k views
DropDownListFor with a custom attribute with - in attribute name?
Question: I need to create a dropdownlist like this:
<select id="ddCustomers" data-placeholder="Choose a customer" class="chzn-select" style="width:350px;" tabindex="1" multiple>
Now I can ...
0
votes
0answers
47 views
My DropDownListFor presents error only post back
My dropDownListFor display data correctly but when I go to the HttpPost displays the error System.NullReferenceException.
My viewModel:
public class contaModel
{
public SelectList ...
0
votes
0answers
305 views
Combining Two ViewModels, A DropDownList and WebGrid, into One View
I need a bit of advice as to how to proceed with my MVC4 Web Application.
Currently, I have two controller methods, one to display a DropDownList and one to display a WebGrid:
[HttpGet]
...
0
votes
1answer
142 views
drop down list sorting values dynamically
I have a drop list in gridview In which i am selecting a data in dropdown list from database like this
Adeel
Akram
Ali
Asif
Zeeshan
Problem Is that when gridview loads for example with 5 rows for ...
1
vote
0answers
190 views
C# MVC3 Drop Down onchange firing post twice
I have a C#.Net MVC3 web app. I have a drop down list:
@Html.DropDownList("AuthorNamesFilter", AuthorNamesFilter, new { onchange = "$('form').submit();" })
This submits to my [HttpPost] public ...
0
votes
2answers
2k views
jquery ajax to bind dropdownlist MVC
I have a 2 dropdownlist , i have to bind the 2nd one based on the Id i got from first dropdown. in the first dropdown i added OnChange event.
function onChange() {
var ...
0
votes
2answers
153 views
ViewBag null control in DropDownListFor
@Html.DropDownListFor(model => model.TransferAvailibilities.First().CancellationID,
(ViewBag.CancellationSchema == null ? null :
(IEnumerable<SelectListItem>)ViewBag.CancellationSchema), ...
0
votes
3answers
222 views
Assigning a default value to a MVC3 @HtmlDropDownListFor
I have the following code for a user profile prefix:
@Html.DropDownListFor(model => model.UserProfile.Profile.Prefix.ID, Model.PrefixList.Select(x => new SelectListItem { Text = x.Name, Value = ...
0
votes
1answer
219 views
ASP.Net MVC 3 Full Name In DropDownList
I am getting a bit confused with this and need a little help please. I am developing a ASP.Net MVC 3 Web application using Entity Framework 4.1.
I have a DropDownList on one of my Razor Views, and I ...
0
votes
2answers
202 views
First item in DropDownListFor control should not be selected initially
My OpenTestplanListViewModel has a DisplayList with 3 items bound to the DropDownList.
When the user selects explicitly no item in the DropDownList always the first is automatically selected.
Using ...
1
vote
1answer
187 views
Extend DropDownList to add ListSearchExtender
I want to extend DropDownList to add ListSearchExtender.
Using the code below, the control works well in runtime but in design time it give me this error:
SearchDropDownList - DdlTest There was ...
0
votes
2answers
173 views
html.dropdownlistfor() troubles…getting null reference exceptions
I've tried to follow a few examples from here and a couple other resources to just create a very simple member in my viewmodel and display it as a dropdown list on my view with a dropdownlistfor() ...
0
votes
1answer
262 views
ASP.NET MVC fails to bind and validate DropDownListFor if Range is set and Javascript disabled
I have the following property in my model:
[Required]
[Range(1, int.MaxValue, ErrorMessage = "Bad number")]
public virtual int Number { get; set; }
I am filling it in Controller:
...
0
votes
0answers
254 views
dynamic control visibility changes
I have an asp textbox and a dropdownlist in my markup. I have both of them set to Visible=False.
In my code-behind i have an event handler to determine which control to set to Visible = true.
The ...
0
votes
2answers
68 views
How simplify my request code?
I use this part of code to get informations from my database, using Entity Framework, and add all of it in a IEnumerable property for, at the end, a DropDownListFor display.
I need to use that kind a ...
2
votes
2answers
213 views
Deafult value loading for HTML.DropDownListFor
@Html.DropDownListFor(model => model.title, (SelectList)ViewBag.NoVList, new { id = "natureOfVisit", @class = "text white" })
How can I add a deafult value to this DropDownListFor. I mean when ...
0
votes
3answers
759 views
MVC3 DropDownListFor not select item (Mvc bug?)
I have simple test model:
public class MyModel
{
public InnerModel InnerModel { get; set; }
}
public class InnerModel
{
public int Value { get; set; }
}
In ...
1
vote
1answer
1k views
Getting Multiple Selected Values in Html.DropDownlistFor
@Html.DropDownListFor(m => m.branch, CommonMethod.getBranch("",Model.branch), "--Select--", new { @multiple = "multiple" })
@Html.DropDownListFor(m => m.division, ...
0
votes
2answers
116 views
How to create MVC3 DropDownListFor using only part of model
I'm creating a question/answer page that contains multiple object types (radio button, dropdown, check boxes).
Id QuestionText AnswerId AnswerText ObjectType
1 text one 1 ...
0
votes
1answer
225 views
Building a DropDownList in the Model?
I have a service layer that exposes a method, which returns me a List, called GetStates.
public List<StateObject> GetStates()
My State Object is just a custom object I have created:
public ...
1
vote
1answer
3k views
mvc c# html.dropdownlist and viewbag
So I have the following (pseudo code):
string selectedvalud = "C";
List<SelectListItem> list= new List<SelectListItem>();
foreach(var item in mymodelinstance.Codes){
list.Add(new ...
1
vote
1answer
54 views
wpf event handlers
I want an event which raises when the mouse leaves the control and goes to another application. I have a customized dropdownlist which when opened remains opened even when the mouse leaves the ...
0
votes
1answer
197 views
How to implement extension methods in C#?
I've found a topic in Here which is about how you could create a drop-down list from an enum in MVC.
Here's the answer in that topic:
Martin Faartoft says:
I rolled Rune's answer into an ...
0
votes
1answer
96 views
Display Text from DropDownListFor
Here's the view:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<TravelDeskWebsite.Models.TestModel>" %>
<!DOCTYPE html>
<html>
<head>
...
1
vote
2answers
459 views
implementing dropdownlist in asp.net mvc 3
I am teaching myself asp .net mvc3. I have researched a lot but the more I read the more confused I become. I want to create a page where users can register their property for sale or rent.
I have ...
1
vote
1answer
532 views
How to get the selected value of Html.DropDownListFor in aspx engine?
In Html (which I did not use) it's
<select>
<option value="B">Bubblegum</option>
</select>
In (from controller) Aspx it's
[HttpGet]
public ActionResult ViewMethod()
{
...
0
votes
1answer
285 views
Disable unobtrusive validation for dropdownlistfor postback
I have a View, and all fields data depends of my DropDownListFor selected item. But the problem is when I change the DropDownListFor Index I only need to refresh my view with the new data, but the ...
0
votes
1answer
137 views
DropDownListFor in MVC3 Aspx Engine
I am using the aspx view engine. I made it with SelectList and Html.DropDownList but populating should come from the model, not the controller and that I need to get the value of the selected item, so ...
0
votes
1answer
130 views
Preselect item in an MVC3 Html.DropDownlListFor() that is bound to an ENUM list
I am binding an MVC (3) selectList to an enum using the following helper method
public static List<SelectListItem> GetSelectList<T>()
{
Type enumType = typeof(T);
...
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
2answers
211 views
DropDownListFor doesn't display selected item
I'm trying to get the drop down list to have my item selected when there is an item, but it never does. I've Googled this and tried many different methods, but they all seem to use a ViewModel ...
0
votes
1answer
657 views
Microsoft Excel: Dependency based drop down list
I would like to create an excel sheet where data shall be entered into Row-* - Column-A.
Upon entering data into Row-N::Column-A, I would like to associate the entered data with an entry chosen from ...
0
votes
2answers
1k views
Multiple selction in Dropdownlist of asp.net MVC 3
Can we select multiple items from razor dropdownlist control. i.e for
@Html.DropDownListFor(m=>m.Country, CountryList as SelectList,"--Select--")
0
votes
1answer
401 views
classic asp - dropdown to select all dropdowns with the same value as the first dropdown
I have a primary drop down list that has three values:
1 - select
2 - Fail
3 - pass
the page is populated from the database, so here you could have anything from 1 to 50 dropdown to set the status of ...
0
votes
1answer
189 views
create an dropdownlistfor with overtype functionality mvc4
I'd like to create dropdownlistfor that lets the user to type a new value or select a predefined one from a dropdown list.
It is possible to create an editable dropdownlistfor in mvc? How can I do ...
0
votes
1answer
132 views
Change label on change DropDownListFor value
I use a DropDownListFor and a label text on my page.
<%=Html.DropDownListFor(x => x.MotiveClientType,
new SelectList(
Model.ClientMotives, ...



