Dojo Toolkit is an open source modular JavaScript library designed to ease the rapid development of cross-platform, JavaScript/Ajax-based applications and web sites. It is dual-licensed under the BSD License and the Academic Free License.

learn more… | top users | synonyms

5
votes
0answers
310 views

Custom column sorting in Dojo Datagrid programmatically

I have created a dojox.grid.datagrid programmatically and I need custom sorting on the columns. For this I tried using ItemFileWriteStore.comparatorMap['field'] = comparatorFunc. But my comparator ...
3
votes
0answers
195 views

Store Map in Offline mode using PhoneGap HTML5 in XCode

I'm developing an App using PhoneGap and HTML/Dojo in Xcode. This App display an Map after successful login. However, the challenge is how to load the map in case of Offline-mode? For Offline-mode the ...
3
votes
0answers
139 views

Multiple Column Sorting With dgrid

How can I change the default behavior of grid.js::_setSort() in order to correctly display the sort criteria (up/down arrow) in the header of all the columns involved in a sort? Currently, _setSort() ...
3
votes
0answers
69 views

Is there a way to build a Dojo module that includes a single file from the package location?

I have the following build profile for a small app: var profile = (function(){ var copyOnly = function(filename, mid){ /* ..snip.. */ }; return { basePath: "../../src", ...
3
votes
0answers
576 views

Web automation in iframe with javascript (dojo or jquery) - click on elements inside iframe

Local Website Environment: Apache, php, and dojo toolkit. Feel free to assume jquery instead of dojo if you're more familiar with it. Remote Website Environment: dojo toolkit (server software ...
2
votes
0answers
47 views

How to retrieve a label in a Dojo for a extra locale

How do I use take advantage of the Dojo's extraLocale functionality to labels in the secondary Language for the odd scenarios where you want to display multiple languages on the same page? Suppose I ...
2
votes
0answers
119 views

Debugging code with dojo.require in WebStorm

I am trying to remotely debug a web application with WebStorm 6. The application uses dojo.require to load scripts. All scripts are loaded by the browser and my application runs fine. However, I can ...
2
votes
0answers
164 views

How to Display JSON data from REST Service using dojox.grid.DataGrid (Dojo 1.8)?

I have rest service which produce JSON data below : { "root": { "branches": [ { "branch_addr": "string", "branch_telp": "string", "branch_loc": ...
2
votes
0answers
131 views

Dojo toolkit, Binding & partial view (using contentpane)

I've got problem with ContentPane & Binding. I've got two solution with different structure. My first solution file system : - Home.html - MyModule.html - MyView.html Home.html contain ...
2
votes
0answers
150 views

Combining text and an image into one “entity”

I need some assistance while working with a rich text editor (specifically the Dojo Editor dijit), but this question should apply to all RTE's. I am seeking a way (via HTML/JS/etc, whatever works in ...
2
votes
0answers
163 views

Displaying elements inside a Dojox DialogWidget

I'm having problems correctly displaying my dojox DialogWidget content. I've created two toolbars and a ContentPane. The idea is to fix one toolbar on the top width fixed size, the other toolbar on ...
2
votes
0answers
193 views

Problems creating an image gallery using dojo

I am having problems creating an image gallery using dojo. The images form the json file do not render. I am not sure what the problem is. This is my code. <script ...
2
votes
0answers
108 views

Change default behavior of the Dojo DnD plugin on EnhancedGrid

I'm using Dojo 1.8 for an application I'm working on and I'm trying to create a file browser of sorts (à la Dropbox). I'm using an EnhancedGrid to display the list of files and directories, along ...
2
votes
0answers
755 views

Set first item in dojo filteringSelect onChange

I am trying to solve the age old problem of loading two dependent drop downs (countries/states) in dojo. I have two filtering selects to hold the list of countries and states. I am able to filter ...
2
votes
0answers
454 views

IE9 “Access is Denied” with dojo.io.iframe, but only when following a gmail link

Okay, we're using dojo.io.iframe to upload a file. I've been reading about the many different ways the situation can get "access is denied" errors, but I'm still stumped. Here are some details: dojo ...
2
votes
0answers
117 views

Dojo bar menu is stack on selected state

Does anyone know how to programmatically unselect dojo dijit.MenuBarItem. The problem is that when I select one of the items on the dijit.MenuBar the dialog pops up(I can see the bar menu item ...
2
votes
0answers
285 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) ...
2
votes
0answers
819 views

Dojo-Charting Issue: Bar Chart (ClusteredColumns) Using Array?

Simply speaking that I have 2 values of ActualCost and BudgetCost, I made a Clustered Columns chart to display their values. Now I made two series for each of them (I want to make legends for them). ...
2
votes
0answers
111 views

Can I create multi-line tick labels in Dojo Charts?

I have a 2D dojox.chart. I want to label tick marks on the X axis with dates that have time and date on separate lines. Is there a way to achieve that?
2
votes
0answers
257 views

add text to dojo chart (in this case scatter chart)

I want to add custom text to my (scatter) chart. I could netiher find an example nor any other appropriate dojo function for that. By now I have a tooltip for each point of my scatter chart, but I'd ...
2
votes
0answers
591 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(){ ...
2
votes
0answers
658 views

Readonly property of checkbox in Dojo is not working

I am using Dojo 1.6. The question is regarding dijit.form.CheckBox. I have a readonly checkbox on a form(*.jspx). Am using Spring MVC 3.0,Roo 1.1. when I click on that readonly checkbox, the value of ...
2
votes
0answers
344 views

Building dojo app: layer downloads but not load

I'm trying to built a Dojo app using the building system it provides. I have a main index.php file loading the dojo, dijit and dojox libraries The structure of the project is something like: --root ...
2
votes
0answers
172 views

How to get rid of empty spaces next to dijit.form.DropDownButton inside table cells in IE?

I have dijit.form.DropDownButton's inside table cells. However, in IE there are extra spaces next to the dropDownButton inside the cells. How can I get rid of the extra space? Note that I do not have ...
2
votes
0answers
122 views

Dojo loading unnecessary files (shape.js & path.js)

I am using customized Dojo library. When I load my client application, Dojo load the below two files after loading the "dojox/gfx/svg.js" file. 1. dojox/gfx/shape.js 2. dojox/gfx/path.js Even ...
2
votes
0answers
1k views

Asynchronous Module Definition (AMD) and tight coupling?

So I have been reading up on the CommonJs Modules spec and looking at the dojo implementation and google closure implementation. The concept is pretty cool but I had the question of tight coupling of ...
2
votes
0answers
123 views

how to set zone in dojo?

if the time in mysql is set to '2011-08-07 08:00:00', the value of dijit.form.TimeTextBox will be showed like this '2011-08-07 16:00:00'. The diffence of time between mysql and web is 8 hours,so i ...
2
votes
0answers
1k views

How to achieve Pagination with dojox.grid.DataGrid

I am using dojox.grid.DataGrid for displaying Data inside a Grid . Currently there are 50 Records in the Databse so its displaying 50 Records in the Grid (Please see the UI here ) Is it possible to ...
2
votes
0answers
671 views

Is there in Jquery or Dojo or plain JavaScript way to convert div to image?

Is there in Jquery or Dojo or pure JavaScript way to convert div to image ? Extension of image is arbitrary.
2
votes
0answers
295 views

Dojo treemodel- adding large number of items

I am trying to add a large number of items (100+) to my tree via ForestStoreModel by calling newItem in a loop. This seems to be quite slow and locks up the browser. Is there any way I can do ...
1
vote
0answers
20 views

Trouble port PhoneGap project to Windows Phone

Porting www.canterburymaps.govt.nz to PhoneGap has been successful for Android and iOS, but Windows Phone (8) is causing issues. The site works if viewed through IE, but when hosted within Cordova ...
1
vote
0answers
35 views

Can't load custom library created with dojo build

I have created an application which has its own set of dojo widgets. I have created a custom dojo build to pack all my library in a single dojo file. The file has a mix of AMD and non-AMD classes. In ...
1
vote
0answers
34 views

Browser IE :clicking on alert ok causes the dijit dialog in background to hide away visually

I have a dijit dialog that pops up on clicking of a button. This dialog has a button which stands for submitting and one to hide the dialog On click of ok it sends a REST call and gets a response. On ...
1
vote
0answers
54 views

How to show all child records from JSON results not jsut last record

Currently I have a many to one relationships and I need my map viewer to show all the child records not just the last record. I have researched and found that possibly I could be rewriting the ...
1
vote
0answers
20 views

tinymce edtor does not load, once dojo is loaded

I have downloaded the latest version of tinyMce and builded a sample html file with a text area and added the code for loading the tinyMce editor in text area and it worked fine. I tried to load the ...
1
vote
0answers
98 views

Dojo 1.9 build 'multipleDefine' error while loading locale

My dojo application breaks after building, during loading the app, throwing 'multipleDefine' and giving this error: Error {src: "dojoLoader", info: Object} Message: multipleDefine info: Object ...
1
vote
0answers
95 views

CKEDITOR opening in DOJO dailog in ck editor changing font and size show error?

I have faced one issue like below screenshots In Ckeditor changing font size and Font it will show error like Webpage not displayed? i am using version:'3.5.2' ckeditor and below bug some times ...
1
vote
0answers
133 views

How do I change the output format of datetimepicker of Struts 2?

I implemented the datetimepicker using the <sx:datetimepicker> tag and was able to change the display format. But now, I'm not able to change the format of the date that it outputs to the ...
1
vote
0answers
97 views

Dojo and iWidgets by IBM: HandleEventException: TypeError: Object [object Array] has no method 'split'

Dojo and iWidgets by IBM: so my iWidget code is as follows: onEdit : function() { dojo.require(["dijit/Dialog", "dojo/dom"], function(Dialog, dom){ var ...
1
vote
0answers
39 views

How to select a dojo TabBarButton?

i have a view called divChal. When i change the view to that i also want to change the selected Button in the tabbar to the button with the id tabBarButtonChal. i tried it like this, which doesn't ...
1
vote
0answers
38 views

Is it possible load scripts in Dojo without appending “.js” extension

I need to load files from some modules that i've been creating but dojo loader keeps adding the ".js" extension. I've been using something like: require(["dojo/ready","some/module"], function( ...
1
vote
0answers
42 views

Implementing Dojo Widget

I am new to Dojo and was asked to look at creating a widget. The widgets will be on different pages and has to read the page info using the meta data. Based on the meta data value it should pulls a ...
1
vote
0answers
36 views

Indicator format with RectangularRangeIndicator using dojo toolkit

I'm trying to use VerticalLinearGauge with RectangularRangeIndicator but I obtain a triangular format(red and green color ) as the image below. I would like the result is a large line, I used the two ...
1
vote
0answers
85 views

URL redirection event handler

Im in the process of creating a website where http reverse proxy is used to get around cross domain issues. Im think of using php curl or nodejs. For example ...
1
vote
0answers
90 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" ...
1
vote
0answers
84 views

Client side filtering in Gridx when using jsonrest with pagination?

I am using Gridx with jsonrest as the store and pagination module. Can the filtering be done client side only? Currently it sends request to the jsonrest store and that queries the server.
1
vote
0answers
89 views

Dojo Datagrid keep scrolling up on Chrome

How do I fix this issue where whenever there is a vertical scrollbar on the datagrid and I scroll down, it magically scrolls up automatically till the top. This happens in Chrome but theres no problem ...
1
vote
0answers
96 views

dijit.dialog opening in the bottom of the page for the first time

I have a dijit dialog created declaratively in my static html page. If I open this dialog as soon as my page is loaded it opens properly in the center of the page, but if I perform some actions ...
1
vote
0answers
107 views

How to add buttons to dojo titlepane

Is there any way to add buttons to TitlePane header(right side of title bar), so that i can do some operations(download,delete...) Thanks in advance.
1
vote
0answers
170 views

EnhancedGrid scrolling (with large amount of data)

I'm using dojox.grid.EnhancedGrid which is created by the class MyGrid, explained below. var MyGrid = declare(null, { constructor: function (app, id, opts) { this.id = id; this.app ...

1 2 3 4 5 34