Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4603172
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:06:18+00:00 2026-05-22T00:06:18+00:00

In my view, there are 5 dropdownlists. The first one is populated when the

  • 0

In my view, there are 5 dropdownlists. The first one is populated when the user first gets to the page. Then the rest of the dropdowns are populated based on what they select from the dropdowns. The binding of the dropdowns work fine..no problem. Basically, there is a submit button on the page which displays the results from the values selected from the dropdowns. The problem is on HttpPost, whatever was selected from the dropdown, they disappear. The other thing is while i keep changing the selectedvalue and do submit, they show up.

For example, i select values from each of the dropdowns. Do a submit, the results display and only the first one shows the selected value. The rest are gone. Then on the same time, I select the remaining values, do a submit, now the first and second show up and the rest are gone. I repeat the same thing, do a postback and the 1st, second and thrid show up and the remaining are gone. Not sure whats happening here. Let me know if I would need to update this post with my code. Just wanted to check if there is quick fix before i post what i did.

    <script type="text/javascript">
    $(document).ready(function () {
        $('select#NationId').change(function () {
            var nationId = $(this).val();
            $.ajax({
                url: 'LoadAreas',
                type: 'POST',
                data: JSON.stringify({ nationId: nationId }),
                dataType: 'json',
                contentType: 'application/json',
                success: function (data) {
                    $('select#AreaId').get(0).options.length = 0;
                    $('select#AreaId').append('<option value="0">Select All</option>');
                    $.each(data, function (val, Areas) {
                        $('select#AreaId').append('<option value="' + Areas.Id + '">' + Areas.Name + '</option>');
                    });
                }
            });
        });
        $('select#AreaId').change(function () {
            var areaId = $(this).val();
            $.ajax({
                url: 'LoadDistricts',
                type: 'POST',
                data: JSON.stringify({ areaId: areaId }),
                dataType: 'json',
                contentType: 'application/json',
                success: function (data) {
                    $('select#DistrictId').get(0).options.length = 0;
                    $('select#DistrictId').append('<option value="0">Select All</option>');
                    $.each(data, function (val, Districts) {
                        $('select#DistrictId').append('<option value="' + Districts.Id + '">' + Districts.Name + '</option>');
                    });
                }
            });
        });
        $('select#DistrictId').change(function () {
            var districtId = $(this).val();
            $.ajax({
                url: 'LoadTerritoryManagers',
                type: 'POST',
                data: JSON.stringify({ districtId: districtId }),
                dataType: 'json',
                contentType: 'application/json',
                success: function (data) {
                    $('select#TMId').get(0).options.length = 0;
                    $('select#TMId').append('<option value="0">Select All</option>');
                    $.each(data, function (val, TMManagers) {
                        $('select#TMId').append('<option value="' + TMManagers.Id + '">' + TMManagers.Name + '</option>');
                    });
                }
            });
        });
        $("#TMId").change(function () {
            var tmId = $(this).val();
            $.ajax({
                url: 'LoadDealers',
                type: 'POST',
                data: JSON.stringify({ tmId: tmId }),
                dataType: 'json',
                contentType: 'application/json',
                success: function (data) {
                    $("#ChannelId").get(0).options.length = 0;
                    $("#ChannelId").append('<option value="0">Select All</option>');
                    $.each(data, function (val, SurveyDealers) {
                        $("#ChannelId").append('<option value="' + SurveyDealers.Id + '">' + SurveyDealers.DealerId + '</option>');
                    });
                }
            });
        });
    });
</script>
@using (Html.BeginForm())
{
    <div style="width: 100%; font-size: 14px; font-family: Arial, Helvetica, sans-serif;">
        <div align="right" style="padding-top: 10px;">
            @Html.ActionLink("Back to Reports page", "Index", "Reports/Customers", new { area = "" }, new { @class = "PremireButton" })
        </div>
        <h3  style="background-color: #CC0000; color: #fff; font-size: 1.5em;">
            Customer Survey Report</h3>
        <table width="50%" cellpadding="0" cellspacing="0" style="padding: 10px 0 5px 5px;">
            @if (Model.ShowNational)
            {
                <tr>
                    <td style="padding: 5px 0 5px 5px;">
                        <b>Select a Country:</b>
                    </td>
                    <td style="padding: 5px 0 5px 5px;">@Html.DropDownListFor(m => m.NationId, Model.NationalChannelGroups, "Select All")
                    </td>
                </tr>
            }
            @if (Model.ShowArea)
            {
                <tr>
                    <td style="padding: 5px 0 5px 5px;">
                        <b>Select an Area:</b>
                    </td>
                    <td style="padding: 5px 0 5px 5px;">@Html.DropDownListFor(m => m.AreaId, Model.AreaChannelGroups, "Select All")
                    </td>
                </tr>
            }
            @if (Model.ShowDistrict)
            {
                <tr>
                    <td style="padding: 5px 0 5px 5px;">
                        <b>Select a District:</b>
                    </td>
                    <td style="padding: 5px 0 5px 5px;">@Html.DropDownListFor(m => m.DistrictId, Model.DistrictChannelGroups, "Select All")
                    </td>
                </tr>
            }
            @if (Model.ShowTM)
            {
                <tr>
                    <td style="padding: 5px 0 5px 5px;">
                        <b>Select a TM:</b>
                    </td>
                    <td style="padding: 5px 0 5px 5px;">@Html.DropDownListFor(m => m.TMId, Model.TMChannelGroups, "Select All")
                    </td>
                </tr>
            }
            <tr>
                <td style="padding: 5px 0 5px 5px;">
                    <b>Select a Dealer:</b>
                </td>
                <td style="padding: 5px 0 5px 5px;">@Html.DropDownListFor(m => m.ChannelId, Model.Channels, "Select All")
                </td>
            </tr>
            <tr>
                <td colspan="2">
                    <input type="submit" value="Submit" id="Submit" class="PremierSubmitButton" />
                </td>
            </tr>
        </table>
        @if (Model.ShowCustomerReport)
        {
        if (Model.Report.Count() > 0)
        {
            <table id="SurveyResponse" width="100%" cellpadding="0" cellspacing="0" style="font-size: 11px;">
                <thead>
                    <tr class="header">
                        <td style="padding: 2px 2px 2px 2px;">
                            Dealer #
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            District
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            TM
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            Survey Code
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            First Name
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            Last Name
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            Address
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            City
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            State
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            Postal Code
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            Phone
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            Mail Sent
                        </td>
                        <td style="padding: 2px 2px 2px 2px;">
                            Email Sent
                        </td>
                    </tr>
                </thead>
                <tbody>
                    @{bool alternate = false;}
                    @foreach (var tr in Model.Report)
                    {
                        <tr @(alternate ? "class=alternate" : "")>
                            <td style="padding: 2px 2px 2px 2px;">
                                @tr.DealerId
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">
                                @tr.District
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.TM
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.SurveyCode
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.FirstName
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.LastName
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.Address
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.City
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.State
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.PostalCode
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@tr.Phone
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@(tr.MailSent.HasValue ? @tr.MailSent.Value.ToShortDateString() : String.Empty)
                            </td>
                            <td style="padding: 2px 2px 2px 2px;">@(tr.DateCompleted.HasValue ? @tr.DateCompleted.Value.ToShortDateString() : String.Empty)
                            </td>
                        </tr>
                           alternate = !alternate;
                    }
                </tbody>
            </table>
        }
        else
        {
            <text>There are no records to display</text>
        }
       }
    </div>
}

Here is my HttpPost

[HttpPost]
    public ActionResult CustomerReport(AreaManagerModel model)
    { 
         //Display Result here
         LoadDropDowns(model);
         return View("CustomerReport", model);
    }

private void LoadDropDowns(AreaManagerModel model)
    {
        var user = db.Users.Find(SessionHandler.CurrentUser.UserId);
        model.TMChannelGroups = new List<SelectListItem>();
        model.Channels = new List<SelectListItem>();
        model.AreaChannelGroups = new List<SelectListItem>();
        model.NationalChannelGroups = new List<SelectListItem>();
        model.DistrictChannelGroups = new List<SelectListItem>();

        var _signedInChannelGroupId = from s in user.ChannelGroups
                                      select s;
        if (_signedInChannelGroupId.Count() > 0)
            model.LoggedChannelGroupId = _signedInChannelGroupId.Select(m => m.ChannelGroupId).First();

        var org = (from o in user.ManagedOrganizations
                   //where o.OrganizationId == 4
                   where o.OrganizationId == 8
                   select o).FirstOrDefault();
        if (org != null || user.IsSuperUser)
        {
            model.ShowNational = true;
            model.ShowArea = true;
            model.ShowDistrict = true;
            model.ShowTM = true;

            model.NationalChannelGroups = from i in db.ChannelGroups
                                          //where i.ChannelGroupTypeId == 4
                                          where i.ChannelGroupTypeId == 6
                                          select new SelectListItem()
                                          {
                                              Text = i.Name,
                                              Value = SqlFunctions.StringConvert((double)i.ChannelGroupId)
                                          };
            if (model.NationId != 0)
            {
                var ngroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                              //where g.ChannelGroupTypeId == 4
                              where g.ChannelGroupTypeId == 6
                              select g).FirstOrDefault();
                if (ngroup != null)
                {
                    model.AreaChannelGroups = from i in ngroup.Children
                                              select new SelectListItem()
                                              {
                                                  Text = i.Name,
                                                  Value = i.ChannelGroupId.ToString()
                                              };
                }
                var agroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                              where g.ChannelGroupTypeId == 1
                              select g).FirstOrDefault();
                if (agroup != null)
                {
                    model.DistrictChannelGroups = from i in agroup.Children
                                                  select new SelectListItem()
                                                  {
                                                      Text = i.Name,
                                                      Value = i.ChannelGroupId.ToString()
                                                  };
                }
                var dgroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                              where g.ChannelGroupTypeId == 2
                              select g).FirstOrDefault();
                if (dgroup != null)
                {
                    model.TMChannelGroups = from i in dgroup.Children
                                            select new SelectListItem()
                                            {
                                                Text = i.Name,
                                                Value = i.ChannelGroupId.ToString()
                                            };
                }
                var tgroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                              where g.ChannelGroupTypeId == 3
                              select g).FirstOrDefault();
                if (tgroup != null)
                {
                    model.Channels = from i in tgroup.GetAllChannels()
                                     select new SelectListItem()
                                     {
                                         Text = i.ExternalChannelId,
                                         Value = i.ChannelId.ToString()
                                     };
                }
            }
        }
        else
        {
            var ngroup = (from g in user.ChannelGroups
                          //where g.ChannelGroupTypeId == 4
                          where g.ChannelGroupTypeId == 6
                          select g).FirstOrDefault();
            if (ngroup != null)
            {
                model.ShowNational = false;
                model.ShowArea = true;
                model.ShowDistrict = true;
                model.ShowTM = true;

                model.AreaChannelGroups = from i in ngroup.Children
                                          select new SelectListItem()
                                          {
                                              Text = i.Name,
                                              Value = SqlFunctions.StringConvert((double)i.ChannelGroupId)
                                          };
                if (model.AreaId != 0)
                {
                    var agroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                                  where g.ChannelGroupTypeId == 1
                                  select g).FirstOrDefault();
                    if (agroup != null)
                    {
                        model.DistrictChannelGroups = from i in agroup.Children
                                                      select new SelectListItem()
                                                      {
                                                          Text = i.Name,
                                                          Value = i.ChannelGroupId.ToString()
                                                      };
                    }
                    var dgroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                                  where g.ChannelGroupTypeId == 2
                                  select g).FirstOrDefault();
                    if (dgroup != null)
                    {
                        model.TMChannelGroups = from i in dgroup.Children
                                                select new SelectListItem()
                                                {
                                                    Text = i.Name,
                                                    Value = i.ChannelGroupId.ToString()
                                                };
                    }
                    var tgroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                                  where g.ChannelGroupTypeId == 3
                                  select g).FirstOrDefault();
                    if (tgroup != null)
                    {
                        model.Channels = from i in tgroup.GetAllChannels()
                                         select new SelectListItem()
                                         {
                                             Text = i.ExternalChannelId,
                                             Value = i.ChannelId.ToString()
                                         };
                    }
                }
            }
            else
            {
                var agroup = (from g in user.ChannelGroups
                              where g.ChannelGroupTypeId == 1
                              select g).FirstOrDefault();
                if (agroup != null)
                {
                    model.ShowNational = false;
                    model.ShowArea = false;
                    model.ShowDistrict = true;
                    model.ShowTM = true;
                    model.DistrictChannelGroups = from i in agroup.Children
                                                  select new SelectListItem()
                                                  {
                                                      Text = i.Name,
                                                      Value = i.ChannelGroupId.ToString()
                                                  };
                    if (model.DistrictId != 0)
                    {
                        var dgroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                                      where g.ChannelGroupTypeId == 2
                                      select g).FirstOrDefault();
                        if (dgroup != null)
                        {
                            model.TMChannelGroups = from i in dgroup.Children
                                                    select new SelectListItem()
                                                    {
                                                        Text = i.Name,
                                                        Value = i.ChannelGroupId.ToString()
                                                    };
                        }
                        var tgroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                                      where g.ChannelGroupTypeId == 3
                                      select g).FirstOrDefault();
                        if (tgroup != null)
                        {
                            model.Channels = from i in tgroup.GetAllChannels()
                                             select new SelectListItem()
                                             {
                                                 Text = i.ExternalChannelId,
                                                 Value = i.ChannelId.ToString()
                                             };
                        }
                    }
                }
                else
                {
                    var dgroup = (from g in user.ChannelGroups
                                  where g.ChannelGroupTypeId == 2
                                  select g).FirstOrDefault();
                    if (dgroup != null)
                    {
                        model.ShowNational = false;
                        model.ShowArea = false;
                        model.ShowDistrict = false;
                        model.ShowTM = true;
                        model.TMChannelGroups = from i in dgroup.Children
                                                select new SelectListItem()
                                                {
                                                    Text = i.Name,
                                                    Value = i.ChannelGroupId.ToString()
                                                };
                        if (model.TMId != 0)
                        {
                            var tgroup = (from g in SessionHandler.CurrentContext.ChannelGroups
                                            where g.ChannelGroupTypeId == 3
                                            select g).FirstOrDefault();
                        if (tgroup != null)
                        {
                            model.Channels = from i in tgroup.GetAllChannels()
                                             select new SelectListItem()
                                             {
                                                 Text = i.ExternalChannelId,
                                                 Value = i.ChannelId.ToString()
                                             };
                        }
                        }
                    }
                    else
                    {
                        var tgroup = (from g in user.ChannelGroups
                                      where g.ChannelGroupTypeId == 3
                                      select g).FirstOrDefault();
                        if (tgroup != null)
                        {
                            model.ShowNational = false;
                            model.ShowArea = false;
                            model.ShowDistrict = false;
                            model.ShowTM = false;
                            model.Channels = from i in tgroup.GetAllChannels()
                                             select new SelectListItem()
                                             {
                                                 Text = i.ExternalChannelId,
                                                 Value = i.ChannelId.ToString()
                                             };
                        }
                    }
                }
            }
        }
    }

UPDATE:

[HttpPost]
    public ActionResult LoadAreas(int nationId)
    {
        var _Areas = (from c in SessionHandler.CurrentContext.ChannelGroups
                      join cgt in SessionHandler.CurrentContext.ChannelGroupTypes on c.ChannelGroupTypeId equals cgt.ChannelGroupTypeId
                      where cgt.Name == "Area" && c.ParentChannelGroupId == nationId
                      select new AreaName() { Id = c.ChannelGroupId, Name = c.Name }).OrderBy(m => m.Name);

        if (_Areas == null)
            return Json(null);
        List<AreaName> managers = (List<AreaName>)_Areas.ToList();

        return Json(managers);
    }
    [HttpPost]
    public ActionResult LoadDistricts(int areaId)
    {
        var _Districts = (from c in SessionHandler.CurrentContext.ChannelGroups
                    join cgt in SessionHandler.CurrentContext.ChannelGroupTypes on c.ChannelGroupTypeId equals cgt.ChannelGroupTypeId
                    where cgt.Name == "District" && c.ParentChannelGroupId == areaId
                    select new DistrictName() { Id = c.ChannelGroupId, Name = c.Name }).OrderBy(m => m.Name);

        if (_Districts == null)
            return Json(null);

        List<DistrictName> managers = (List<DistrictName>)_Districts.ToList();
        return Json(managers);
    }
    [HttpPost]
    public ActionResult LoadTerritoryManagers(int districtId)
    {
        var _TMS = (from c in SessionHandler.CurrentContext.ChannelGroups
                    join cgt in SessionHandler.CurrentContext.ChannelGroupTypes on c.ChannelGroupTypeId equals cgt.ChannelGroupTypeId
                    where cgt.Name == "Territory" && c.ParentChannelGroupId == districtId
                    select new TMManager() { Id = c.ChannelGroupId, Name = c.Name }).OrderBy(m => m.Name);

        if (_TMS == null)
            return Json(null);

        List<TMManager> managers = (List<TMManager>)_TMS.ToList();
        return Json(managers);
    }
    [HttpPost]
    public ActionResult LoadDealers(int tmId)
    {
        var _dealers = (from c in SessionHandler.CurrentContext.Channels
                    where c.ChannelGroupId == tmId
                    select new SurveyDealer() { Id = c.ChannelId, DealerId = c.ExternalChannelId }).OrderBy(m => m.DealerId);

        if (_dealers == null)
            return Json(null);

        List<SurveyDealer> dealers = (List<SurveyDealer>)_dealers.ToList();
        return Json(dealers);
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T00:06:18+00:00Added an answer on May 22, 2026 at 12:06 am

    Let’s see your View code to start with, that should help.

    UPDATE:

    Your render code:

    DropDownListFor(m => m.TMId, Model.TMChannelGroups, "Select All")
    

    Is forcing the DropDownBox to select the value “Select All” regardless of what the value of TMId is.

    Get rid of that last paremeter entirely and instead change your server-side code to return a SelectList object with 0/Select All as the first SelectListItem. Then, your model object will properly choose the correct option from the DropDownList.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My requirement is simple, there are two dropdowns in my view. First dropdown is
Is there any way to view the contents of the solution user options file
On my clear case integration view there is an option 'Synchronize with stream' which
I have a custom view that accepts drags. In the custom view there is
I have created a view in which there is a capture button. When i
Question: Does Informix have a construct equivalent to Oracle's materialized view or is there
There is a new View Controller in iOS 5: UIPageViewController which supports to turn
Is there a way to view the key/value pairs of a NSDictionary variable through
Is there any way to view the activity log for the integrate SourceSafe inside
Is there a way to view the register contents in each stack frame in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.