Questions tagged [dojox.grid.datagrid]

Grids are familiar in the client/server development world. Basically a grid is a kind of mini spreadsheet, commonly used to display details on master-detail forms. From HTML terms, a grid is a “super-table” with its own scrollable viewport.

Grids are familiar in the client/server development world. Basically a grid is a kind of mini spreadsheet, commonly used to display details on master-detail forms. From HTML terms, a grid is a “super-table” with its own scrollable viewport.

See: http://dojotoolkit.org/reference-guide/1.7/dojox/grid/DataGrid.html

360 questions
1
vote
0 answers

dojo Datagrid filter select that allows user to select from a list of values in the column

I m using dojo datagrid which contains 2 columns "name" and "age" , the requirement is to provide the filtering option on the "name" column in the datagrid. so that user can search and select his/her name from the list of values ,by clicking on…
1
vote
0 answers

How to use Dojo dgrid in jsp table?

I am trying to implement dojo dgrid in my existing jsp table. I tried the example give here, and it works, but the issue is I am using a table, and I want to generate my JSON data in a way that it stores in , so it's properly aligned. I also checked…
user2798227
  • 853
  • 1
  • 16
  • 31
1
vote
2 answers

How to hide dojox grid selected row dashed borders

This is dojox.grid.EnhancedGrid. How can I hide the green dashed-square (around the check box) showing that this item is presently selected by keyboard, usually used for keyboard navigation? The image is taken from:…
Yellowcake
  • 116
  • 3
  • 9
1
vote
1 answer

Get dojoxGridCell value

I have been struggling to get the value of a dojoxGridCell. I have read through some helpful documentation by dojo here but am so far unable to get the value of the cell. I am utilizing AutoHotkey Unicode 64-bit v 1.1.25.01, here is what I have so…
1
vote
1 answer

Dojo - Rows disappears from DataGrid after calling sort

I've came across an issue with DataGrid when sorting the grid. With this isseue, all rows disappears when we execute this sequence of actions in one call flow: add one Item to the grid's store. delete one item from the grid's store save store call…
Kristoff
  • 326
  • 2
  • 13
1
vote
1 answer

How to obtain this ref to declaring class from Dojo gridx detailProvider (Dod module)

Using the Dojo framework. I have a 2 nested grid. Grid 1 uses a Dod with a detailprovider to load details on demand when one clicks a expand icon. When pressed this opens a nested grid. I need to track changes made in both grids. In the declaring…
Mat0
  • 1,165
  • 2
  • 11
  • 27
1
vote
1 answer

Dojo - How can I add checkbox as a column in my DataGrid

Im just a newbie in Dojo. I have a datagrid(which I just copy paste in another tutortial), what I need is a checkbox as a column in this DataGrid. How can I achieve that? Thanks in advance for any help. Below is my full html code:
1
vote
1 answer

Vertical scroll bar for dojo enhanced grid

Required scroll bar to be display on the grid on first load...It is working in chrome, but not in IE... For this, I require an event when data loaded to the grid is complete. I tried 'onFetchComplete' event, it is called multiple times because it…
S.Lishanth
  • 25
  • 9
1
vote
1 answer

Dojo EnhancedGrid: how to get selected column?

In dojo enhanced grid, is there any way to get the selected columns? Currently I can get selected rows by using grid.selection.getSelected() but I don't know how to get the selected column.
Hery
  • 7,443
  • 9
  • 36
  • 41
1
vote
2 answers

dojox.grid.DataGrid Custom Cell?

who knows a way to create a custom cell fora dojox.grid.DataGrid? I of course could use the get and formatter properties of the layout, but this is not a really reusable solution! Thanks for your input! heinrich
Erik
  • 11,944
  • 18
  • 87
  • 126
1
vote
2 answers

Sort Dojo store items

So, I have a dojo script wherein I'm pushing 4 rows into a data grid. Something like this, var data = { identifier: "id", items: [] }; var data_list = [ { col1: "normal", col2: false, col3: 'Cut are not…
HeXMaN
  • 113
  • 1
  • 11
1
vote
2 answers

dojox.grid.DataGrid - onStyleRow needs update? (dojo 1.2.0)

we are using a dojox.grid.DataGrid in a jsp.