Data Grid module of Dojo Toolkit (a JavaScript toolkit).
0
votes
1answer
42 views
Dojo Datagrid - Get the row number
I am trying to retrieve the line number in dojo data grid. rowIndex function would not help me much because I need the 'line number' and NOT 'row number' when sorted.
The scenario:
I would like to ...
0
votes
0answers
9 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
1answer
50 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
61 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
57 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
65 views
dojo 1.7 QueryReadStore parameters
I am new to Dojo, I am using QueryReadStore as the store for loading my TreeGrid, working fine. But the QueryReadStore appends some paramters to the url, parameters like parentId, count, sort etc., I ...
0
votes
1answer
56 views
Dojo/connect “onKeyPress” ENTER event works locally but not on test server
My onKeyPress ENTER key event works when deployed (in IE) on my localhost but does not work (in IE) when deployed on the test server. On the test server the ENTER event works in FireFox and also ...
0
votes
2answers
75 views
dojo lazytreegrid data from server
I am new to dojo, and I am trying to use lazytreegrid, I found this example code in the documentation
http://dojotoolkit.org/reference-guide/1.7/dojox/grid/LazyTreeGrid.html
But I want to load the ...
0
votes
1answer
51 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 ...
3
votes
1answer
63 views
Not able to add checkboxes to last column in dojo enhanced grid
I am creating the dojo Grid as below and I am using the indirectSelection plugin for creating a checkbox, as below, but by default the checkboxes will come at the first column of the grid. How do I ...
1
vote
2answers
77 views
Dojo 1.8 fill an EnhancedGrid with Objects and SubObjects of a provided JsonRest
Is there a way to fill a Column of an dojox/grid/EnhancedGrid with SubObjects in a JSON Structure?
For example if i have a JSON-Row that is looking like:
{
id: 2,
name: ...
0
votes
0answers
21 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
111 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
23 views
Dojo jsonrest for no results found
I am using dojo Jsonrest for population data from the service to an Enhanced Grid which supports pagination and sorting as mentioned in below page
...
0
votes
2answers
242 views
Dojo Enhanced grid with pagination need to access number of rows in the page
i am implementing Dojo Enhanced Grid with pagination and i there is something called as items per page. 10 | 20 | 30 | 40 | 50| all.
Suppose i select 20 here in the enhanced grid pagination, how to ...
1
vote
1answer
38 views
DOJO json layout structure is not working
I have a json response like this
{
"listResponse":
{
"page":0,
"rows":10,
"total":9,
"items": [
{ "abbr": "ec", "name": "Ecuador", "capital": "Quito" },
...
1
vote
0answers
153 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
vote
1answer
169 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
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 ...
1
vote
1answer
229 views
multiple dojo DataGrid on same page not working
I have a requirement to display three dojo Datagrid in same page. Each data grid will use its own data stores to display the data.
I use JsonRestStore to query my REST service to display in the grid. ...
0
votes
0answers
150 views
Dropdown CheckedMultiSelect Combobox in enhanced grid dojo 1.5
I've been having a hard time trying to get the CheckedMultiSelect Combobox to work in dojox.grid.EnhancedGrid (in Dojo 1.5.2). On double click on a cell in the grid, I want to have a dropdown menu ...
0
votes
1answer
108 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
0answers
38 views
Apply Claro theme to dojox grid
I am trying to get a dojox data grid example working in my code.
I have added the grid to a content pane in a dialog. The grid appears but not with the claro style. The style is set in the html body. ...
0
votes
0answers
133 views
Dojo datagrid jsonrest response headers
I'd like to use custom headers to provide some more information about the response data. Is it possible to get the headers in a response from a dojo datagrid hooked up to a jsonRest object via an ...
0
votes
1answer
201 views
Dojo 1.8 Filtering Select auto suggest feature giving symbols in IE 8
Following is the behaviour of DOJO 1.8 auto suggest in IE 8
http://dojotoolkit.org/reference-guide/1.8/dijit/form/FilteringSelect.html
It shows special characters between the text in IE8.Check the ...
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",
...
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
0answers
120 views
dojox.grid.EnhancedGrid indirectSelection not preserving selection during pagination
I found some other post similar to this, but the answer did not help.
In my Enhanced grid, i have a pagination plugin as well as indirect selection plugin and even though my code sets the selection ...
0
votes
1answer
206 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
111 views
Issue in adding data to a lazytreegrid
I have a problem in adding a child node to the lazy treegrid.
for example,
I have a lazytreegrid loaded with the following data,
Country(which has children)
Cities (which has children)
(Got ...
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
2answers
85 views
Undo functionality in Dojo
I'm using an enhanced grid in Dojo and I would like to implement "Undo" functionality .
For example after editing a cell, adding/deleting a row the user should be able to revert that action.
Any ...
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
0answers
28 views
How can i add a record at specified place in Dojo Grid?
How can i add a record at specified place unlike in grid the newly added records get appended to the last record.
One way i am thinking is recreate the store with new record but by doing this the ...
0
votes
0answers
133 views
Does Dojo grids have dynamic grouping support?
By dynamic grouping support, I mean being able to operate on the same data set and display the data using different "group by" columns.
ExtJS grids have this ability, making grid creation very simple ...
0
votes
1answer
181 views
How to query on object type in dojo?
We can use dojo.query to get certain elements based of CSS selectors but how do we query on object types?
For example, get all the TextBox elements on the page and then use dojo.connect to bind a ...
1
vote
1answer
972 views
Dojo DataGrid export to excel
I have used exporter plugin the datagrid and have got the grid data in CSV format.
But I want to make this data to be downloadable in excel format. One solution is that I can send an ajax request to ...
0
votes
0answers
103 views
How to add checkbox to head of a TreeGrid in Dojo?
I want to add checkbox to head of a TreeGrid. The checkbox is shown in the rowSelector column and works on the top-level node in the TreeGrid. I tried 'type: "dojox.grid._CheckBoxSelector"', but it ...
0
votes
1answer
109 views
How to repopulate Dojo DataGrid?
I have a DataGrid displaying search info that is created and appended to my results pane div when I hit the search button. The problem is that when I hit search again the first one is still there so ...
0
votes
1answer
431 views
Is it possible to set column name dynamically on a dojo grid?
Is there any way to set a dynamic name for column header, for example in a formatter function!?
I'll have a popup menu on the grid and depending on the chosen option it should change the name ...
0
votes
0answers
54 views
Dojo : How to check the row of a Data Grid present in another Data Grid?
How can be check the existence of grid row in another Grid?
I wanted to show the selected rows from first grid to second grid.
When I select some rows from first grid, then it will be selected in ...
1
vote
1answer
316 views
dojo data grid to exel file
I have a question about exporting dojo data grid to excel file. I have made it work with csv file using the dojo exporter and some php code. However, how do I make it to save as excel file. I now ...
0
votes
0answers
756 views
getting row content from dojo.gridx it always shows the old data initially loaded
I'm trying to retrieve the data values stored in a dojo.gridx table as the relevant row is clicked. It works fine as long as the following function is called the first time, when that function is ...
0
votes
4answers
471 views
Dojo grid inside titlePane not getting painted until the browser is resized
I have an dojo enhanced grid inside a title pane which inturn in Tabcontainer. I am creating a tab container dynamically and painting the title pane which contains grid. For the first time the grid is ...
0
votes
2answers
111 views
SPACEBAR in Dojox EnhancedGrid
I'm using a dojox.grid.EnhancedGrid that has an editable cell. The SPACEBAR triggers the edit mode (which is an ok-ish approach, I guess). However, if I trigger the edit mode programatically (via a ...
0
votes
0answers
200 views
Get column name using column index in onApplyCellEditHandler
I am unable find info on how to get column or field name of dojo datagrid in OnApplyCellEdit event Handler.
My code is as given below
dojo.connect(dataGrid, ...
0
votes
1answer
201 views
How to keep focus if input is invalid in dijit.form.NumberTextBox?
I have a NumberTextBox in a grid cell. How do I keep focus if input is out of range or invalid? (such that user cannot click away from the cell)?
Thanks!
0
votes
1answer
1k views
How to get textbox widget inside grid to work property?
I have placed a textbox widget inside grid cell by using formatter. However, I cannot move my cursor around nor select text inside the textbox.
E.g.
http://jsfiddle.net/g33m9/69/
Does anyone know ...
1
vote
1answer
487 views
Dojo EnhancedGrid and programmatic selection
Here's my problem: in my application I have a Dojo EnhancedGrid, backed up by an ItemFileReadStore. The page flow looks like this:
The user selects a value from a selection list.
The item from the ...
0
votes
1answer
126 views
Refresh enhaced grid preserving client side filter
How can we refresh enhanced grid after a filter in applied, preserving the filter query??
doing grid.setFilter() clears the filter. Is there any way to access all active filters in grid to give like ...
