Data Grid module of Dojo Toolkit (a JavaScript toolkit).
Questions tagged [dojox.grid]
244 questions
0
votes
1 answer
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 above link to see the exact behaviour.
I guess the…

Abhishek Ranjan
- 911
- 1
- 14
- 29
0
votes
3 answers
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",
type: dojox.grid.cells._Widget,
editable: false,
…

vincent.fxz
- 1
- 2
0
votes
1 answer
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 when clicked, i.e

Alexander Torstling
- 18,552
- 7
- 62
- 74
0
votes
1 answer
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 a new grid gets appended and it doesn't end up…

FuegoFingers
- 2,181
- 6
- 27
- 36
0
votes
1 answer
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 displayed in the column header.

Ivo Silva
- 350
- 4
- 20
0
votes
1 answer
Dojo data grid to Excel 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 about pear and some other libraries, but there has to…

setlio
- 726
- 2
- 13
- 32
0
votes
2 answers
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 link in an adjacent cell) or by double-click and I…

Daniel Platon
- 583
- 7
- 16
0
votes
1 answer
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!

Michael
- 161
- 2
- 13
0
votes
1 answer
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 how to fix this?
Thanks

Michael
- 161
- 2
- 13
0
votes
1 answer
Dojo EnhancedGrid: How to get the index of selected column?
If I click on the column header of dojo enhancedgrid, the whole column is selected.
I want to know the column index of such selected column.
Thanks for help in advance.

mintuhouse
- 449
- 5
- 16
0
votes
2 answers
How to make dojo datagrid to have editable row data, sortable and pagination
I have a dojo datagrid with datastore of json type. I have already accomplished to display data fetched from mysql database. What I would like to do is to allow pagination, make row data editable and update the edited data to the database. Here's…

rockstar
- 1,322
- 1
- 20
- 37
0
votes
1 answer
Dojo Enhaced Grid - JsonRestStore, Grid is not showing data when use JsonRestStore
I have a json like
[
{
"switchType": {
"name": "sansayv15",
"perform": false,
"createBy": null,
"createDate": null,
"intId": 1,
"id": 1
},
…

Ravi Khakhkhar
- 1,924
- 1
- 18
- 25
0
votes
2 answers
Refresh Enhancedgrid with dojo.data.ObjectStore
I'm using 1.7.2
When I add an item to objectstore I write
dataStore.newItem(data);
Then I tried saving dataStore.save() and then dijit.byId(gridId)._refresh()
But browser hangs up.
I also tried re-assigning same store again to grid after adding…

Ravi Khakhkhar
- 1,924
- 1
- 18
- 25
0
votes
1 answer
How to query for a value when there are multiple values in a single cell (dojo)
I have a grid where in one column cell has multiple values for example
lets say i have a column called "Type" in one of the cell there are values like A, B, C...
i am querying the grid like this
this.Grid.query = { "TYPE": e.row.data.type…

Newbie
- 361
- 2
- 15
- 33
0
votes
2 answers
free text search box for dojo enhancedgrid
Is it possible to have a free text search box on top of a dojo enhancedgrid, which I can type in text and it immediately filter out rows that do not contain the text?
I am aware of the filter plugin and that is not what I prefer.
Thanks so much!

qwertyl
- 87
- 2
- 10