0
votes
1answer
20 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
53 views

JsonRestStore: get all objects with POST + Body instead of GET

I use dojo to connect my frontend grid via JsonRestStore to my backend api. At the moment I instantiate my store with require(["dojo/store/JsonRest"], function (JsonRest) { myStore = new ...
0
votes
2answers
37 views

Multiple REST GET Calls using dojo.xhrGet at one time

I am working on iWidget Development using dojo, and I have to show multiple data sets from different REST Calls. Is there any possibility that I can call multiple REST Get Calls in one dojo.xhrGet ...
0
votes
0answers
27 views

JsonRest: Nested stores and observing queries

I have an application that uses stores heavily. In my application, I define all of the stores in a module, so that queries to the same store use the same store object. Now that I am adding sub-stores, ...
0
votes
1answer
83 views

binding dojo.grid to restful service with authentication via jsonreststore

I searched a while for this issue, but could not find much about it. In my javascript application I try to visualize data of my restful backend via jsonreststore and dgrid. That is what I got so ...
1
vote
2answers
51 views

how to send the data in Json structure

I have a rest service for which I am sending the Json data as ["1","2","3"](list of strings) which is working fine in firefox rest client plugin, but while sending the data in application the ...
0
votes
1answer
395 views

Dojo 1.8 JsonRest and DataGrid

I'm attempting to get the JsonRest functionality in Dojo 1.8. working to load a DataGrid. I've got the Dojo client successfully talking to a REST server. I make the call, my DataGrid headings are ...
0
votes
0answers
36 views

Using non consecutive id's with Dojo's JsonRest

I am trying to build a Dojo/Dijit based front end to a MySQL-based content manager. In my database, each article is assigned a unique ID, however, since those items can later be deleted, the end ...
0
votes
0answers
233 views

Saving a Dgrid JsonRest-based Store

I have a dgrid that has editable date fields. Above it, I have a "Save" button that calls grid.save. When I hit the button, it makes an XHR request back to the store's target, but does not provide any ...
0
votes
1answer
271 views

Dojo /JSON post request on method with multiple parameters?

This should be basics but I'm having trouble with posting multiple parameters from dojo on a rest endpoint. I have the following method on my back end exposed via resteasy. @POST() ...
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
200 views

Dojo JsonRest on one side and Mongodb on the other side: pagination/filtering?

I am experimenting with Dojo's dgrid (which is great!). I am using Nodejs/Mongoose on the server side. I want to write a "log browser": I have a big mongodb table containing lots of log entries; using ...
0
votes
1answer
120 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 ...
0
votes
1answer
92 views

Organize code in javascript Dojo working with XHR, REST

I am trying to organize my code in Dojo but I, do not understanding how things work. I want to catch the json data after a REST call but it isn't working. The testJson property, which I'm assigning ...
0
votes
1answer
76 views

Promise response works with GET, but not with POST in XHR

I am trying to call a URL through XHR.post on the DOJO 1.8. I need catch the STATUS property and getHeader() from promise response, but the problem is, when I call my URL with POST I don't have any ...
1
vote
0answers
47 views

DOJO gui elements, control the display using backend Authorisation of user

I have a dojo based gui which gets the data from webservices. At the tomcat, i already have an existing authorization security server which an provide me certain list functions a user can perform. ...
0
votes
1answer
216 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 ...
1
vote
0answers
101 views

Dojo's New Dgrid with a non-REST store

I would like to use Dojo's dgrid to replace a YUI data grid in a project I am working on. Presently, I feed data into the YUI widget using query string data, not a REST-based arrangement. I would like ...
0
votes
1answer
724 views

Redirect user to homepage on successful login Dojo

I'm struggling to redirect a user after their login request to the server is successful. The response from the server is successful and I am able to display the values in alert boxes but I don't get ...
1
vote
2answers
235 views

Jsonreststore posting and deleting

I'm writing a PHP REST API using DOJO jsonreststore, I know many are already out there but it's mainly to get a good understanding of the concept. To check the results I connected the store to a ...
2
votes
0answers
202 views

Getting data from the response or json firebug tabs using dojo [closed]

I can't post images as a new user so I have added links to the images. After about 3 days of modifying my backend, battling with browser compatibility and actually getting my code to work I have ...
0
votes
0answers
89 views

dojo.store.JsonRest concerning url construction for children calls

I'm following a JsonStore implementation with a dijit.Tree similar to the example in: http://dojotoolkit.org/documentation/tutorials/1.6/store_driven_tree/ I am new to Dojo and was expecting the ...
0
votes
2answers
259 views

Using Dojo Grid with REST (tastypie)

I am experimenting with Dojo, using a DataGrid/JsonRestStore against a REST-service implemented using Django/tastypie. It seems that the JsonRestStore expects the data to arrive as a pure array, ...
0
votes
1answer
89 views

JsonRest return null response

var contentJsonRestStore = new JsonRest({target: myurl}); Trying to implement my rest, but I keep getting a null response from my url. I have access to the json content of my url from any ...
3
votes
2answers
953 views

How to parse JSON using DOJO AJAX and REST

I am trying to send a request to a REST server using DOJO AJAX, however I get a null object as result (console): You CLICKED = click clientX=34, clientY=13 JSON loaded from server: null Here is my ...
2
votes
0answers
280 views

sending images in REST response(xml) from my java Web Service

I have a WEBUI (using html and DOJO) which talks to a Web Service. The data required in the WEBUI is coming from a java Web Service using REST Calls. IE (HTML/DOJO) <------ REST CALL(xml response) ...
0
votes
0answers
225 views

Adding child nodes to LazyGridTree using JsonRestStore

I need some help with my LazyGridTree. I am trying to create a LazyGridTree, which sends a request to the REST server to get child nodes when the user expands a node in the grid. My problem is that ...
1
vote
1answer
3k views

Dojo JsonRest store and dijit.Tree

I'm having a some problem making JSonRest store and dijit.Tree with ForestModel. I've tried some combination of JsonRestStore and json data format following many tips on the web, with no success. At ...
2
votes
1answer
118 views

How do I remove all the extra fields that DOJO datastore adds to my fetched items?

When fetching an item from a DOJO datastore, DOJO adds a great deal of extra fields to it. It also changes the way the data is structure. I know I could manually rebuild ever item to its initial ...
1
vote
2answers
1k views

Dojo : How to make PUT request on jsonRest store with callback method

I'm using Dojo JsonREST store to communicate with a RESTful API on the server. The GET and QUERY methods work very well, with asynchronous callback handlers. The PUT request to post new object on the ...
0
votes
2answers
771 views

Update/modify object retrieved from dojo datastore/JsonRestStore

I'm using a DOJO JsonRestStore. I modify fields in the object. What would be the proper procedure for persisting the modified object back to the datastore and REST service? Update: Removed info ...
0
votes
1answer
401 views

cross domain rest dojo call

I have to load data for a different url the page will run on the android browser and will load content from remote server . I have to use dojo so I tried with dojo.xhrGet , it does'nt load the data so ...
0
votes
1answer
602 views

dojo rest target remote url

I'm trying to call a remote web service with dojo the service seems working fine on the browser when I enter this url : http://192.168.1.66:9080/RAD8JAX-RSWeb/jaxrs/customers/accounts/111-11-1111/ ...
-2
votes
2answers
1k views

consume webservice using dojo

I want to consume a Restful webservice using dojo . the result of the webservice is returned on the browser but when I tried to get the result using xhr I get always a null value , so please help I'm ...
1
vote
1answer
218 views

DOMException with dojo, dgrid, TabContainer, and JsonRest

This drove me crazy for a weekend, and although I found what seems to be a workable solution, my question is whether there is something fundamental about using Dojo/Dijit that I'm missing. Here's the ...
1
vote
1answer
2k views

How to display data from JsonRestStore

The following is the code sample I have written. I would like to get the data from REST services and print it on the screen. I could get the response from REST in the JSON format. But, I could not ...
2
votes
0answers
585 views

Dojo: Saving changes with EnhancedGrid using JsonRestStore?

I'm trying to use a EnhancedGrid and a JsonRestStore: <script type="text/javascript"> dojo.require("dojox.grid.EnhancedGrid"); dojo.require("dojox.data.JsonRestStore"); dojo.ready(function(){ ...
1
vote
1answer
916 views

No Query are sent using Dojo Json Rest Store with Enhanced DataGrid

Im using Dojo 1.7.1 dojo.store.JsonRest to fill an EnhancedGrid with data. However using Firebug I do not see any queries sent neither on startup nor on filtering afterwarts. The Table remains empty. ...
1
vote
1answer
899 views

delete item from a dojo.store.jsonrest

I started with this tutorial http://dojotoolkit.org/documentation/tutorials/1.6/store_driven_tree/ after setting up my ServerSide Restfull Service everything is working so far. I made a contextmenu ...
3
votes
2answers
1k views

jsonRest complex structures with dojo

I am developing a web app based on dojo framework. I decided to use dojox.data.JsonRestStore for communication with the server. For example, I have this representation of Order (ecommerce) in Json: ...
1
vote
1answer
523 views

How do I sort Dojo DataGrids based on dojo.store.jsonrest in the GUI without REST request?

I am currently implementing a frontend based on the Dojo Toolkit (1.6.1) receiving a lot of data from RESTful services. This is represented in the GUI by the dojox.grid.DataGrid using a ...
0
votes
1answer
85 views

Question about Java API design for RESTful application

I need to design a RESTful application which allows me to access the people’s contact information from Facebook. I stored the First name, last name, email address in the database. For the UI I will ...
0
votes
1answer
405 views

Dojo Restful server access

How to implement restful access from Dojo client to java server running in tomcat? I need to make restful request to server and get data (json or xml format) and update the grid. How to do it? I read ...
1
vote
2answers
448 views

How do I add parameters to every ajax request?

I'm developing a single page web-application using dojo and Java EE. simplified architecture The client scripts exchange data with the backend using the dojox.data.JsonRestStore. I want to atach ...
3
votes
2answers
3k views

Looking for example of dojo.store with dijit.Tree over REST

I'm looking for an end to end example using dojo.store with dijit.Tree over REST. There are many existing examples that use the older dojo api, dojo.data.api, but a dearth of ones using the ...
3
votes
3answers
1k views

Implementing restful servers with Django for Dojo's JsonRestStore - Which tools for the job?

I'm writing some restful serverside resources which talk with dojo's JsonRestStore (JRS) on the client-side: http://dojotoolkit.org/reference-guide/dojox/data/JsonRestStore.html I notice that ...
1
vote
1answer
1k views

How to define additional parameters in Dojo's JsonRestStore (dojox.data.JsonRestStore)?

I'm working on dojox.data.JsonRestStore in conjunction with dojox.grid.DataGrid to access a REST API which has an authentication process similar to OAuth where query parameters are signed by a Shared ...
3
votes
1answer
389 views

Is there a solution for generating a JSON SMD for a Spring 3 REST Controller?

A colleague and I are setting up an architecture for rapid development of rich client-side apps using REST and JSON. Our server is using Spring 3's MVC and REST features to expose REST services as ...
2
votes
2answers
6k views

QueryReadStore loads JSON into DataGrid, but JsonRestStore does not (from the same source)

I'm building a Dojo DataGrid from JSON data provided by my REST interface. The DataGrid loads the data fine using a QueryReadStore, but doesn't seem to work with the same same data piped into a ...
0
votes
1answer
798 views

How well does the Recess! PHP Framework play with dojo.data?

I've been trying to find the perfect php framework for me that integrates with dojo smoothly. I am trying to avoid creating my own framework and I don't want to use the Zend Framework since I don't ...

1 2