DojoX is a Dojo eXtended library — a part of the Dojo Toolkit.
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
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
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
1answer
20 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!
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 ...
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
1answer
11 views
Can't specify dojox.mobile.TextBox type as password programmatically
I'm trying to build a login widget for our system, so I'm building the inputs programmatically. The Username input is easy, but I'm having issues with the input rendering with the correct type. When ...
0
votes
0answers
30 views
dojo datagrid IndirectSelection also selects the disabled cells
By selecting all rows in this fiddle: http://jsfiddle.net/Hh8Ub/ you will notice that the disabled checkboxes (rows 1, 3 and 5) are also selected.
I've seen same behaviour in dojo 1.9
One way to ...
0
votes
1answer
27 views
How to create dynamic design dojo with data?
hi everyone i'm a newbie in dojo mobile,i want create some thing like this image but dynamic with data by code.How i can do this ? thanks for any help
0
votes
1answer
20 views
How to get dojo data grid cell in edit mode by default
I am looking to get dojo datagrid appear by default in edit mode. How can this be accomplished?
Or Can this invoked programmatically outside of grid?
0
votes
0answers
26 views
Dojox socket exception with node.js socket.io
I am Using dojo 1.8.3 release. Trying to use dojox socket with node.js socket.io at server.
client code is
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta ...
0
votes
1answer
30 views
Dojo FilteringSelect - update drop down list or manualy filter
I want to update drop down list in FilteringSelect after set displayValue.
I know that FilteringSelect chose first element from results after set displayValue, but when I open drop down list ...
0
votes
3answers
48 views
How to insert a div before another div?
This my HTML code:
<div id="contextToolBar" class="dijitToolbar xwtContextualToolbar" wairole="menubar" role="menubar" widgetid="contextToolBar">
<table ...
1
vote
1answer
70 views
populate dynamically created html table in dojo and javascript
in html i'm dynamically creating a table:
function createTable()
{
var tablecontents = "";
tablecontents = "<table>";
tablecontents += "<tr>";
for (var i = 0; i < ...
0
votes
1answer
24 views
Dojo charts, replace linear acceleration in animation
When using the chart module (here a barchart) defined in Dojo, there is the possibility to set an animation like this :
chart.addPlot('default', {
type: 'Columns',
markers: true,
animate: ...
0
votes
0answers
24 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
0answers
25 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
27 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
1answer
21 views
dojox fixed=“top” doesnt work, is this the right way to do it?
i generate my heading with javascript but it isn't fixed on the top. Firebug shows that there is no fixed="top" in the html code.
I do it this way. This is the way to do it, isn't it?:
var ...
0
votes
1answer
36 views
How to capture dojox.layout.FloatingPane resize event?
When FloatingPane change size, I would like to launch a function.
I think there is something with resizeHandle but not know how to do.
I use Dojo 1.8+.
Thanks
0
votes
1answer
58 views
dojox.charting.Chart SVG surface issue
I need to export a dojo chart to an image format preferably PNG. Unfortunality there is no in-built feature but I have found a way around for this. As dojo charts are based on SVG graphics:
I will ...
0
votes
0answers
13 views
Styling a Dojo EnhancedGrid NestedSort
I want to know if there is an option to tell the sorting icons to be visible at all times (not just when hovering over the column title of a DOJO Enhanced grid). If not, what is the best way to ...
0
votes
0answers
25 views
DojoX Calendar and booking: how to show non-working hours in another colour
The task is to create a booking user interface.
How to show non-working hours in grey? For instance, a doctor works every odd day from 8:00 to 12:00, so I need in a month (or week) view to show ...
0
votes
1answer
56 views
**DOJO** WidgetList and InlineTemplate is really slow when
I am having an issue with one of my custom dojo widgets.
I am using an MVC structure to build my widget and I am also using dojo's dojox/mvc functionality.
I have a template that has a WidgetList ...
0
votes
1answer
29 views
Change dojox.charting.Chart title after render
I was wondering if there is any method from which we can set title of a Chart after it is rendered. The title can be set initially while creating the chart object, example:
var chart = new ...
0
votes
2answers
60 views
Changing color on dojo charting ThreeD theme
I am displaying a graph using the ThreeD theme from dojo charting.
When I modify the data so I can show a different color for certain
bars in the graph, I lose the 3D look.
Default color for ThreeD ...
0
votes
0answers
24 views
Why does View.getShowingView() dont return the currentView?
after launching my app there is a command:
var currentView = dojox.mobile.View.getShowingView();
i "required" dojox.mobile.View but currentView never shows the currentView, it stops at the above ...
0
votes
1answer
80 views
How to create SwapView dynamically using Dojo
I am using Dojo v1.8 with Worklight; I would like create a SwapView dynamically in View, but I'm encountering problems...
HTML code:
<div data-dojo-type="dojox.mobile.View" ...
0
votes
1answer
106 views
Add empty row to dojox/grid/DataGrid
<div id="gridDiv"></div>
<button id="addRow" data-dojo-type="dijit.form.Button">Add Row</button>
require(['dojo/_base/lang', 'dojox/grid/DataGrid' , ...
0
votes
1answer
59 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
0answers
91 views
Dojo + Openlayers zoom map
i need your help
how to zoom using dojo+openlayers
i didnt find if dojo have zoom beside extent.
this is code i have :
<script>
var map;
var indonesia;
require(["dojo/ready", ...
0
votes
1answer
78 views
Dojo key press event is not working
I am using dojo to disable other keypress events on dojo.form.numberTextBox.
I am doing in this way
<input style="width: 100px" data-dojo-type="dijit.form.NumberTextBox" name="test" id="test" ...
0
votes
0answers
29 views
Change the legend icon on a dojox chart
I have a line graph on dojo and I added the Legend widget. Since it is a line graph, the legend uses a line to represent each series. I would like to change that icon to be a small circle in the color ...
0
votes
1answer
102 views
dojo custom widget won't call postCreate
I have a custom widget that is not working properly. It is being instantiated, but it will not call the postCreate function. I do not receive any error messages.
I have removed any extra code from ...
0
votes
2answers
121 views
Get column index in onresizecolumn of declarative dojox.grid.datagrid
In a declarative dojox.grid.datagrid, am using onresizecolumn in table tag.
onresizecolumn="columnResize(this.id,this.cellIdx)"
onresizecolumn calls a function. on resizing particular column ...
1
vote
1answer
65 views
dojo lazytreegrid is displayed differently in websphere portal 8
websphere portal 8 comes with default dojo 1.7.2, and this dojo documentation for lazytreegrid if for dojo 1.7 http://dojotoolkit.org/reference-guide/1.7/dojox/grid/LazyTreeGrid.html
But when I run ...
0
votes
1answer
116 views
Declarative dojox.grid.datagrid's header has onclick event?
Is it possible to have onclick in dojox.grid.datagrid's header.
I tried calling a function in header's onclick.. but it doesn't work.
<div class="claro" id="cvsd" name="dataGrid" ...
1
vote
1answer
68 views
Is there something similar to Dojo GFX in jQuery?
dojox.gfx (GFX) is a cross-platform vector graphics API that runs with dojo.
It helps to isolate your application from the many native vector graphics implementation differences across all modern ...
1
vote
1answer
52 views
Reading data from a CSVStore in Dojo
Let's say I have a CSVStore connected to an editable grid:
var csvStore = dojox.data.CsvStore({data: csvData, separator: ","});
this._grid = new dojox.grid.EnhancedGrid({
id: gridId,
store: ...
0
votes
2answers
51 views
Avoid decimal values in dijit/form/HorizontalSlider
In dijit/form/HorizontalSlider on change I am getting values in a textbox. The values are decimal, like 51.66777777. I want only 51.
<div id="horizontalSlider"></div>
<input ...
1
vote
1answer
199 views
How to use Spring Security username in Javascript
I am trying to access the Spring Source Security user variable ${username} in some JavaScript and it keeps coming back as an empty string. On a previous page, I am displaying the username with simply ...
2
votes
1answer
32 views
textIndicatorPrecision in dojox.dgauges using dojo
What is the name of the attribute in Dgauges to add a precision, it was textIndicatorPrecision in dojox.gauges, like noChange it's replaced by interactionArea.
I added an indicator to my circular ...
0
votes
1answer
60 views
Avoid adjusting dojox.grid.datagrid header width
Below is my declarative dojox.grid.datagrid. I want to avoid re-sizing the column's width. In the UI am able to do column re-sizing. how to avoid it
<div class="claro" id="customer" ...
0
votes
1answer
161 views
Display current value in the Classic Circular Linear Gauge using dojo
Is that possible to display the current value in the classic circular linear gauge like in the default circular linear gauge ?
Thank you.
2
votes
2answers
291 views
Struts2 datetimepicker size
I want to increase the size of the Calendar view because the default size is too small for my web application. I've tried to add a cssClass to the datetimepicker tag but it doesn't work, even if I ...
0
votes
0answers
95 views
Dojox Mobile Slider & AngularJS ng-model
I have html slider which's value is updatet with AngularJS' model:
<input type="range" ng-model="value1"/>{{value1}}
This works very well: When I adjut the slider the value is updated.
But ...
2
votes
2answers
48 views
RectangularRangeIndicator format like triangular using dojo
I'm trying to add an indicator to my vertical gauge but the format of the indicator is like a triangle, but I want it a large line.
This is JSFIDDLE example.
The code :
require(['dojo/parser', ...
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
1answer
74 views
The sudden change of the gauge in dojox.dgauges. not like in dojox.gauges
Is there a possibility that the needle is gradually changing value when is updating like in dojox.gauges
You can see in this example, when you press the button set 15
the value changed directly to ...
0
votes
1answer
33 views
Dojo: Enhanced Grid layout options to have sub columns?
I am trying to get an enhanced grid to look like:
As you see though in each row in the table, I will only display information for col1, Col2AA, Col2AB, Col2BA, Col2BB etc
Col2, Col3, Col2A, Col2B ...



