Tagged Questions
0
votes
0answers
18 views
consuming json wcf service from view in mvc
I am trying to store all information of my "user" table in wcf. and return it in json format.When i am invoking the service,i can see the entities.
But my question is how to call this service ...
0
votes
0answers
14 views
Ajax HTTP request. Adding points to a bing map
I am trying to use a HTTP request to add points to a bing map with data from the seismi Api. However whenever include the apipins function in the views page (MVC) the map does not load.
Also how do ...
0
votes
0answers
51 views
Use jQuery inside Ajax call to create and populate drop down list
In my ASP MVC3 index view, there is only one drop down list when the page loads. When the user selects a value from that list, I make an Ajax call to the controller. I then grab the relevant values ...
1
vote
1answer
23 views
Why and when to use Ajax services and jQuery in ASP.NET MVC?
May be this sounds very stupid question but I'm a student who just came to know about MVC and I find it very interesting. Also, I have very little or no knowledge about Ajax and jQuery. I have been ...
-5
votes
0answers
43 views
building an elaborate questionnaire based on tree structure [closed]
I have a tree structure in a database with Nodes, questions, answers and decisions something like the following:
Are you a principal?
Yes
Do you need access to such and such?
Yes
...
0
votes
2answers
39 views
How to parse object (and its elements) from ajax request
Here's my issue. I'm making an ajax request to obtain an object from a controller. The object (or something) is being brought back, but I don't know how to access the attributes of that object being ...
1
vote
3answers
55 views
What is wrong with this JQuery AJAX code
I was facing some problem with AJAX code. I was using MVC3 for our project. My requirement is bind the dropdown value using AJAX when page load. What happens when loading the page, the AJAX request ...
2
votes
3answers
37 views
Passing parameters in ajax call
I'm trying to make an ajax call to the controller method. without parameter it works fine. Once i add the parameter i always receive a null parameter to the cotroller. I think i have correctly done ...
0
votes
1answer
43 views
jQuery/Ajax call taking excruciating amount of time to complete
Below is jQuery code I'm using for their typeahead.js plugin on my ASP MVC 3 view.
$('#typeahead').typeahead({
source: function (term, process) {
var url = ...
0
votes
1answer
38 views
Use jQuery to .post() to ASP MVC controller method w/Razor
How would you use jQuery to post to a different controller using Razor syntax? Below is the code I'm attempting to use. Each of the alerts pop up the exact information I am expecting except for the ...
0
votes
0answers
22 views
Div location changed after partial update in MVC using Jquery
I'm trying to learn some asp.net MVC.
I've created an application using Jquery Ajax for partial updates.
When partial updating a section using jquery and showing the section as a modal dialog the ...
0
votes
0answers
24 views
Merge heads in ajax get call
I've full view in Orchards cms that consist of partial view. I need to get this partial view via ajax get call (i want to load whole page and the wait only for partial view). Unfortunately, partial ...
0
votes
3answers
63 views
json Array posting to mvc controller
I want to post JSON array to MVC controller through AJAX POST as:
$.ajax({
type: 'POST',
data: json.stringify(totaldata),
...
0
votes
2answers
75 views
Change label inner text that contains link using Ajax
I have a label that contains a link like following:
<label id="textlabel" > <a href="#" id="testlink">data</a> </label>
I am trying to use Ajax to change label text, but ...
0
votes
3answers
50 views
return view after ajax call
after an async call with jquery how can I return a particolar view?
this my caller view:
<script type="text/javascript">
function Run() {
$.ajax({
type: "POST",
...