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 6597643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:14:06+00:00 2026-05-25T18:14:06+00:00

The following code has worked in v1.3 but not 1.4 I can’t seem to

  • 0

The following code has worked in v1.3 but not 1.4 I can’t seem to figure out what the issue is. I’m building a cities ddl from a selection from the province ddl. I’m using ASP.NET MVC 2

The function on the server gets called and it builds up the correct list, but when it returns it never steps into the callback function. I’ve put in some alerts, and the don’t get called. except for the one before the getJSON

Anyone know what I’m doing wrong?

$(function () {

 var provinces = $("#ProvinceId");
 var cities = $("#CityId");

 provinces.change(function () {
     cities.find('option').remove();
     alert("hello outside JSON call");

     $.getJSON('<%= Url.Content("~/HomeController/Cities") %>', { province: provinces.val(), includeAllPlaceholder : true }, function (data) {
         alert("hello");
         $(data).each(function () {
             alert("hello 2");
             $("<option value=" + this.Value + ">" + this.Text + "</option>").appendTo(cities);
             alert(this.Value + ":" + this.Text);
         });
     });
 });

});

in the controller

public JsonResult Cities(string province, bool includeAllPlaceholder)
        {
            List<SelectListItem> items = new List<SelectListItem>();
            int provinceId;

            if (int.TryParse(province, out provinceId))
            {
                var values = ReferenceTableService.CitiesInProvince(provinceId).Where(f => includeAllPlaceholder || (includeAllPlaceholder == false && f.IsAllPlaceholderEntry == false)).ToList();
                values.Sort();

                items.Add(new SelectListItem { Value = "", Text = Resources.Global.Generic.ddlSelectValue });
                items.AddRange(values.Select(f => new SelectListItem { Value = f.Id.ToString(), Text = f.Name }));
            }

            return Json(items);
        }

thanks

TR

  • 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-25T18:14:07+00:00Added an answer on May 25, 2026 at 6:14 pm

    thanks for all the help folks. turns out I needed to add in JsonRequestBehavior.AllowGet to my return statement

    return Json(items); => return Json(items, JsonRequestBehavior.AllowGet);
    

    *sigh

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

Sidebar

Related Questions

So I'm trying to play a video and the following code has worked for
I have tried the following code but has no effect: Imports system.Runtime.InteropServices <DllImport(UxTheme.DLL, BestFitMapping:=False,
The following code has concurrency issues. Here inDegVec is a global int * ,
I am generating a simple form with php. The following code has been reduced
I have the following code that has @item.ID from razor: <a href=# id=deleteitem(@item.ID)>Delete</a> When
Class 1 has the following code that generates the exception - -(IBAction) searchAllAction: (id)
The documentation has the following code var options = { host: 'www.google.com', port: 80,
The following code, d has the current date. Depending on the current locale, it
The following code tries to attach to an excel session that has the C:\test
The following code throws a TransactionAbortedException with message The transaction has aborted and an

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.