Click here to Skip to main content
15,888,351 members
Home / Discussions / Web Development
   

Web Development

 
QuestionDisable Ajax Load On Wordpress Post Pin
Member 102891603-Nov-13 7:02
Member 102891603-Nov-13 7:02 
Questionhow to override the DC.title? Pin
Jassim Rahma3-Nov-13 0:22
Jassim Rahma3-Nov-13 0:22 
Questionbest way to save and use date Pin
Jassim Rahma2-Nov-13 1:08
Jassim Rahma2-Nov-13 1:08 
AnswerRe: best way to save and use date Pin
Richard MacCutchan2-Nov-13 6:02
mveRichard MacCutchan2-Nov-13 6:02 
GeneralRe: best way to save and use date Pin
Jassim Rahma2-Nov-13 7:28
Jassim Rahma2-Nov-13 7:28 
GeneralRe: best way to save and use date Pin
Richard MacCutchan2-Nov-13 7:40
mveRichard MacCutchan2-Nov-13 7:40 
Questionwhy getting: argument for routine is not a variable?! Pin
Jassim Rahma1-Nov-13 23:29
Jassim Rahma1-Nov-13 23:29 
QuestionMVC4 Ajax Call does not reach controller Pin
MYSHKSL1-Nov-13 10:43
MYSHKSL1-Nov-13 10:43 
I am new to MVC4. I am trying to issue ajax call on the button click to receive partial view with the loaded dropdown list. It looks like Ajax call never reaches controller's method GetMyList(). What is wrong with my code ? Thank you


//in mypage.cshtml
@model IEnumerable<MyProject.Models.MyModel>
@{
ViewBag.Title = "MyPage";
Layout = "~/Views/Shared/_MyLayout.cshtml";
}

<div>
....

<div>
<button id="btnGetList">Find</button>
</div>

<div id="divWithPartialView">
@Html.Partial("_MyPartialView", Model) // displayed on initial page load
</div>
...
</div>


@section MySection{

<script type="text/javascript">

$('#btnGetList').on('click', function (event) {

alert("go get list"); // shows up

var myName = "Jo";

$.ajax({
type: "POST",
url: "Main/GetMyList",
data: myName,
success: function (data) {
alert("list is here"); //does Not show up
$("#divWithPartialView").html(data);
}

});

alert("after ajax"); //shows up

})
</script>
}

// Controller

namespace MyProject.Controllers
{
public class MainController: Controller
{

............

[HttpGet]
public ActionResult MyPage()
{
List<MyModel> myList = new List<MyModel>();
return View(myList);
}

public ActionResult GetMyList(string myName)
{
MyModel mm = new MyModel();
List<MyModel> myList = mm.GetNames(myName); // using search criteria entered on the previous Application page

return PartialView("_MyPartialView", myList);

}
}
}


//Partial View: _MyPartialView.cshtml
@model IEnumerable<MyProject.Models.MyModel>

<label>Select your name:</label>
<select id="lstNames">
<option value="0">- select name -</option>
@foreach (var name in Model)
{
<option value="@name.id">@name.myName</option>
}
</select>


//Model
public class MyModel
{
public int id { get; private set; }
public string myName { get; set; }

public List<MyModel> GetNames(string myName)
{
List<MyModel> myList = new List<MyModel>();
//code to find names that start with "Jo"
return myList;
}
}
SuggestionRe: MVC4 Ajax Call does not reach controller Pin
Richard Deeming1-Nov-13 10:51
mveRichard Deeming1-Nov-13 10:51 
Questionhow to header("Expires") in php Pin
Jassim Rahma1-Nov-13 8:42
Jassim Rahma1-Nov-13 8:42 
QuestionUndefined index for $_SESSION variable Pin
Jassim Rahma1-Nov-13 8:33
Jassim Rahma1-Nov-13 8:33 
AnswerRe: Undefined index for $_SESSION variable Pin
Peter Leow4-Nov-13 1:31
professionalPeter Leow4-Nov-13 1:31 
QuestionHow to rebind more three RadGrid after close the RadWindow Pin
Rahul_Pandit1-Nov-13 2:09
Rahul_Pandit1-Nov-13 2:09 
SuggestionRe: How to rebind more three RadGrid after close the RadWindow Pin
Richard Deeming1-Nov-13 3:07
mveRichard Deeming1-Nov-13 3:07 
QuestionHow to create a online service conversion of a file type to another type Pin
Moneyzz Sharma31-Oct-13 20:13
Moneyzz Sharma31-Oct-13 20:13 
AnswerRe: How to create a online service conversion of a file type to another type Pin
Richard MacCutchan31-Oct-13 23:52
mveRichard MacCutchan31-Oct-13 23:52 
GeneralRe: How to create a online service conversion of a file type to another type Pin
Moneyzz Sharma2-Nov-13 0:35
Moneyzz Sharma2-Nov-13 0:35 
SuggestionRe: How to create a online service conversion of a file type to another type Pin
Richard MacCutchan2-Nov-13 0:41
mveRichard MacCutchan2-Nov-13 0:41 
QuestionGet panel values Pin
vkEE31-Oct-13 3:45
vkEE31-Oct-13 3:45 
Questionis the $_GET exists? Pin
Jassim Rahma30-Oct-13 1:13
Jassim Rahma30-Oct-13 1:13 
AnswerRe: is the $_GET exists? Pin
Richard MacCutchan30-Oct-13 2:10
mveRichard MacCutchan30-Oct-13 2:10 
AnswerRe: is the $_GET exists? Pin
Peter Leow4-Nov-13 1:35
professionalPeter Leow4-Nov-13 1:35 
AnswerRe: is the $_GET exists? Pin
Killzone DeathMan9-Jan-14 1:08
Killzone DeathMan9-Jan-14 1:08 
QuestionSVG in IE8 Pin
ThetaClear29-Oct-13 11:12
ThetaClear29-Oct-13 11:12 
AnswerRe: SVG in IE8 Pin
RedDk29-Oct-13 12:06
RedDk29-Oct-13 12:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.