0
votes
3answers
36 views

Parameter not getting passed in AJAX call

I am using the following code function test() { GetAttributesForSelectedControlType('Phone Number'); } function GetAttributesForSelectedControlType(questionType) { alert(questionType); ...
0
votes
0answers
8 views

how to make ajax call on telerik mvc grid clientside onsave event

I have a telerik mvc grid whose edit mode is incell. now i want to validate the edited cell value by making an ajax call to the server side and then proceed with the saving or stop the edition by ...
1
vote
3answers
63 views

jquery ajax in ASP.NET MVC

This is my jquery code for ajax : $.ajax({ url: '@Url.Action("IsLoggedIn","Ajax")', type: "POST", data: "Command=CheckLogin", cache:false, ...
1
vote
2answers
34 views

MVC Post values using ajax when value selected in dropdownlist

I have several dropdownlists in a form. Each time the user selects a value in one of these dropdownlist do I want the value to be saved to the backend (database). I don't want to page to reload so I ...
0
votes
0answers
33 views

Adding a Subgrid into each row of foreach binding table of knockout js with dynamic ajax call

i am using knockout js. i am biding table using foreach data-bind. i am trying to bind nested foreach data-bind,but not getting proper output i need sub table grid of each parent forech table ...
1
vote
2answers
36 views

How do Ajax calls fit in with a MVC structure

I'm using MySQL/PHP/Jquery and a custom MVC structure because my app is fairly small. My question is (and this could be in any language): When using a MVC programming structure where do the files you ...
0
votes
1answer
36 views

Ajax update target id, but not action link

So I used this before, but this is a link, with that behaviour once the link is clicked Ajax.ActionLink("XXX", "UpdateGridView", new { }, new AjaxOptions { UpdateTargetId = "configs"}) ); What ...
0
votes
4answers
53 views

My Ajax post is not reaching the success

This is my ajax post: $.ajax({ type: "POST", url: "AddUpdateConfigs", data: ({id: @Model.QueueMonitorConfigurationsID, pathType: $('#ddlConfigTypeName').val(), ...
0
votes
2answers
52 views

Json posted array has null values

I have the following json object, sorry for the image; The jquery code I have looks like this; var data = { table: table, favour: $("[name='radFavour']:checked").val(), data: jsonObj ...
0
votes
3answers
42 views

MVC - Refresh View Model asynchronously via AJAX + Controller?

I've been working on filtering a list of log entries, and I'm getting close to being complete. I'm wondering if it's possible to update the current View's model asynchronously via $.ajax(). I ...
0
votes
0answers
29 views

How to have AJAX call a Controller function using Highcharts [duplicate]

Using highcharts, I have hardcoded data in my controller, which is successfully reaching the page when I var_dump. However, the data is not reaching my chart in my javascript file. Controller ...
2
votes
0answers
38 views

How to hardcode chart data in my Model then have my Controller pull it from there to display it. Using Highcharts

Im using highcharts, right now I have an example chart. Before I pull data from the api, I want to hardcode my own data into the chart. Right now I have my chart data in my javascript file. I want ...
0
votes
0answers
43 views

Ajax request in rails 3.2 hitting controller twice

I have an ajax call for my signup, but this ends up hitting the controller twice. I tested this using the debugger, so I am sure it hits it twice. Why does it do this? Code for the controller is ...
0
votes
1answer
36 views

JsonResult returns HTML response

I have this method in a controller to reset the password of a user by mail. public JsonResult RecoverPasswordByEmail(string mail) { MembershipUser member = ...
1
vote
3answers
58 views

Simple ajax clock works in everything except for IE for some reason

Here is my simple ajax function: var callback = function () { $.ajax({ url: "/Home/Timer", success: function (response) { console.log(response); // Fails, but only in ...
0
votes
1answer
74 views

Sencha Touch - Create New Model/View/Controller from JSON

I'm rather new to Sencha Touch and currently considering it for a new project. I have spent a couple days searching the internet and watched have watched a dozen videos already, everything that Sencha ...
0
votes
2answers
55 views

MVC Ajax call not working

I am just learning AJAX and have made a call to my controller but it isn't working. The problem I am having is that it errors but the alert disappears after a half second and the console error is ...
0
votes
0answers
20 views

ajax 404 error in MVC when using virtual directory

I have a MVC application that is able to successfully make an ajax call to a controller when hosted under http:// myserver using IIS 7.5, ie $.ajax({ url: '@Url.Action("GetData")', type: ...
1
vote
0answers
82 views

Add an object to database by Ajax and Spring MVC

I follow this Link and i want to insert a user to database and then get the succes massage. My code insert successfuly the object to database but i get an error : ...
0
votes
1answer
62 views

F# MVC Json Result, on the client empty object after Ajax call

I have a F# mvc app, and I am trying to get ajax call into and endpoint that will return a list of people, which will then display in a table. type Person(credits:int, name:string, ...
0
votes
1answer
56 views

How to fix this js script to send a value by method post

I have This Java Script And I want to click ok and call detel method in my controller but its not working and I dont't know why im new in js I need to but 2 values in this submit id and name Also I ...
0
votes
0answers
51 views

Session variables disappearing in Joomla component when I switch views

I am currently building a custom Joomla component which is basically a user form which makes SOAP requests at various points. I have a view which makes an AJAX request to the controller, which then ...
0
votes
0answers
52 views

Ajax call to MVC partial does not return excel to download

I am coding an ajax call within my MVC 4.0 c# web site. I am having trouble returning excel within an ajax call for the user to download. What am i missing? Ajax Call: $.ajax({ url: ...
1
vote
1answer
63 views

JQuery tabs, on tab select trigger event

I'm new with JQuery and I'm trying to make a tab select that triggers an event, this is the code that I created. But when I clicked on the tab that I want the event to trigger, the event do not ...
0
votes
2answers
43 views

send null parameter from Ajax to controller

I have a jquery function that makes an AJAX call to a function in controller. the controller function accepts 3 arguments. At certain times I need to pass 3rd parameter as null.. since that will be ...
0
votes
2answers
63 views

Attach CSS on a newly opened browser window

I'm trying to open a new browser window that contains the retrieved view and its data using ajax call. $.ajax({ type: 'POST', url: redirectToANewWindow, ...
2
votes
2answers
75 views

Yii CWidget - Dependent Dropdown

I am trying to create a widget with a dependent dropdown box. Following tutorial: http://www.yiiframework.com/wiki/24, I am faced with the following problem with the ajax part: echo ...
0
votes
1answer
38 views

I'm having trouble retrieving data from a url using ajax and jquery

I have a jquery function which calls a url. When I get to this url it returns a value (it uses the mvc architecture). This value is a boolean value which will hide a button based on what is returned ...
0
votes
0answers
20 views

How to access java script in parent page from partial page asynchronously using Ajax

I have been coding for a number of years but I am new to mvc. My problem is I am trying to render a partial page asynchronously using Ajax. But I need to run the java script in the parent page. my ...
2
votes
1answer
55 views

Prevent Ajax Form Submission Without Content

I'm trying to get some client side validation working to prevent a form submission occurring if an object has no value. I've been plugging away at this for a while now but cannot get a satisfactory ...
1
vote
2answers
121 views

AngularJS - How to run controllers from other controllers?

I'm new to angular, coming from a jquery way of thinking. I've read through most of the main site and bits of others, and I'm trying to further learn by building a customizable dashboard application. ...
0
votes
0answers
106 views

How to edit HTML Table Row in MVC3?

<input type="button" id="btnAdd" value="ADD ROW"/> <table id="tblData"> <tr> <th> ID </th> ...
1
vote
1answer
66 views

@Ajax.Actionlink render partialview

I am trying to use Ajax.Actionlink to render a partial view. But it only redirects me to the partial view. I also added: <add key="UnobtrusiveJavaScriptEnabled" value="true" /> to webconfig. ...
0
votes
1answer
31 views

Posting Using ajax in cakephp

$(document).ready(function () { $(".addquestion").unbind('click').click(function(e){ e.preventDefault(); alert(1);console.log(this); var context = $(this).parent(); ...
0
votes
2answers
121 views

How to append a div using AJAX jquery in Symfony 2?

I want to fill a div with data rendered from this Symfony 2 php code using Jquery AJAX <?php echo $view['actions']->render('ShowfileBundle:Event:choosePerf', array('year' => ...
0
votes
0answers
35 views

request.isajaxrequest only work on local

I have a base controller that override OnException, in OnException i do some error logging and check if the request is from a ajax call with Request.IsAjaxRequest(). if its not a ajax i redirect to my ...
1
vote
1answer
184 views

ruby on rails update page with ajax

I am using below button_to tag inside view file (index.html.erb) <textarea rows="2" cols="20"><%=@write_date%></textarea> <%= button_to ...
0
votes
1answer
101 views

Appending to DOM

I'm trying to append, in one way or another, results from an ajax post in a commenting system. I've tried many different ways but they all seem to fail in one way or another. The HTML for the ...
2
votes
2answers
634 views

mvc ajax/jquery - click image without reload page

User clicks image on my MVC view and then this onclick event calling some method or action in controler - without reloading page. This method will returns some string to my jquery/ajax function (some ...
8
votes
2answers
450 views

How to combine JMVC (javascript-mvc) and server side MVC together

I have asked this quesion few days before here and no one answered it. I had asked it in forum.javascriptMVC.com too and now I have a answer, but more idea is what I need. Please. Question: I read ...
2
votes
1answer
372 views

Why isn't my ember.js route model being called?

I just started learning EMber.js (bought the PeepCode screencast), and am learning quite smoothly from it, but ran into a problem when trying to write my first Ember app. Here's the (nested) route ...
1
vote
1answer
257 views

MVC 4 Ajax ActionLink overwriting target div

I have created an ajax.ActionLink in my MVC view and it is overwriting the target div with the response, instead of filling it with the response, which makes no sense. This article says that it is not ...
0
votes
1answer
75 views

Sending complex JSON object to MVC

Actually, I have a fingerprint minutiae object, generated in the client side of my application. I obtain this object using the java script , it is a "complex object" I tried to send it to the server ...
0
votes
2answers
107 views

Passing the string value from view to controller sending only null

I want to send some data to controller but i always getting null value in parameter of controller . I look for solution but not reached to solution . Please provide some suggestion or help . ajax ...
0
votes
0answers
58 views

What does the MVC model contain? Can it just hold Hibernate POJOs?

I have a question about MVC architecture in an application based on Spring+Hibernate+IceFaces. If we choose MVC pattern + ajax, What kind of data should the model passed to the view hold in MVC? Do I ...
0
votes
2answers
88 views

When to integrate jQuery and ajax into a php application? [closed]

I have been doing a lot of research lately about some different ways to approach the development of web applications. I'm doing this project now and some questions have surfaced as to the best ...
0
votes
1answer
37 views

Design Model for multiple sources (XML/JSON) [closed]

Let's say I have my application which receives login information (or credentials) from different sources. Now the input source can be in different formats (XML/JSON, etc) How do I handle these ...
1
vote
1answer
47 views

I want to push a line of html text to this notifications list with out the user having to refresh the page

Cannot phrase correct term or language that I want, so finding hard to search. Q: From server side, push line of text to user. Building MVC 4 (asp.net - c# .net4) application. One page will have a ...
1
vote
2answers
124 views

Spring MVC - generic HTTP handlers

Have searched around and have not found a conclusive answer to this. I have trying to route all http requests through my dispatcher servlet, and then onto a specific controller. Ultimately I want to ...
2
votes
3answers
81 views

For ajax post, where should data to be passed be located?

I am using a homegrown MVC framework. The client passes the current page #, the controller name, the desired task, and any pertinent data to the server. All of this information can either be in the ...

1 2 3 4 5 7