Tagged Questions
0
votes
1answer
35 views
how to show database changes in web pages(whiteout reloading page)?
i am working on simple hotel reservation system that users enter their info, like hotel or room. in every page i have footer bar that show feedback of system when user do something. for example when ...
0
votes
1answer
28 views
jQuery ajax Data Sent to Controller are Empty only in IE
This is my jQuery code :
$.ajax({
url: "/Ajax/GetConcertTime",
type: "POST",
cache: false,
data: { concertID: concertID.replace("ct", ""), date: selectedDateValue },
...
0
votes
0answers
20 views
Request.IsAjaxRequest() method not found in MVC4 when using ASPX engine
I can't seem to find the IsAjaxRequest() method when creating a partial view using ASPX engine. But it is available when I use Razor.
Is there a work around using this method in ASPX engine?
<%
...
0
votes
1answer
31 views
How to show progress while exporting in MVC
While exporting my MVC grid to Excel, i am not able to find any way to show progress/waiting popup for Exporting action. It takes few minutes to display the 'Save' dialog after clicking the Export ...
0
votes
0answers
25 views
Click browser back button and partial view is no longer displaed?
I have a view with a table that has a link. When the link is clicked JQuery loads a PartialViewResult via ajax. The problem is when a user clicks a link within the results displayed in the partial ...
1
vote
0answers
36 views
Passing model with dynamic json object to MVC controller
I have a model like so in javascript:
function SomeModel()
{
this.Id = ko.observable();
this.Name = ko.observable();
this.MetaData = {};
}
Then I need to send this to MVC so I can persist ...
0
votes
0answers
8 views
jquery ui datepiker odd behavior on ajax loaded partials views
on my aplication i have a view, this view contains a table (jqgrid) to search for users, after a user is selected, an ajax call loads a partial view, that partial view contains a list of roles, but ...
0
votes
2answers
39 views
Empty string passed to getElementById() at query.unobtrusive-ajax.js:16
I'm developing an ASP.NET MVC4 application and have started using jQuery actionlinks.
However when I run the following Razor code (and click the view ticket actionlink) I get a generic jQuery error ...
0
votes
1answer
22 views
DataTables Asp.Net MVC 4 Process
I have a project which using DataTables. Its working as ajax request. Its completing in 8-12 seconds. I need to optimize this code but i don't know how. String Process is worst part.
public ...
-1
votes
0answers
35 views
ASP.Net MVC reloading Textbox values without refreshing whole page on dropdownlist change
I have a view page that contains 3 portions.The 2nd portion is for Address details,In that i am having 1 dropdown list ,1 add button and few textboxes.The dropdown list will show the merged address ...
0
votes
0answers
9 views
Webgrid makes ajaxcalls but IsAjaxRequest stays false
I'm building a grid that allows paging, sorting and filtering. The paging and sorting works together. But when i start filtering and then do a sort all the items appear again. I'have found a solution ...
0
votes
5answers
52 views
Unable to retrieve value in AJAX POST call. [Used AJAX, MVC ASP.net, .net framework 4.0]
I have the following entity
Entity AssetMgmt
public class AssetMgmt : CommonPropertiesViewModel
{
public int DepartmentId { get; set; }
public int TypeOfDevice { get; set; }
public ...
0
votes
4answers
77 views
Call JQuery function from a MVC Action
I want to fire a Jquery function from my MVC Action code.
Know that it isn't possible via the direct code, If anyone knows how to do this task via any kind of possible forms such as publishing an ...
0
votes
1answer
32 views
Save DateTime value Posted from AJAX to MVC action
I am posting DateTime value as a String Via AJAX POST to MVC Action for saving this Value.
But at the Time of Saving the Value in MVC Action, I get the Error Massage in My AJAX Response as,
The ...
1
vote
1answer
64 views
Sending one AJAX request, but receiving multiple requests on the controller side
I am sending ajax HTML DELETE request from my web site to my RESTful Web Service (Asp.NET MVC 4 Web-Api ApiController) to delete the selected data from my HTML table. I get the selected row with ...