354 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
83
views
why z-index does not work outside the table?
The screenshot shows a tooltip with position: absolute and a very large z-index, and it works in the table itself, but as soon as I try to move it out of the table, the table container overlaps the ...
1
vote
2
answers
263
views
Dojo dgrid - formatting a field based on another field in grid
I am working with a dgrid and I am trying to use a formatter on a column but I need that formatter to return values based on the values of another column. The values for the density column are ...
1
vote
0
answers
27
views
dgrid update from 0.3 - is it worth?
I am currently using dgrid 0.3.21 and everything is working fine in our project.
dgrid 0.3, 0.4 and 1.x seem to be maintained in parallel.
Is there any information on how long 0.3 will be maintained?
...
0
votes
1
answer
150
views
Remove columns in dgrid dynamically
I am creating a dgrid using columnHider. I was able to hide/show columns using this.dgridTable.toggleColumnHiddenState(columnId, hidden);
However, I want to altogether remove specific columns from ...
1
vote
0
answers
39
views
dgrid- case insensitive column sorting
Non case-sensitive sorting in dojo dgrid
answer posted by @https://stackoverflow.com/users/237950/ken-franqueiro
grid.on('dgrid-sort', function (event) {
// Cancel the event to prevent dgrid's ...
0
votes
1
answer
51
views
Why isn't dgrid rendering correct grid from hello world tutorial
This only displays barebones html rows and columns but obviously I need dgrids rows and columns. This is the exact code from dgrids hello world tutorial.
<!DOCTYPE html>
<html>
&...
0
votes
1
answer
186
views
How do I get dgrid ondemandgrid to show inside dijit/dialog?
I am using dgrid OnDemandGrid in a digit/dialog. I post the dialog, but the grid doesn't show. I can see the where the grid should occur, but the grid itself doesn't post with grid.startup(). I think ...
0
votes
1
answer
65
views
update store element adds row in grid without removing the old version
I would like updates to the dstore appearing in the dgrid without having to call refresh.
do you know why the grid does not remove the old row?
my records has no id property but Ive setup the ...
0
votes
1
answer
89
views
controlling background color of sub cell value in dgrid
I have a dgrid with 4 columns like below:
gridColumns: function() {
return [{
"field": "Column1",
"label": Column1
}, {
"field": "Column2",
...
0
votes
0
answers
115
views
dgrid 1.2.1 OnDemandGrid not firing request when scrolling
I'm using dgrid 1.2.1 OnDemandGrid, and with it have tried both dstore 1.1.1 and 1.1.2 (Rest, SimpleQuery, Trackable). It seems no matter what I try I am unable to get the virtual scrolling to work.
...
0
votes
1
answer
361
views
dgrid set first few columns to be fixed and make others scrollable horizontally
I have a dgrid table which is very long one, and there is horizontal scroll bar, I want to know if there is a way to make first 2 or 3 columns fixed (always displayed) and apply horizontal scrollbar ...
1
vote
1
answer
154
views
dGrid table scroll horizontally programmatically
Is there a method in dGrid which let's you scroll to a certain column in the table, I have a table which is scrollable horizontally and I want to know if there is possibility to do something like:
...
0
votes
1
answer
190
views
Dstore Memory filter returns empty data unless applying .forEach
I have a "dstore/Memory" object declared like so:
this.flightStore = new Memory({
data: flights,
idProperty: 'myId'
});
I want to get back a filtered collection to display. So I write this:
...
1
vote
0
answers
143
views
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 ...
0
votes
1
answer
227
views
Filtering dstore collection against an array field
I'm trying to filter a dstore collection by a field that has an array of values. My json data looks like the following (simplified):
[{
user_id: 1,
user_name: "John Doe",
teams: [{...