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

0
votes
1answer
16 views

what means dojo config djConfig.js regular expression

While I developing dojo application modules, I meet a regular expression in tutorials. var pathRegex = new RegExp(/\/[^\/]+$/); var locationPath = location.pathname.replace(pathRegex, ''); var ...
0
votes
0answers
7 views

How to use Firebug CSS on dynamically appearing components?

I am working on a Javascript Based site, which uses the Dojo Framework. I am using a DataPicker. I wish to change the background color of the datePicker, and hence I wish to look at where in the CSS ...
0
votes
0answers
5 views

dijit/layout/ContentPane on resize end?

I am now using dojo 1.8.3 and now have a BorderContainer with 2 ContentPane on my page. I would like to listen the resize event, the code like this dojo.ready(function(){ ...
0
votes
0answers
4 views

Dojo profiling getting started

I am trying to learn dojo profiling and I dont see any place that gives me a proper example. Even the dojotoolkit has snippets of code that is never integrated anywhere. Please suggest me some good ...
2
votes
1answer
18 views

How do I add a sub-menu item to a menu item using dojo dijit/form/DropDownButton?

I have created a Dojo DropDownButton using dijit/form/DropDownButton and created MenuItems using dijit/MenuItem. I am trying to create sub-menu items for the MenuItems so that the options are ...
0
votes
0answers
14 views

server side function not getting called by dojo onclick event after javascript function

I have been trying to get the client side data that is entered into dojo controls to be captured by server side code and then inserted into a DB. I tried hidden values and calling the function from ...
0
votes
0answers
29 views

Asynchronous chart rendering in Dojo toolkit

I need to render two or more bar charts in a plot area using the dojo toolkit library, but i have performance issues with it. Is Asynchronous calling for chart rendering possible with dojotoolkit? ...
0
votes
0answers
11 views

Grid Events not working for dojo grid created dynamically

my requirement was to create a dojo grid dynamically and call a function on RowClick of a cell in the dojo Grid. But the function is not getting called. The grid is getting created successfully but ...
0
votes
0answers
6 views

CSV file created using Dojo.io.iframe send has no data

I am trying to export data from dojo Enhanced grid. I have written an event on a button click to export the data from grid to a csv file. Please find the function being invoked on button onclick. ...
0
votes
2answers
23 views

List of dojo/on event types?

Can you give a list of recognized strings/event types for dojo/on in Dojo 1.9? query('#someId').on('event', function(){ ... });
0
votes
0answers
19 views

Javascript Dojo development script error

An interesting problem about dojo toolkit and javasacript. I am using a visual studio to developing application I have created a module as following and named its file as calc.js djConfig.js var ...
0
votes
0answers
21 views

dojo programmatic coding or declarative coding for 2.0 compatibility?

We are coding most of the things in our project in declarative way and the event handling is done in tag or loaded in .js file. Declarative way in the code: <input id="testid" ...
0
votes
0answers
12 views

Dojo 1.6 how to catch drag and drop 'inserNode' events

Trying to dynamic change DND container's height but seems not working. assigned_list holds all insertions, I try to catch nodes using following method bu failed, firebug never go through this method ...
0
votes
1answer
19 views

Adding dgrids with variable widths to TabContainer

I'm populating a TabContainer with grids (Dojo 1.8, dgrid) that are showing the results of a query for different datasets. Each tab is the result of a single dataset. The different datasets will have ...
0
votes
1answer
25 views

unable to get value from dojo textbox after button onclick

I am using the dojox/mobile/button on a view to get input values which I want to then submit to a database table. I am unable to get the values as I expect to and also would like to know if anyone has ...
0
votes
1answer
14 views

dojo declare constructor and this object and safemixin

I am reading an application code that written dojo. define(["dojo/ready", "dojo/_base/declare"], function(ready, declare) { return declare("application.main", null, { constructor: ...
0
votes
0answers
18 views

Browser not firing drop event

I have simple page wrapper div with ID "wrapper". Using Dojo/on I have connected events "dragover" and "drop". // onevent is dojo/on onevent query("#body"), "dragover", (e) => e.preventDefault() ...
0
votes
1answer
13 views

construction of the dojo.store.Memory in dojox.mobile.ComboBox

I have this in my App.html <div data-dojo-type="dojox.mobile.Pane"> <input id="codice_cliente" type="text" data-dojo-type="dojox.mobile.ComboBox" ...
0
votes
0answers
16 views

how to package dojo for javascript maven tools?

I am looking for the best packaging approach for a RIA written in java/javascript, and struggling with the javascript part. I have found the JS RIA maven archetype at ...
0
votes
1answer
19 views

Getting global handler to all AJAX calls in dojo

I need to invoke some common methods before an AJAX call is made and after the AJAX call (before the actual handler method is called) is success. I'm using dojo.aspect to achieve this. This is my ...
0
votes
0answers
17 views

Dojo requesting already inlined Dijit templates --Google Closure build

I already asked this question on StackOverflow, the solution was supposed to have been patched in commits : 89bf2786e322323293f52917223aa24db7649951 and 783da4030bf9e727bfb4fc874b59f77521545264 ...
1
vote
0answers
18 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 ...
0
votes
1answer
14 views

When should I use dojo.data.ItemFileWriteStore's _saveEverything function?

I am using dojo 1.6 version. My understanding is: if store._saveEverything = saveCompleteCallback; is defined, then the callback function saveCompleteCallback will be called only when store.save() is ...
0
votes
0answers
28 views

Can Access CSS File By URL, But Not From HTML

I have a Spring App with ThymeLeaf and Dojo that is causing me a problem. The CSS files are showing up aborted in Firebug when I reference them from my HTML file. However, when I go directly to the ...
0
votes
0answers
15 views

Multiple dimension array into dojo datagrid

I need to create a dojo datagrid with values populated from a JSON file, I've managed to get the initial values in, however the data contains arrays of arrays, and I'm not sure how to get the data ...
0
votes
0answers
12 views

Dojo store.save() with a single PUT request

If I have edited several rows in my dojo datagrid and I call store.save() on its datastore, say dojo.store.Cache there is a PUT request for every row edited. But I want a single PUT request such that ...
0
votes
1answer
19 views

How to add search box to DOJO mobile heading?

Is there any way to add a search text box to dojox/mobile/heading(like the standard search box in IOS e.g)? Thanks!
1
vote
1answer
26 views

Difference between class and baseClass in Dojo? Or, when/how shall I use baseClass?

What is the actual difference between class and baseClass in _WidgetBase? Both of them will add class(es) to the top node of a widget. baseClass is said to be used for "state changes" within the ...
0
votes
0answers
20 views

how to over come the stop script error in the browser when rendering large chart data using dojo

I'm developing an application which involves complex charts. When trying to render large amount of data in the chart the browser became unresponsive and show the alert stating the stop script error. ...
0
votes
1answer
48 views

Resize icon in dojox.mobile.ListItem

I've some code to create item to add listitem dojo in my worklight app: var n = domConstruct.create("div", {innerHTML: "<div ...
1
vote
2answers
25 views

dojo AMD module methods in chrome chrome/firebug

Before AMD, we could use methods directly in chrome/firebug command line like:dojo.byId() or dijit.byId() etc. But in AMD form, how we will get methods available in a module in command line?
0
votes
1answer
16 views

Dojo datagrid with additional data

I want to create a dojo datagrid which has, in addition to all the fields in the datastore, a column that I want to populate manually. What's the best way to do this?
2
votes
1answer
16 views

How can I align MenuBarItem far right of a MenuBar?

I am programmatically creating a dijit.MenuBar. After adding several PopupMenuBarItem(s), I am adding a MenuBarItem labelled as 'Logout' and I want it to align right, far from the other Items. I have ...
-1
votes
1answer
47 views

Chrome doesn't render properly a page. It works perfectly in Firefox/IE

I'm having a problem with the layout of a page in Google Chrome (version 27.0.1453.110). This layout works perfectly in Firefox (21) and even in Internet Explorer (9), but not in Chrome. Basically it ...
1
vote
1answer
29 views

Does Dojo AMD loader ensure modules are executed only once?

In some existing Dojo-based app I am seeing a module using a singleton pattern of the form: define([...], function(...) { var MyClass = declare(...); if (!_instance) { var _instance = new ...
0
votes
0answers
45 views

Normal table to sortable table

I want to transform a standard HTML table into a sortable table using the dojo framework. I want your advice on how this can be done with less effort as possible. All I was able to found was this: ...
3
votes
1answer
31 views

Advantage of using dojo custom widgets over normal javascript function

I am new to Dojo. My requirement is to form a dynamic table based on json obtained from server,for this kind of use case people are suggesting Dojo's user defined widgets,but i can do this with ...
0
votes
1answer
23 views

Duplicated rows when sorting dgrid 0.3.6

I've been using dgrid 0.3.2 along with JsonRest to display tables of data. Recently, I've been looking at upgrading to dgrid 0.3.6 or 0.3.7. Things work mostly the same, but it seems with the newer ...
0
votes
0answers
24 views

Dojo 1.7.2 several files Flash uploader for IE with form data = One POST for each file submitted?

Hi All and first of all thanks a lot for reading me ! I'm using Dojo 1.7.2 with Domino 8.5 server to submit form data with several user selected files to a database. I'm using dojox.form.Uploader ...
0
votes
0answers
12 views

Dojo Editor Not loading properly in showModalDialog

Dojo Editor Not loading properly in showModalDialog - I am not able to open the editor in showModalDialog . Any soultions please. Thanks in Advance Ashok
0
votes
2answers
38 views

disable submit button after one click with spring dojo

i hav a form by which i submit data and using below code for validation. the validation is working fine . what i need is after clicking on submit i want to disable the button ...
0
votes
1answer
26 views

How to add items to a combobox in dojo?

I've a form with two combo boxes. one is normal and the other is dijit.form.Combobox. <select id="mySel"></select> <select dojotype="dijit.form.ComboBox" id="dsel"/> I'm able to ...
0
votes
1answer
37 views

Struts2 dojo submit button render issue

I have struts2 with dojo submit button(ajax call) in dialog window.I want to retain the popup window after submit the button.but its not retain the same form. <div id="dialog-form"> <form ...
1
vote
3answers
43 views

apply css style to multiple nodes having the same css class using dojo

I have been applying or changing the style for a CSS class in the javascript script, having a dojo f/w, like this, this.sidePanel = query(".sidePanel", document.body())[0]; ...
1
vote
2answers
20 views

Dojo EnhancedGrid Row space height and word wrap

I love the dojo enhancedgrid, but am having a few issues: What I am trying to accomplish: I have a description column in my grid that can range from 10 characters up to 300 characters long. I ...
0
votes
1answer
15 views

Using Dojo's onHashChange without topic?

Dojo's tutorial calls for using topic.subscribe to catch the onHashChange event - use of topic is heavy and is frowned upon within the organization, is there any way I can use dojo/on to catch and ...
0
votes
1answer
19 views

multiple submit widgets, detecting which button was activated

I'm using dojo 1.9. I have a form with 2 submit buttons, and I want to detect which button was activated, causing the form submit event. In the api, I found that widgets have a focused property that ...
0
votes
0answers
13 views

replace rows in DGrid (dojo)

What is the right way to replace the rows in a DGrid widget? Calling #renderArray with new data simply appends the new rows to the existing. When I try to use the "store" property and re-setting the ...
0
votes
1answer
18 views

How do I vary the Dojo TabContainer tabs based on my fields in Django?

I have a form in Django. I want each field in the form to be a tab in a Dojo TabContainer. This is what I'm doing: <div data-dojo-type="dijit/form/Form" id="parameters_form" ...
0
votes
1answer
30 views

javascript dojo toolkit module definition

This is my first dojo application in javascript. I have a problem about my module definiton. I am using CDN dojo file. I have created a new folder named dj to create my custom modules. My first ...

1 2 3 4 5 101