Tagged Questions
0
votes
0answers
13 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
0answers
17 views
Issue clicking a button within a Dojo Datagrid in Firefox
I have a button in one of my datagrid columns. When the button is clicked, an action is fired. This works fine in Chrome.
But in Firefox, when I click on the button the first time, it will select and ...
0
votes
0answers
24 views
dojo datagrid column resizing effecting other columns
I have a grid in which the columns can be resized automatically. In the same grid I have two types of columns- one that can be made scrollable and the other which can not.
When I try to resize any ...
1
vote
3answers
64 views
Row Selection in Enhanced Grid
I am new to Dojo and i came across a problem that has me completely stumped. I am creating a data grid in Dojo with the Enhanced Grid .
Each row in the grid has a checkbox with which the row can be ...
0
votes
1answer
48 views
Display dijit toolTip with Dojo DataGrid and JSonRestStore
Is there a more efficient way for displaying a tool tip once a cell is hovered? Using the structure attribute to format the datagrid, is there a way to use formatter to display a dijit toolTip rather ...
0
votes
1answer
59 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' , ...
2
votes
1answer
56 views
not able to call a function on pagination dojo enhancedGrid
I tried all the possible ways but it's not working.
I want to call a function when I move to another page in a dojo dataGrid (during pagination). I tried the below code, but it's not working...
...
0
votes
1answer
68 views
when i move to next page in the dojo dataGrid, Rows are automatically got selected(the rows which are selected in first page)
In my dojo dataGrid if i select 7th and 8th rows for example in the first page and if i move to second page by using pagination feature. The rows(7th and 8th row which are selected in first page) are ...
0
votes
2answers
93 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 ...
0
votes
1answer
80 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 ...
0
votes
1answer
78 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
37 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
1answer
236 views
Set dojox.grid.datagrid header column width dynamically
I have a declarative dojox.grid.datagrid with initial header column width. And i have a textbox. my need is
In UI, if user enters any value to textbox, that value should be set as the dynamic width ...
0
votes
1answer
48 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
118 views
Master-Detail relationship using DataGrid and Form widget in Dojo 1.8
I have a Grid that using dojox.data.JsonRestStore as store. I want to edit data by using widget Form (dijit.form.Form). Implement dojo/on instead of dojo.connect for binding the grid and form.
here ...
0
votes
0answers
20 views
Dojo dGrid Paginate with DnD
I have two doubts:
Is it possible to use Paginate and DnD at the same time?
Is it possible to use Paginate, DnD, Async at the same time?
I try to do both examples, following dgrid examples, but ...
0
votes
1answer
110 views
Dojo 1.8 grid inside tab
I'm newbe in Dojo, I just create a layout index.php with tab container and a tab calls list.php:
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
...
0
votes
0answers
43 views
How to dynamically add item to a Dojo AndOrReadStore
I have a Dojo(1.7) data grid backed by an AndOrWriteStore data store. Currently, the datagrid is static i.e. the store gets initialized once from a JSON datasource and the grid gets populated on ...
0
votes
2answers
79 views
Dojo DataGrid: Doesnot sort images in a column
I have written a code for dojo datagrid column which contains images.
Code:
formatter: function(cellValue, rowIndex){
if(data.items[rowIndex].status == "COMPLETED"){
return "<img ...
0
votes
1answer
39 views
Dojo grid Bool column
so I added a check column to my grid with dojo
<th field="selectStudent" width="5%" cellType="dojox.grid.cells.Bool"
editable="true" alwaysEditing="true">Select Stdent</th>
...
0
votes
1answer
51 views
Dojox.grid.DataGrid with empty Data
My problem is that the datagrid does not appear I need it to be empty so I can add items to do a relation with a existing FilteringSelect Formatter.
function formatter1() {
var x = new ...
-1
votes
1answer
140 views
Dojo datagrid not updating data in dialog box
I'm having problem fixing this issue. So I have a search feature, refresh data button and a datagrid inside a dialog box. The first time it loads up, the data are showing correctly via .xhrGet and ...
0
votes
0answers
37 views
Unable to select all when clicking on a editable cell in enhanced grid
I am using DOJO 1.5 to create an enhanced grid. I am unable to get the cursor on an editable cell when I click it. The cell opens up as editable but I have to click again inside the box to get a ...
0
votes
1answer
197 views
How to display JSON data in Dojo DataGrid using JsonRest and ObjectStore if JSON is wrapped in a Array
I am using Dojo 1.6 to render a simple DatGrid. Only problem I faced is similar to dojo 1.6 DataGrid cannot display lists?
The solution here along with reference from here ...
0
votes
1answer
172 views
Focusing or selecting the row, after grid load
I have a jsp page with button.
On clicking of the button, it creates a dojo grid dynamically.
After grid gets loaded, am iterating through the grid and if particular value is there, the whole row get ...
1
vote
1answer
167 views
Updating Dojo Enhanced Grid Row Style - Post Store Fetch
Using Dojo I've setup a grid which links to a data store. After the grid load I've got a connect function which loops through the rows and sets the row text colour based on the value of a cell. This ...
0
votes
1answer
126 views
Loop through Dojo DataGrid and tie field name values to an array
I have a data grid that I want to use for a file list and if that file already exists in the data grid (store) I want it to just give them a dijit dialog box stating that the file already exists. My ...
0
votes
2answers
124 views
Dojo grid : loose selection after update
I have am currently using Dojo EnhancedGrid with Pagination, filtering and cell edition.
The problem is that in one page, I need to update another value when a cell is edited. When I update this ...
0
votes
1answer
142 views
Make Column in dojox.data.datagrid unsortable
I have a column that doesn't retrieve any data in my dojox.data.datagrid, however I have placed a custom clickable header. I want to disable sorting on this column so that the triangles dont appear ...
2
votes
0answers
152 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": ...
0
votes
1answer
107 views
Creating multiple grids in dojo
Suppose I have multiple sources for which I want to have a dojo-grid and populate by their data.
When one source is selected, I am able to create and populate the grid. But when it comes to the ...
0
votes
1answer
163 views
Dojox datagrid with QueryReadStore virtual pagining issue
I am using dojox.grid.DataGrid along with dojox.data.QueryReadStore. I have the following code on client side:
var store = new dojox.data.QueryReadStore({url:"<?php echo ...
1
vote
2answers
132 views
How to close dojox.grid.DataGrid
I have a grid that populates from a search event and I'd like the option of being able to close the grid by simply adding an X in the top right corner, similar to how you close any browser or window. ...
0
votes
1answer
120 views
dojo grid sorting and RESTEasy JAX-RS
Dojo grids implement sorting by by issuing requests to REST webservices like so:
GET http://server/request?sort(+id)
Where sort(+id) is the direction (+/-) and the column to sort on.
Currently I'm ...
0
votes
1answer
105 views
DataGrid returning null selectedItem
I have a dojo (1.8.1) DataGrid where I cannot retrieve all the selected items in the DataGrid (roughly 171 records in the grid). The problem is that some of data returned to selectedItem are null.
...
0
votes
1answer
269 views
How to hide a column in a dojo datagrid dynamically?
I am currently using dojo 1.7. My requirement is that i need to display one column in a grid dynamically based on a particular status. Onload the column should be visible in the grid. But if i am ...
0
votes
1answer
109 views
How to add more than one buttons in to a dojo grid cell
I am new to dojo, and I am trying to put some buttons into a datagrid cell. I read the docs and succeed to put one button into the grid using formatter:
{
name: "oper",
field: "id",
...
0
votes
0answers
230 views
How to enable enter key in dijit.form.Textarea that's inside DataGrid?
I have Textarea inside DataGrid but when I select it and try to add lines to it with enter key - nothing happens. Is DataGrid catching focus or key press events? How I can disable or bypass it so that ...
3
votes
1answer
1k views
Widgets inside dojo dgrid
Our company moved from dojox/DataGrid to dgrid some time back. Now we are finding out, dgrid doesn't seem to support dijit/dojox widgets out of the box.
dojox/DataGrid has a formatter() that can ...
0
votes
1answer
205 views
Formatter with callback in Dojo DataGrid
I'm trying to add a custom formatter to a Dojo DataGrid. This formatter is as far as I understand supposed to return a string with html for presentation.
I want to render a link with a js callback ...
0
votes
0answers
47 views
Can I use an arbitrary XML source for an XML store to populate a data grid in Dojo?
I am using XML data from a third-party application which I want to display in a data grid.
Here is a small sample:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Entities ...
0
votes
2answers
111 views
DataGrid shows strange Checkboxes below heading
i've got a problem displaying a datagrid using dojo.
Populating the grid with data provided by a ItemFileReadStore works fine. But the result looks like this:
The two checkboxes below the ...
0
votes
1answer
171 views
Insert a Loading Message in DataGrid
I'd like to show a loading message (Loading...) that shows while the datagrid is being populated.
It would show when the search button is clicked and disappear when the grid results have populated.
...
0
votes
1answer
169 views
GSP Access to Controller Results
I am using the Dojo plugin for Grails to populate a dojox.grid.DataGrid object. Right now my controller action associated with this grid renders the JSON that defines the grid contents. That works ...
1
vote
1answer
347 views
How to use a dojo datagrid with local json data
I'm trying to build a datagrid that user can edit, add, delete entries from that is stored in a JavaScript variable as json. I have it working as a repeat but it is a lot of work to maintain. When I ...
1
vote
2answers
449 views
Disable or enable edit for selective cell in dojox data grid
How to disable or enable edit for selective cell in dojox data grid i.e
Imagine I have two columns (A, B) in a data grid. I want column value of B to be editable based on the value of column A. I ...
0
votes
1answer
244 views
Not coming out of inline editing in Dojo DataGrid [duplicate]
Possible Duplicate:
Dojo IE DataGrid inline editing
The cells in the grid in the following jsfiddle are editable but I am :
not able to come out of the edit mode when I double click on ...
1
vote
0answers
127 views
Select an item from Dojo Grid's store and display one of its attributes (array of objects) on grid
I have a Dojo EnhancedGrid which uses a data store filled with the following data structure:
[
{ id: 1, desc: "Obj Desc", options: [ { txt: "text", value: 0 }, { obj2 }, { objn } ] },
{ id: 2, ...
0
votes
1answer
209 views
Displaying data in dojo grid
I have a hash map dataFields = {"element1":1,"element2":2,"element3":3} and I am trying to display the data in a dojo grid. However, when I set up my data store like:
var data = { identifier: ...
1
vote
1answer
233 views
Dojo IE DataGrid inline editing
I have enabled inline editing of cells in DataGrid and it is working fine all browsers except IE.
The problem is that after double clicking a cell and performing changed in values of cell, I have to ...

