0
votes
1answer
22 views

dojo.xhrPost server response

I get my server response using dojo xhrPost but I get back the whole site. How can I get only a part of response let's say one div's content. function ajaxrefresh() { dojo.xhrPost({ // ...
0
votes
1answer
16 views

Cross domain REST using Ajax in Dojo

I have using dojo.xhrPost method in Dojo and trying to call url from different domain server REST services. I have facing problem in cross-domain. I have getting ERROR ::: “ RequestError: Unable to ...
0
votes
1answer
13 views

dojo dnd source and xhrPost

I havent tried this yet but I know that Im going to spend alot of time and frustrations getting this to work along the way. I just learned how to use the dojo dnd source recently and I want to know ...
0
votes
1answer
50 views

sometimes ajax listener is not getting called in JSF commandlink

I searched all over net and tried many things but nothing is working out... In my .xhtml page there are 7 links which are JSf command links as below, <h:commandLink id="HeaderLink" ...
-1
votes
0answers
54 views

Struts 2 dojo div targets not working in IE

I'm using Struts 2 dojo div targets, the response that I get is not targeted to the div, instead it opens up as a full page and I'm getting djConfig undefined erorr in developers tool console. I have ...
0
votes
2answers
45 views

grails remotefunction: can't access params

I've got a remoteFunction call in a javaScript function in my GSP file: function fnCreateEntitiesPerForceChart() { var interval = $("#entitiesPerForceTimeIntervalSelect").val(); interval ...
-1
votes
1answer
123 views

Struts2 ajax theme not working for in IE10

We have a running struts 2 application, in that application we are using dojo ajax theme to save and retrieve data. This is working for all major browsers except for iE10. In IE10 the ajax request ...
0
votes
0answers
77 views

Why doesn't my dojo xhr.post request work?

I have an xhr post method, but my callback with "alert("data retrieved")" never gets fired and I dont know why. Here is a fiddle for better reading: http://jsfiddle.net/ZKppc/1/ ...
1
vote
1answer
42 views

JSP Fragments: Which tags are reduplicated at the top

I have a JSP page which has the following tags prior to the <html> tag: <?xml version="1.0" encoding="ISO-8859-1" ?> <%@ page language="java" contentType="text/html; ...
0
votes
0answers
91 views

IE8 issue with HTTPS ajax polling request in Java web application using DOJO and Spring JS

I am facing an issue in my web application where ajax polling stops after some time in IE8 (using only this version of IE to test my application) with a status code 12152. The problem is my ...
1
vote
1answer
106 views

xhr.setrequestheader in all ajax calls?

My site has some pages using jquery and some dojo (we are moving to jquery actually). I need to set a common custom header on all ajax requests irrespective of whether it uses jquery or dojo. Can I ...
0
votes
1answer
101 views

How do I use my “.selectedIndex;” value from select box as my index in my PHP request?

I have a select box that uses "onchange" to select a value based on the users choice. //AddSelect start of function var TownSelect = function(options){ var _dom_element = ...
0
votes
1answer
80 views

dojo.xhrpost getting status code as 0

I am submitting a for using dojo's xhrpost. My app runs on ruby on rails. In the controller I am performing a redirect. I store the redirected URL the response headers. I access the redirected URL on ...
1
vote
0answers
50 views

Dojo data-dojo-type attribute does not work with struts 2 form

I have upgraded from dojo 1.5 to dojo 1.8.1. Unfortunately struts form does not work as expected. Here is my html: <s:form id="formId" action="my.action" cssClass="floatForm" ...
0
votes
0answers
107 views

Dojo ajax call in Liferay Struts portlet not working

In my Liferay portlet, I'm using dojo.xhrGet to do an AJAX call to a Struts action class. It is going to the "load" handler (not "error") so I know that URL used is valid. However, the Action class ...
0
votes
0answers
65 views

Dojo Xhr: Result Content is Not Appearing until there is a mouse click anywhere on page

i'm building an offline application with Dojo 1.7, using Dojo RDD, generating forms dynamically and storing them in cache. now every time when i fetch something through ajax i have to remove dojo ...
1
vote
1answer
60 views

Load data asynchron in a JS object

I'm currently writing a JS class for my webshop application to access product information which is stored on the server. The information should be loaded asynchronously. For this I use dojo.xhrPost(). ...
0
votes
2answers
309 views

Populating a dojo dijit/form/FilteringSelect with an Ajax response text

I have two drop downs in my application: to the first drop down (select type of institution), i've attached an onchange event that calls a javascript function (this one makes an ajax call) that is to ...
-1
votes
3answers
72 views

Can i redirect a user through ajax call

I just want to know if I can redirect a user through ajax call where i have to call one of my method in java and then do a redirection from there
1
vote
1answer
23 views

Why a Dojo app could be trying to retrieve files erroneously from googleapis in Firefox and not in Chrome?

I'm maintaining an old PHP app that is using Dojo. On Chrome all load well but on Firefox four "404 Not Found" error happened in a loop. The error happens while Firefox try to get the following ...
0
votes
1answer
72 views

how to have a working grid displaying data source from ajax with the grid?

As I have learned the tutorial about dgrid(a new dojo grid),I have learned the example code. Let me pick one to list here: require(["dgrid/Grid", "dojo/domReady!"], function(Grid){ var data = [ { ...
0
votes
1answer
26 views

Stubbing dojo requests

given the following... api.checkIn = function (theUserID) { var uri; uri = 'some/uri/here/' + theUserID; return req.get(uri, { handleAs: 'json' }); }; ...
1
vote
2answers
74 views

How to override Dojo's xhrGet and xhrPost?

We are extensively using Dojo's xhrGet and xhrPost in our application. This has been used across multiple JavaScript files. Now we need a uniform way in which we handle the exceptions that are ...
0
votes
1answer
189 views

cross domain request with dojo

I am attempting a cross domain request with dojo. External url is of MIME type text/html the only content on the page is something like 1236. I tried dojo.require("dojo.io.script"); ...
0
votes
1answer
57 views

dojo1.8 - Not sure how to read the selected value and post to php file, using dojo/request

Hi I have problem getting the value of select node posted and get nothing. I am using dojo/request. And the getuser1.php at the server is working when I tested with simple ajax file. At the request ...
1
vote
1answer
59 views

Loading content from ajax request into dom node in DOJO

I'm wondering is there a quick way in DOJO to load ouput of http request into some DOM node like in jQuery $('#injectMe').load('/someResource', { id: 223, xxx: "2323" }); ps I know about ...
0
votes
2answers
88 views

Filter JSON from ASP.Net handler | Using Dojo 1.8

Wanted to filter the results using Dojo 1.8 based upon the data received from server through a ASP.Net handler. Handler Example - ...
0
votes
0answers
45 views

handle onReadyStateChange with dojoToolkit

I would like to know if there are some trick to handle the "onreadystatechange" property of a xhr object with Dojo Toolkit. I need this to execute some code at the moment the request's status change, ...
0
votes
0answers
62 views

redirecting to the URL present in response after ajax redirection?

I searched through many links but somehow could not solve my problem. I am using dojo.xhrPost to make an ajax post. I am using ruby on rails and after the data is successfully submitted the ...
0
votes
1answer
298 views

Multipart form data ajax request in dojo

I googled a lot but could not find a way to do ajax post request for Multipart formdata enctype form .Can anybody help
2
votes
1answer
230 views

Spring MVC controller throwing 415 error media unsupported for JSON request

I have looked at all the other answers for this problem and tried most of the solutions but nothing seems to work. I am using Dojo.xhrPOST(xhrArgs) which obviously comes after the xhrArgs definition. ...
0
votes
0answers
30 views

Dojo AJAX place HTML with script tag

When I using Dojo request (request) and Dojo HTML (html) to set response HTML into DOM, script tag in response will be ignored and not loaded. How can I force Dojo to load script tags in response? ...
0
votes
1answer
80 views

dojo 1.8: Remotely update content pane from other content pane by widgets

Hi do you have any idea how I can update in content pane from other content pane remotely? ie html update in one contentpane and change one part in other contentpane by ajax... Are there any examples ...
0
votes
2answers
132 views

How can I hide the parameters of this URL?

I have a ajax call in my javascript and its returning some response as json and redirecting the json values to another jsp page.. in the redirected jsp page, am getting the whole json in the url tab.. ...
0
votes
0answers
77 views

dojo.xhrGet returns null when handled as xml

Here's my request to an fcgi script (never mind my choice to use fcgi): var src = "http://127.0.0.1/devList.fcgi"; var q = encodeURIComponent("sda"); dojo.xhrGet({ url: src, handleAs: "xml", ...
1
vote
0answers
56 views

Javascript execution order difference between linux and windows

function show_SelectRateItems() { document.getElementsByName("buttonval")[0].value="No"; dojo.event.topic.publish("show_RateItems"); ...
0
votes
0answers
144 views

dojo charting - ajax call to the controller

I am new to dojo charting. I need to do an ajax call to get the list from the controller. Below is the url from where I took the code (view page source). ...
0
votes
1answer
47 views

Persisting Form data while adding additional copies of a <div> to the form

I am working on SpringMVC Webapp. I have a view which consists of a dynamic form. The dynamic elements of the form are shown in the below: Now, the current scenario is: I pass the variable ...
0
votes
0answers
239 views

Struts2 Dojo Ajax validation is not being validated

Here is my jsp page. <!DOCTYPE HTML> <%@taglib prefix="s" uri="/struts-tags"%> <%@taglib uri="/struts-dojo-tags" prefix="sx"%> <html> <head> <sx:head /> ...
0
votes
0answers
19 views

dojo/request Ajax error data [duplicate]

Possible Duplicate: How to retreive XHR response code (+timestamp) of AMD’ized Dojo? When making an Ajax call using dojo/request, is there a way to get access to the response data in the ...
1
vote
1answer
210 views

Load Dojo form from ajax call

I am trying to implement something like this. http://app.maqetta.org/mixloginstatic/LoginWindow.html I want the login page to load but if you click the signup button then an ajax will replace the ...
1
vote
1answer
91 views

Can Dojo .ajax load image?

There is a similar question for Jquery here: Can jquery .ajax load image? The accepted answer is quite clever and works well (for Jquery): var img = $("<img />").attr('src', ...
1
vote
1answer
100 views

IBM JAX-RS 1.1 handling Dojo Ajax OPTIONS request

I am currently experimenting with IBM JAX-RS capability through WAS 7 and Web 2.0 Feature Pack 1.1.0.0. The problem I am running into is the client Dojo ajax call poses CORS situation and I am ...
0
votes
1answer
119 views

Server side stores in nodejs (to be used in Dojo)

I am writing this great application. It's my first attempt to write a one page fully AJAX application that only uses Restful stores on the other side. Now... I wrote some of the code, and up to this ...
6
votes
1answer
355 views

dojo.store.Observable, JSON REST and queryEngine

Does anybody know how to use the JsonRest store in dojo witn an Observable weapper, like the one in dojo.store.Observable? What do I need, server side, to implement the store and make it work as an ...
2
votes
1answer
111 views

How to dynamic loadind dojo's 1.8 modules with PHP?

I have in my main page dojox/layout/ContentPane widget. This widget dynamically load any Hrefs with content which have Javascript & HTML the being formed by PHP. Javascript $scriptCode ...
0
votes
0answers
308 views

Ajax POST with DOJO 1.8.1

I'm try to POST data with ajax by using DOJO(v. 1.8.1) request.post("http://someweb.com/service", { headers: { "Content-Type": "application/x-www-form-urlencoded" }, handleAs: ...
0
votes
1answer
179 views

How to parse multi-part response in dojo

I am working on dojo1.7. I want to parse multi-part response which i am getting from ajax return. How to do it? Can somebody suggest me?Thanks in advance!
0
votes
1answer
211 views

Retrieving XML data from a ReST service across domains with Dojo

I am trying to write a browser-based Javascript client for a ReST application which responds with XML (so it seems JSONP is out of the questions). I am trying to retrieve the data using ...
0
votes
0answers
87 views

determine AJAX.A4J has finished all requests in queue

Good day, I need to check if a website has loaded completed, including AJAX. For all other frameworks I found a way to verify it, except for A4J.AJAX. // DOM document.readyState=='complete'; // ...

1 2 3 4 5 6