How do I get the value of my drop down list

Kobie Williams

I am trying to return the selected item and when i debug my code, the view data track list is always null.

How can I assign the value to the view data?

public ActionResult EditParcel(int id)
{
    Parcel parc = _abcSearchService.GetAbcParcel(id);
    List<SelectListItem> TrackList = new List<SelectListItem>
    {
        new SelectListItem { Text = "Processing", Value = "Processing", Selected = true},      
        new SelectListItem { Text = "Out for delivery", Value = "Out for delivery"},
        new SelectListItem { Text = "Delivered", Value = "Delivered"},
    };
    ViewData["TrackList"] = TrackList.AsEnumerable();
}
Matt Bodily

it all depends on how you are setting up the drop down. I would recommend not using viewbag/data for sending the information. Put it in your viewmodel build the list how you are building it but save it to the view model

viewModel.TrackList = TrackList;

then on your view

@Html.DropDownListFor(x => x.Track, Model.TrackList)

the for helper will override the selected property. In this case to set the selected value you would need to set viewModel.Track to the value you want selected and the for helper would then be set accordingly. Let me know if you have any questions.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do i get the value from my drop down list

From Dev

How do I get the selected item from drop down list and submit it to my Details view?

From Dev

How do I get data from database to a drop down list in Angular?

From Dev

.NET How to send value of drop down list item with GET

From Dev

How to get the selected value of a drop-down list with JavaScript/JQuery

From Dev

How to get selected value from drop down list using knockout

From Dev

How do I expand my current css responsive drop down navigation menu? Drop down is not working as expected

From Dev

How do I vertically align a drop down list?

From Dev

How do I validate a drop down list in Laravel PHP?

From Dev

How do I populate a drop down with a list using thymeleaf and spring

From Dev

I am using angular ui-select for drop down. How can I get the selected value in my controller?

From Dev

I am using angular ui-select for drop down. How can I get the selected value in my controller?

From Dev

get the ID of a selected value in the drop down list

From Dev

How to get drop down value in Controller in MVC

From Dev

How do I read data in drop down?

From Dev

How to get converted boolean value to show as selected value in the editable drop down list in asp.net gridview?

From Dev

How do I get rid of the drop shadow on my bindingnavigator?

From Dev

How can I load my 2nd dynamic drop down list on pageload?

From Dev

How do I fetch the value of selected value from drop down in PHP?

From Dev

How do I detect in jQuery (AJAX) when a drop down item is selected on my HTML/PHP page?

From Dev

How do I populate tkinter drop-down box with data retrieved from my SQLite database?

From Dev

How do I add a drop down menu using my current CSS?

From Dev

I want to implement following drop down feature in my iOS Application. How Can do it?

From Dev

How can I create a JTextField that shows drop down menu, that drop menu would show the list of items from my Database?

From Dev

How to get selected value from drop down list in one jsp to java controller class in liferay portlet references

From Dev

How to get the selected drop down list value on button click without passing the parameters in angularjs

From Dev

How to get a value, using python, from a selected option in a drop down list in HTML? (FLASK)

From Dev

How to Get the Value Like First Drop Down Value Related to Another Drop Down Value using of Angular JS?

From Dev

How do I set the maximum length for a spinner's drop-down list?

Related Related

  1. 1

    How do i get the value from my drop down list

  2. 2

    How do I get the selected item from drop down list and submit it to my Details view?

  3. 3

    How do I get data from database to a drop down list in Angular?

  4. 4

    .NET How to send value of drop down list item with GET

  5. 5

    How to get the selected value of a drop-down list with JavaScript/JQuery

  6. 6

    How to get selected value from drop down list using knockout

  7. 7

    How do I expand my current css responsive drop down navigation menu? Drop down is not working as expected

  8. 8

    How do I vertically align a drop down list?

  9. 9

    How do I validate a drop down list in Laravel PHP?

  10. 10

    How do I populate a drop down with a list using thymeleaf and spring

  11. 11

    I am using angular ui-select for drop down. How can I get the selected value in my controller?

  12. 12

    I am using angular ui-select for drop down. How can I get the selected value in my controller?

  13. 13

    get the ID of a selected value in the drop down list

  14. 14

    How to get drop down value in Controller in MVC

  15. 15

    How do I read data in drop down?

  16. 16

    How to get converted boolean value to show as selected value in the editable drop down list in asp.net gridview?

  17. 17

    How do I get rid of the drop shadow on my bindingnavigator?

  18. 18

    How can I load my 2nd dynamic drop down list on pageload?

  19. 19

    How do I fetch the value of selected value from drop down in PHP?

  20. 20

    How do I detect in jQuery (AJAX) when a drop down item is selected on my HTML/PHP page?

  21. 21

    How do I populate tkinter drop-down box with data retrieved from my SQLite database?

  22. 22

    How do I add a drop down menu using my current CSS?

  23. 23

    I want to implement following drop down feature in my iOS Application. How Can do it?

  24. 24

    How can I create a JTextField that shows drop down menu, that drop menu would show the list of items from my Database?

  25. 25

    How to get selected value from drop down list in one jsp to java controller class in liferay portlet references

  26. 26

    How to get the selected drop down list value on button click without passing the parameters in angularjs

  27. 27

    How to get a value, using python, from a selected option in a drop down list in HTML? (FLASK)

  28. 28

    How to Get the Value Like First Drop Down Value Related to Another Drop Down Value using of Angular JS?

  29. 29

    How do I set the maximum length for a spinner's drop-down list?

HotTag

Archive