ajax

What is a good RPC model for building a AJAX web app using PHP & JS?

I'm new to writing AJAX applications. I plan on using jQuery on the client side while PHP on the server side. I want to use something like XML-RPC to simplify my effort in calling server-side code. Ideally, I wouldn't care whether the transport layer uses XML or JSON or a format more optimized for the wire. If I was writing a console ap...

How to call an action from input component's onchange?

Given for example a SelectOneMenu, I can trigger valueChangeListeners or rerendering of page fragments via f:ajax: <h:selectOneMenu valueChangeListener="..." ... > <f:ajax render="@form" execute="@form" /> </h:selectOneMenu> That's nice, but I want to do some more complicated stuff when the box changes (if validation is passed). Is ...

Weird javascript problem...

Hi there, i'm building a page that is dinamically loaded with ajax. This is what the '$.get' jQuery function calls (this is located on an external HTML page): <script type="text/javascript"> $(function() { $('button').sb_animateButton(); $('input').sb_animateInput(); $('#settings_security_error').hide(); }); function chec...

Avoid richfaces to send back javascript libraries in the ajax responses

I'm using JSF 1.2 with Richfaces, and for every ajax request, the server is sending back the response, whichi is good, but it also contains all the links to the javascript files. I want to improve the performance so I just want the <body> to be returned, because all the javascript files are already loaded in the browser when the user log...

How to use a JQuery datepicker in a simple Rails app?

I am a newbie when it comes to Ruby On Rails (and web programming in general). I come from a typical desktop programming background. I have written a couple simple rails applications, but this is my first try at using Rails3, and my first usage of jQuery. I am having trouble understanding how to connect my jQuery datepicker to my Rail...

Updating DIV with XML content on Hover (JQuery)

Hi everyone! The concept of what I'm trying to do is fairly simple. I have a grid of company logos loaded through XSLT from an XML document, each with their own unique links to the company profiles. I have a separate div on the page, essentially a "preview" box. What I want to do is this: I roll over a logo, and it loads the name of...

Jquery getJSON Not Working Cross Site

I have a piece of javascript that grabs JSON data. When executed locally everything seems to work fine. However, when I try accessing it from a different site, it doesn't work. Here's the script. $(function(){ var aT = new AjaxTest(); aT.getJson(); }); var AjaxTest = function() { this.ajaxUrl = "http://mydeveloperpage.com...

Jquery array submit

Hi, I have a page where there are 117 input fields. What i want is to submit them via Jquery ajax. What i am thinking is to make an array and send them by this way. I would like to ask how is it possible to take all inputs and then to put them in an array and then retrieve them from the php file (for example, should i do explode,or for e...

Unable to select dynamically generated form elements (ajax)

I have a main.php page the following code is hardcoded in main form <form action="test.php" method="POST"> the following is the code generated dynamically using AJAX <input type="checkbox" value="test" name="test[]"/> <input type="checkbox" value="test1" name="test[]"/> <input type="submit" value="go"> ideally speaking on clicki...

Appending to InnerHtml without rest of contents flicking

I have a div element with some formatted images. On user request, I load additional images asynchronously, without postback, and append the result (formatted HTML for new images) to the div element using JavaScript: function onRequestComplete(result) { var images = document.getElementById('images'); images.InnerHtml += r...

Update PageTitle on Timer.Tick

I've got a page with a Timer that is being used as a trigger on an UpdatePanel. The page also contains a TabContainer and several TabPanels. Look at this question for more information. Basically, I've got an UpdatePanel as the element in each TabPanel's ContentTemplate, and the UpdatePanel is triggered by the Timer. My page displays dat...

How can I hit my database with an AJAX call using javascript?

I am pretty new at this stuff, so bear with me. I am using ASP.NET MVC. I have created an overlay to cover the page when someone clicks a button corresponding to a certain database entry. Because of this, ALL of my code for this functionality is in a .js file contained within my project. What I need to do is pull the info correspondin...

How to kill a javascript async call to a .net webservice ?

My javascript code is calling a asp.net webservice, so i have a call to the webservice something like this: MyWebservice.GetData(param, ResponseReceived, ResponseTimeOut, ResponseError); When the webservice returns data, ResponseReceived method is called. However sometimes the user might navigate to another url before the webservice c...

ajax Post data missing with tinyMCE on Firefox

I have a problem with my form when I try to submit with ajax. I am using Malsup Form plugin for Jquery but also using tinyMCE editor. When I submit the form and check the $_POST array, there is no data from the textarea. I have tried to use the triggerSave() function but to no avail. Everything is working well in IE. // These options ar...

398 row datalist slowing down modal open????

Hey guys I got a weird issue.. I have a datalist that's only loaded on pageload it contains 2 columns a name and date and has 398 rows.. In IE 7 and above(and prob previous version) when I open a modal via a button click it takes almost 5 seconds to open. HOWEVER, if I do not bind this datalist it's MUCH faster.. Also this is only happe...

Should I use AJAX or get every data beforehand

I have a web app where I need to change a drop down list dynamically depending on another drop down list. I have two options: Get all the data beforehand with PHP and "manage" it later with Javascript. Or get the data the user wants through AJAX. The thing is, that the page loads with all the data by default and the user can later sel...

Are AJAX calls to a sub-domain considered Cross Site Scripting?

I have Server A (www.example.com) sending information to Server B. I can only have HTML / JS on Server A (and have to do the "crunching" on Server B) so I'm trying to send form data via AJAX (trying to avoid a form post to Server B - don't ask). Obviously doing an AJAX call cross-domain is considered XSS and a big no-no, but if I were t...

How i can to create my custom AJAX DataGrid for ASP.NET?

How i can to create my custom AJAX DataGrid for ASP.NET? Thanks. ...

Calls through UpdatePanel cause ASP.NET validations (css) to not show up

I have an ASP.NET AJAX form with ASP.NET validations baked in. When I push the code to the production environment and use the form, the validations do not show up after an ajax call has been made (the validations are still working, but the css is not showing up - ex. * Field Required message). If I don't make any ajax calls, the validati...

Changing parent view data variable from an action returning a partial view as AJAX request

Hello, I ran into a situation that I have never ran into before, hoping someone can help. I have a client that wants to be able to run a totally new ad-hoc report, or pick one from a drop down list. When chosen, it does a foreach through filter criteria objects nested in the report object. I had some initial trouble, because there was...