GridX is the next generation of dojo grid(datagrid). It provides well modularized and plugin architecture.
Questions tagged [gridx]
23 questions
7
votes
1 answer
How to focus second Cell when add a new row in dojo.gridX
I am using dojo.gridx to display my values. Sometimes user can create a new row. So that I have added a new button when click newRow button, will call onclick method.
In that method has create new row codes. My codes are below.
addRow:
function()…

KSK
- 636
- 1
- 9
- 29
2
votes
0 answers
Gridx: How to keep selections over multiple pages?
I am currently encountering the following problem:
I have a paged grid that consists of 5 pages. The user needs to select certain rows within that grid, while navigating through all of the 5 pages (some selections on page 1, some on page 2,…

wanyang cao
- 21
- 2
1
vote
2 answers
Reference to "this" lost when using dojo aspect around a GridX tree
I am trying to use an around aspect for the expand function of a GridX's tree.
The simplified code goes like:
var myGrid = ...; // features a tree
var myConditional = ...; // some boolean
dojo.aspect.around(myGrid.tree, "expand",…

Mena
- 47,782
- 11
- 87
- 106
1
vote
1 answer
gridx module undefined error while loading
I'm having issues with Gridx while using IndirectSlect and below is my code

bajji
- 1,271
- 3
- 15
- 37
1
vote
0 answers
Dojo custom build with gridx - Still files are downloaded when page loaded?
We are using dojo in our product extensively and recently all pages with Enhanced grid were updated to gridx and its working fine.
We had compressed gridx files into dojo through Dojo custom build without errors ( i have included all these js files…

caspersky 48
- 239
- 1
- 4
- 11
1
vote
0 answers
gridx cellwidget scope - can't execute external javascript
I have been trying to create a cellwidget button within gridx that once clicked it will call a javascript function externally. so the set up is i have the file test.html which contains a gridx grid with the following field declared in html
{ field:…

Governator
- 11
- 3
1
vote
0 answers
Gridx/Grid DOJO : issue with checkbox and filter : when filter is used, checkboxes get uncheked
I am using gridx/grid to make grid where for checkboxes, "IndirectSelect and ExtendedSelect" are used. The issue is, when I select some checkboxes and then type something in filter, all checked checkboxes become unchecked.
Is there a way the…

chitranjan deo
- 174
- 11
1
vote
1 answer
How to set the validator function in dojo programatically
I have isDuplicate() function that I need to set as the validator function for my ValidationTextBox. So That's what I am doing:
parent=this;
var structure = [
{"id": "Name", "field": "Name", "name": "Name", width: "40%",
…

Edgard Jammal
- 31
- 6
1
vote
0 answers
How does GridBagLayout functions such as gridwidth/height and gridx/y work to scale the size of the GUI?
I was recently introduced to GridBagLayout to substitute the vanilla JPanel layout, but I am having trouble working with the functions like gridwidth/height and gridx/y. I am not sure how they work exactly in changing the size of the GUI and the…

David L
- 47
- 1
- 7
0
votes
1 answer
Disable "click on header" sorting in GridX
Is there a way to disable click-on-header-sort in dojo's GridX ? I would like to still be able to sort it programmaticaly but user need to have that option blocked.

ChrisB
- 55
- 1
- 8
0
votes
1 answer
Trigger function in moment column is sorted in GridX
I use SingleSort module with Gridx. I can't find (I already checked SingleSort documentation and found nothing) a way to react on sort event. I need info about which (and how) column is sorted. I know how get info about sorting (getSortData method)…

ChrisB
- 55
- 1
- 8
0
votes
0 answers
Get selected rows from gridx IBM BPM
I have implemented an export to excel service in gridx table for a ibm-bpm application. Currently it exports the entire table into an excel sheet. I want to pass only the selected rows from the table into the excel. So far I have tried the below…

Saurabh Jaiswal
- 21
- 4
0
votes
2 answers
Firefox doesn't show images
We have a gridx with various span tag linked to a css with images.
HTML in gridx:
CSS:
.icon.active{
content:url(../imgs/attivo.png);
height: 16px;
}
The problem is that with Firefox it loads the images (we can…

Stefano
- 293
- 1
- 4
- 22
0
votes
1 answer
How can I update the contents of a ComboBox embedded in a GridX
I am in the process of altering an existing GridX table to add a new column which contains a drop down, the contents of which will be different for each row.
I have added the dropdown as a combobox by setting the cell's structure as
widgetsInCell:…

Wil
- 349
- 3
- 12
0
votes
2 answers
xpages gridx jsonREST and query/search
I have been following the excellent 'Dojo Grids in XPages' by Brad Balassaitis - https://xcellerant.net/dojo-grids-in-xpages/
I have an XPage with a jsonREST service referencing a Notes View, and the options described in Part 10 - Dojo data grid…

Travis Hiscock
- 65
- 10