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
0answers
2 views

dojo dgrid tree, after tree expand cells can be changed

recently I have met a problem when i do some dojo dgrid exercises. First of all, i have a dgrid with tree and editor, by double clicking cell, this cell can be changed, i.e. it uses editor widget of ...
0
votes
0answers
6 views

Preload all children for dojo dgrid

So I'm a first time user of dgrid, and I'm currently building my tree grid like this: var SelectionGrid = new declare([OnDemandGrid, Selection, Keyboard]); var myGrid = new SelectionGrid({ ...
0
votes
0answers
5 views

Issue including 'dojo.js' in the file which is loading dynamically into contentPane

I am creating a dynamic tab/contentPane as below in home.xhtml file.In order.xhtml file i am including dojo.js as below.which is already included in home.xhtml.so i am getting 'Error: ...
0
votes
1answer
13 views

Dojo fails upon use of javascript

I have a dojo scrollablePane in my app which functions fine when the app first loads. However, my html file has an onclick function which triggers a JavaScript function which eventually calls ...
0
votes
1answer
13 views

why does my dojo heading overlay my roundRectList?

I generate a scrollableview with a heading and a roundrectList inside. Everything works great but the heading is not fixed so i replace the addchild for the heading with a addFixedBar. Now the heading ...
1
vote
2answers
27 views

How to send an Zend Form with Dojo and XHR by pressing Enter

First, the things I use: I am using Dojo 1.6 and Zend Framework 1.11.5 - and no, I will not update now. Second, my situation: I have a Zend_Form with enabled Zend_Dojo support. I am creating the ...
0
votes
0answers
13 views

how do i make my dojo mobile div zoomable?

I already have a dojo scrollable view div with a object inside. when i view the div i want that div to be zoomable with the pinch to zoom gesture, how do i do that? <div id="divSvgView" ...
0
votes
1answer
17 views

Dojo AMD loader not working in Domino 9.0

When I put this on my Form (not XPage): <script src="/xsp/.ibmxspres/dojoroot/dojo.js" data-dojo-config="async: true, parseOnLoad: true"></script> calls like this: ...
0
votes
0answers
6 views

Reset in Dojo slideshow with Itemstore

I'm Working with Dojo slideshow on a project. Currently scenario is I need to update the slideshow as per user selection in multiselect. I've completed it successfully, with the help of this awsome ...
0
votes
0answers
17 views

CatmullRomspline not giving any output

I tried using the following code in cesium sandcastle to create a spline from Philadelphia to Los Angeles. //catmulrom spline. var controlPoints = [ {point: new ...
0
votes
0answers
27 views

Using ValidationTextBox in Dojo with maxlength high hangs the entire UI

I am using ValidationTextBox in Dojo which has the maxlength as 180, now when I quickly type all the character at once it hangs the entire UI. E.g. keep the character "p" on your keyboard pressed ...
0
votes
0answers
11 views

summary row for a grid in dojo

I Am looking for a Summary row or a Footer row for a grid where i can display total value of all column ,This footer row should not get scrolled(Virtically) . Please Correct me if i am wrong .A ...
0
votes
0answers
18 views

Dojo(1.7): Is there anyway to stop the browser from auto scrolling to newly created widget?

Does anyone know how I can stop the browser from auto scrolling to newly created Dojo EnhancedGrid once its generated? I have code that dynamically creates a new EnhancedGrid when some data is ...
0
votes
2answers
29 views

Reference type values and initialization

I'm not a guru at JS. Today I was told during a code review that for the following code below, Reference type values need to be initialized in the constructor which means change this somehow referring ...
0
votes
0answers
17 views

dojo pattern - when to use set/watch and when to use notify/observe?

I'm struggling with a MVC pattern around Stateful objects and Observable stores. I can't find clarity on when to use one over another and mixing them isn't as clean as I'd hoped. Any Ah! insight ...
0
votes
0answers
38 views

Worklight 5.0.6 dojo 'onclick' event not working in chrome

When trying our worklight application in both firefox and chrome we noticed that on chrome the onclick event on an item of our EdgeToEdgeStoreList does not work. In Firefox the onclick event does ...
0
votes
2answers
25 views

Remove elements by class name with dojo

How can I remove all elements found by a class name. I want to do this using the dojo framework.
0
votes
1answer
39 views

100 is showing as 10,000% NumberTextBox

I set the constraint to use type set to percent, a value of 100 is showing up as 10,000% once the NumericTextbox renders <div id="Percentage" data-dojo-type="ourcompay.NumberTextBox" ...
0
votes
0answers
12 views

How to use a dojo datagrid filter to query numeric values

I want to use the dojo datagrid filter method to display all rows that have a value for the MEASURE column greater than 5. How would I specify the JSON for the query filter?
0
votes
0answers
13 views

Cannot Set currency constraint from within custom widget

I'm testing out my custom control and this works fine in regards to the currency being set and it showing a $ in front of the value when it renders in the textbox: var currencyTextBox = ...
0
votes
1answer
25 views

Percent constraint changing periods to commas

When I do this: var percentTextBox = new PercentTextBox({ type: "value", name: "percentEntry", id: ...
0
votes
1answer
35 views

New to DOJO dojo not loading

I am new to dojo. I have tried to set up a sample Dojo page, but Dojo components are not loading. Instead I get the following error ReferenceError: dojo is not ...
0
votes
1answer
12 views

Enable scroll on dojo dijit.form.Select

I have a dijit.form.Select with 31 options. The options goes up to the end-of-page. How can I enable scroll so that the drop down doesn't expand down but shows scroll button?
0
votes
0answers
24 views

dojoConfig 1.9 - dojo/html and dojo/date/stamp 404 (not found)

This is my first time using Dojo. My (striped down) dojoConfig looks like this: var dojoConfig = { async: true, packages: [ { name: "dojo", location: "js/dojo_1.9.0/dojo" }, { ...
0
votes
1answer
41 views

Can I open a specific entry in a dojo accordion?

I want to put links in the left navigation of my application that open an xPage and select a specific accordion entry. Not sure how to do this Any thoughts?
1
vote
2answers
37 views

Dojo instances of same widgets are not saparated

I have built a Dojo Widget for creating a list by entering values. the widget code is: define(["dojo/_base/declare", "dijit/_WidgetBase", "dijit/_TemplatedMixin", ...
0
votes
1answer
31 views

Inherting dojox.mobile.View and using _TemplatedMixin

Goal: I want to create a dojo widget with a separate template that inherits dojox.mobile.View. //Javascript define([ "dojo/_base/declare", "dijit/_TemplatedMixin", "dijit/_WidgetsInTemplateMixin", ...
2
votes
1answer
47 views

How to tell Chrome, please use local javascript from the browser for every site or any actions? Similar to Opera

I am using Chromium / Google Chrome browser in my Ubuntu desktop. Now for some testing reason, i need to run this javascript from browser not from the website server javascript code. Is there any ...
1
vote
1answer
14 views

Dojo:how to find if the widget has focus in dojo

how do I find out if my custom widget has focus in Dojo? i have dojo editor i wnat to know if the editor has already focus or not?
0
votes
0answers
12 views

dojox.charting.Chart setDir does not work

I need to set dir of dojo chart to rtl (right to left) but it is not working. The chart is generated by following code: require(["dojo/ready", "dojox/charting/Chart2D", "dojox/gfx/utils", ...
0
votes
0answers
19 views

Open Dijit Menu on KeyPress?

I need to make my application accessibility compliant. I have a menu which opens at the top right corner of my container div when the user clicks on the div. I need to make the menu open when the user ...
0
votes
0answers
18 views

Dojo chart won't display after addSeries

I am trying to create a chart in dojo. The issue is, as soon as I try and add any data to the chart, the chart renders blank (no errors). Code: var cPosition ...
0
votes
0answers
14 views

Dojo - prevent keyboard focus on slider

I have a web application that incorporates a Dojo horizontal slider. The web app also captures direction key (right/left/up/down) events for controlling something else. If a new value for the ...
0
votes
1answer
86 views

Links/Clicks not working in Firefox after Using the Back button on an XPage

I'm finding that XPages I have, when loaded in Firefox, have an odd quirk that I can't seem to get around. On my XPage, there is a viewPanel, in which one of the columns is defined as such: ...
1
vote
1answer
31 views

In Dojo, why require() a module that's already been defined()?

I'm looking at a JavaScript snippet written by another person which says, define( [ "dojo/a", "dojo/b", "dojo/c", ..., "dojo/z" ], function(a, b) { ...
0
votes
0answers
23 views

onkeyup not working with spring dojo

i hav this code <form:input path="emailId" id="email" placeholder="Email ID(Username)" onkeyup="return checkusername();" autocomplete="off"/> before appying dojo to this above code ...
0
votes
0answers
16 views

Value is not persisting inside dijit.form.TimeTextBox inside a grid

I have a requirement where i have to fetch values inside a dijit.form.TimeTextBox inside a grid on an event which i am able to do successfully. But the issue is when i click on the column the data is ...
0
votes
3answers
35 views

How to surround element with div

How to surround element with div tag in dojo? <button>Testing</button> : <div> <button>Testing</button> </div> <div>Testing ...
0
votes
0answers
14 views

passing a “custom” handler to a DOJO class and executing with vars provided by the destination function

I have an app where I'm using a custom widget lets call it controller.js and it has it's template/layout and then I have data model that it self is a stateful class where I have written a basic visual ...
1
vote
0answers
45 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
1answer
38 views

Add item to top of the dojo tree

Hi folks I'm using dojo tree with ForestStoreModel and ItemFileWriteStore. I'm seeking some out of the box way of adding tree items to the top of the Tree root. The default behaviour is to add items ...
0
votes
1answer
21 views

dojo tabbar programatically created but not fixed at the right position

i created a dojo tabbar programmatically and set the fixed:"bottom" attribute but the tabbar is created below the existing document and not fixed at the bottom of the window. After i have done a ...
0
votes
0answers
20 views

refresh item dijit Tree

I have a problem with add/delete item in my tree (dijit.Tree). When I add an item in my tree: this.model.store.objectStore.add(item); this.model.newItem(item, parent); var nodes = ...
0
votes
1answer
31 views

using socket.io with dojo MultipleDefine error

I am trying to develop a web app. I already have working code where socket.io is used to communicate between the server side and client side. Now, I want to write the interface using Dojo, but the ...
0
votes
1answer
21 views

dojo: How can I inherit from a window class and make a custum one containing additional stuff?

Can I inherit from a window class in dojo 1.8 ? I want to make my custom window with some additional elements in it. It will be very useful because I need to reuse it many times.
0
votes
0answers
38 views

Even basic DOJO not working with JSF (2.0). No luck

I am very new to Dojo and was trying a tutorial on DOJO with JSF. I went through numerous link to understand how to integrate DOJO with JSF. DOJO version: 1.9 JSF Version: 2.0 with JSP I wrote a ...
0
votes
1answer
57 views

$(“#id”).val() return option text for a dojo.filteringselect object

We have a dojo filtering select object but have to validate by jquery. Now the problem is var value= j("#filteringSelectId").val(); value only returns the text of selected option instead of the ...
0
votes
1answer
27 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
30 views

Adding a message icon to Dijit Dialog

I am new to Dojo and I am trying to create a (dijit) Dialog pop up that displays a message and an icon. I am doing this programatically and I have managed to create the Dialog but I have not been able ...
3
votes
1answer
64 views

prevent form submit by pressing enter key on struts-dojo autocomplete

I am trying to alter enter event for struts2-dojo autocomplete, where inseted of submitting the form it should do some of my jquery work. I tried... <s:form action="EmpAction"> ...

1 2 3 4 5 99