Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
12answers
36k views

Equivalent of String.format in JQuery

I'm trying to move some javascript code from MicrosoftAjax to JQuery. I use the javascript equivalents in MicrosoftAjax of the popular .net methods, e.g. String.format(), String.startsWith() .. etc, ...
11
votes
1answer
817 views

Firefox 6 Infinite Page Refresh With Page With Hash Tags

When Firefox updated to version 6 recently, a site I'm working on severely broke. The site operates normally when browsing to any page without a hash tag but if you try to navigate to a page with a ...
5
votes
5answers
153 views

How to compress specific pages in ASP.NET

I have web application that in some pages I use Ms Ajax (Script Manager,Update Panel,...). In these pages I can't use compression because it conflicts with *.axd files. How I can compress specific ...
4
votes
2answers
947 views

CompositeScript without Microsoft Ajax JavaScript

I'm currently using the CompositeScript feature of System.Web.Extensions in order to combine my JavaScript files to reduce download time. However, by including any script manager, the MicrosoftAjax ...
3
votes
1answer
110 views

Is there any real benefit to using the MicrosoftAjax library?

I have been using jQuery for the past couple of years now, and I'm comfortable with it. In every MVC project that I start, the first thing I do is delete the MicrosoftAjax files from the solution. I'm ...
2
votes
1answer
55 views

In Microsoft Ajax, what exactly does $find do?

I'm so confused as to what $find from Microsoft Ajax actually is. Does it just return a control in a similar manner that the $ operator from jquery or javascript's own getElementById do? If I do ...
2
votes
1answer
2k views

Problem with Ajax.ActionLink AjaxOptions Callbacks (ASP.NET MVC 3)

I have an Ajax.ActionLink inside a PartialView like so: @Ajax.ActionLink(Model.IsVisible ? "Disable" : "Enable", "ToggleVisibility", "Review", new { area = "Admin", id = Model.Id }, new AjaxOptions { ...
2
votes
2answers
694 views

.NET MVC Ajax Form - How do you hide it?

Ok, everything is 'functionally' working with what I am attempting to accomplish and once again, I am sure this is something dumb, but I cannot figure out how to do this one thing. I have an edit ...
1
vote
1answer
40 views

Asp.net MVC Ajax - Disabling button in ajax.beginform?

I'm using microsoft ajax and ajax.beginform. It's working great for model binding my partial view, but I need to conditionally disable some of the buttons in my form itself depending on what comes ...
1
vote
1answer
309 views

Add Script Reference (JavaScript) to Script Manager on Microsoft AJAX Partial Postback

I am trying to add a script reference to the script manager in the event of a Microsoft AJAX Partial Postback, ie a user clicks on a link in an Update Panel. ...
1
vote
1answer
1k views

Microsoft JScript runtime error: Unable to set value of the property 'control': object is null or undefined

I am Developing a web application by using ASP.NET 3.5, jQuery and RadAjax Telerik Control. I get Error Messages when page Loading. that is :"Microsoft JScript runtime error: Unable to set value of ...
1
vote
0answers
107 views

Why won't MicrosoftAjax.js load over SSL in google chrome on some PCs?

I'm using microsoft's CDN for pulling down the Ajax libraries. And I'm using SSL on some pages. This URL resolves fine in Firefox and IE: https://ajax.microsoft.com/ajax/4.0/MicrosoftAjax.js ...
1
vote
1answer
286 views

Error handling with Javascript-enabled WCF?

Is there documentation on how to use the callback functions in a WCF Service that is exposed to Javascript? I'm interested in getting information from the FailureCallback as to why my method isn't ...
1
vote
1answer
144 views

Why does $find(strSomeOtherRadAjaxPanel) return null?

Problem context: 1) rcbComboBoxInRadPanel is a Telerik RadComboBox. 2) rcbComboBoxInRadPanel has "OnClientSelectedIndexChange" event which fires "itemSelected." 3) rcbComboBoxInRadPanel is ...
1
vote
2answers
317 views

Setting a timeout for Ajax.BeginForm() in MVC

I have a query that takes a while to return results on our staging box and it has been wired to the front-end using an ASP.NET MVC Ajax.BeginForm(). I have searched the help and the internet but ...
1
vote
2answers
392 views

When will a minified version of MicrosoftMvcAjax.js be available?

I have been running YSlow against my site and the Microsoft Ajax files are quite hefty: http://ajax.microsoft.com/ajax/3.5/MicrosoftAjax.js = 99.3k and ...
1
vote
5answers
411 views

Clicking A tag in IE6 and FF using jQuery

I have a div that is returned from an ajax call which contains an a. I need to click it in javascript, however I cannot find a way that works in both IE6 and FF. This works in FF but generates an ...
1
vote
3answers
2k views

Double loading issue in Javascript / jQuery/Microsoft-ajax hybrid

I Have an odd issue with some JavaScript code (again, I hate debugging JS code). I am working on a regular table - which I fill up from a JSON call, and have added in support for some paging (sort of ...
1
vote
1answer
1k views

Javascript error in Firefox when using ASP.NET AJAX Control Toolkit

I have recently been building a website that utilizes the .NET Framework 3.5 SP1 and the AJAX Control Toolkit. The standard AJAX controls such as UpdatePanel work without problem. As soon as I add a ...
1
vote
2answers
588 views

Hosted Microsoft Ajax on CDN?

Google hosts popular ajax libraries for free at : http://code.google.com/apis/ajaxlibs/ You get to take advantage of their bandwidth, their CDN and most importantly that users may already have it ...
0
votes
1answer
26 views

Posting collections using partial views and microsoft ajax in ASP.Net MVC2

I am using the partial view with the ajax.beginform. In that partial view page, i have the following markup EDIT <% using (Ajax.BeginForm("ManageDataSources", "DataSources", saveAjaxOptions)) { ...
0
votes
1answer
119 views

ASP.NET MVC / AJAX - Manage Browser History using MVC 3 and AJAX

In my ASP MVC 3 application, I have created a view which contains a series of steps that have ajax action links and each one loads a new partial view which replaces the content on the view. Is there ...
0
votes
1answer
132 views

AJAX / ASP.MVC3 - Browser History Support

I have a very AJAX intensive ASP MVC 3 application that uses multiple AJAX requests and partial views to just update a specific target ID and replace the content when a user clicks on the relevant ...
0
votes
1answer
120 views

tagName error only in IE8 on certain

I have a page which uses MS Ajax to pull content from a web service on the server. This works well on most machines, but does not work in IE8 on specific machines. I have disabled all plugins on these ...
0
votes
4answers
211 views

Execute JQuery after ASP.Net Microsoft AJAX

I'm trying to execute JQuery after an ASP.Net Microsoft AJAX post back. When a user clicks on a link, Microsoft AJAX is used to update some fields in the DB and if success a label appears informing ...
0
votes
0answers
122 views

MicrosoftAjax.js serialization of date time objects

I've had some problems when sending JSON objects to a WCF method using the MicrosoftAjax.js library. When the object being sent has a date property that is serialized to JSON it appears that the ...
0
votes
2answers
433 views

Javascript Error: n is null in swfobject.js

My Web application renders me "n is null" Javascript error in firefox browser when i try to access a particular page. This error originates in swfobject.js file. Also i get another Javascript error ...
0
votes
0answers
33 views

jquery not working because of atlas

I have an older asp.net app to update that was originally written using atlas for it's ajax functionality. For the new functionality I want to add I'd like to use jquery. However, it doesn't matter ...
0
votes
2answers
62 views

Can Microsoft AJAX be used for mobile web

The framework is .NET. Since it has Microsoft AJAX, jQuery baked in, can these be leveraged for the mobile web or would it be better to use a JS mobile library instead?
0
votes
1answer
381 views

JQuery templates or Microsoft DataView?

Greetings, I'm confused about which client-side template engine is recommended by Microsoft. Microsoft announced the release of a jQuery templating engine, while there's another templating engine ...
0
votes
1answer
383 views

ASP.NET ScriptManager output not included in ASP.NET partial cache (ascx)

I wrote a Simple Control, that implements ScriptControl. This is holder for JQuery framework: /// <summary> /// Generic control with client behavior handled via jQuery /// </summary> ...
0
votes
0answers
459 views

Ajax.Beginform : Error: 'id' is null or not an object on form submit

I have a popup where a user is asked to act on something (accept or decline). My goal is that in this case they can have more than one of these pending items, so after they act on one, it refreshes ...
0
votes
1answer
257 views

MicrosoftAjax date.format function not working in Chrome

There is a bug in MicrosoftAjax.js String.format function when using Chrome 5.0.375. The function randomly returns 'undefined' for some dates. I went around that by using jquery date formatter that ...
0
votes
1answer
70 views

What does the MS Ajax Framework use location.hash for?

I've noticed that the MS ajax framework touches the action of the default form during Sys.Application.initialize, appending location.hash to it. This is interfering with other code in my app that ...
0
votes
1answer
823 views

UpdatePanel not refreshing in Accordion

I'm using MS AJAX's accordion control. It works fine normally, but I can't seem to get it to work with an UpdatePanel. My layout is like this: <div id="accordion"> <div><a ...
0
votes
2answers
593 views

Problem with Sys.UI.DataView and javascript

I'm using Microsoft Ajax to dynamically populate a list of contacts, given a json packet. My code is as follows: function fillContactsFromData(contacts) { // this is just for debug to let me ...
0
votes
1answer
2k views

Help me re-center a ModalPopup within an iframe when the iframe's parent window scrolls

I have a web page with an iframe in it (I don't like it, but that's the way it has to be). It's not a cross-domain iframe so there's nothing to worry about there. I have written a jQuery extension ...