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
2
votes
1 answer

dojox.grid.DataGrid - Maintaining row selection when sorting and paging

I am using a dojox.grid.DataGrid to display data and allow the user to select one or more rows to highlight items to do other actions to. My problem is that the grid uses indexes to remember the selected rows. If I have turned clientSort on,…
MrGFunk
  • 63
  • 1
  • 7
2
votes
1 answer

dojox - Datagrid with Checkbox -> onSet / trigger save JsonRestStore

i have a datagrid (created programmatically) wich is connected to an JsonRestStore. In that Grid there are some columns rendered as checkboxes (type:dojox.grid.cells.Bool) Everything works fine, displaying Data and so on. To be able to edit inline,…
Tobias
  • 33
  • 1
  • 5
2
votes
3 answers

dojox.grid.DataGrid custom sort method?

I have a dojox.grid.DataGrid, and one of the columns has date data in it. e.g. 09:01:00 18/10/2010 09:03:00 18/10/2010 09:02:00 19/10/2010 When I click the heading and sort the column, I get this... 09:01:00 18/10/2010 09:02:00 19/10/2010 …
jeff porter
  • 6,560
  • 13
  • 65
  • 123
2
votes
1 answer

Dojo datagrid disable focus

I am trying to create a matrix using dojox.Datagrid I have disabled the rows and cells in javascript with pointerEvents:none. My probelm is that in IE 11 the double click on the cell messes with the layout scrollbars. I looked into it and it is the…
andrei.b
  • 43
  • 5
2
votes
1 answer

How to return values of an editable column in a Dojo DataGrid on an XPage?

I have an editable Priority column in a Dojo DataGrid. Prior to saving the user's changes I want to verify that for the handful of entries in the grid, the user has not set the value for the Priority field to the same value. That is, in the case…
2
votes
2 answers

How to configure an xe:viewFileItemService on an XPage to filter the data in a categorized view?

I have a DocsByUsername categorized view, sorted and categorized by the username. For the authenticated user I only want to display their documents in a Dojo Data Grid. The grid needs to support in-grid editing so I need to use an…
2
votes
1 answer

Replacing the data in dojox.grid.enhancedGrid

I have created a dojox.grid.EnhancedGrid. The grid is working fine. In some of the rows when the data for any column is blank/null is there, It is shown in grid with 3 dots(...). Is there any way to replace those blank dots with blank(no dots). Or…
user2927223
  • 41
  • 1
  • 7
2
votes
2 answers

Xpages: Can you build a Dojo Data Grid with a with a Rest service in a separate XPage?

I have created an Xpage with only one element, a JSON Rest service that points to a view (I guess I should probably put this in a CC). I want to build another Xpage with a CC that contains a CC that contains a Dojo Data Grid that points to this rest…
Bryan Schmiedeler
  • 2,977
  • 6
  • 35
  • 74
2
votes
2 answers

dojox.grid.DataGrid not working when extending

I'm trying to extend a dojox.grid.DataGrid just to add some defaults in JS. I'm adding it to the page the declarative way like this: Html Page …
Arkanoid
  • 1,165
  • 8
  • 17
2
votes
0 answers

How to increase the height of a dojo Enhanced datagrid' s each row when grid div increased

I have a DOJO enhanced grid in my web-page. I am trying to apply a full screen on it using HTML5 full screen API. It is working fine but the height and width are not enlarged in full screen view. THis is the code I am having now. What are the…
2
votes
1 answer

Dojo datagrid: Multiple values in a single field

I am using Dojo 1.7 and I have a field in a datagrid that can have no values, one value or multiple values. I am trying to use data formatted this way: //data var store2 = new dojo.data.ItemFileReadStore({ data: { identifier: "id", …
user2219915
  • 289
  • 3
  • 7
  • 19
2
votes
1 answer

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... method one: nextPage = function(src) { …
kumar
  • 708
  • 4
  • 15
  • 39
2
votes
1 answer

Set dojox.grid.datagrid header column width dynamically

I have a declarative dojox.grid.datagrid with initial header column width. And i have a textbox. my need is In UI, if user enters any value to textbox, that value should be set as the dynamic width of column's header.
Rachel
  • 1,131
  • 11
  • 26
  • 43
2
votes
1 answer

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 works fine (code copied below). var gagrid = new…
2
votes
1 answer

Disable cache in ExtLib REST control (which uses dojox.data.JsonRestStore)

In my XPage I have a xe:djxDataGrid (dojox.grid.datagrid) which uses xe:restService which seems to use dojox.data.JsonRestStore. Everything works fine without proxy but my client accesses the application via a proxy because of corporate policy.…
Panu Haaramo
  • 2,932
  • 19
  • 41
1 2
3
23 24