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
0
votes
2 answers

Dojox DataGrid: achieve row selection only by Checkboxes

I created a DOJO 1.6 DataGrid with CheckboxSelector as shown in the tutorials. Now I want to disable the onSelectionChanged event for rows, if they are clicked. This event should only be fired, if the checkbox is clicked. How can that be achieved?…
intA
  • 497
  • 2
  • 10
  • 23
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
0
votes
1 answer

Saving updated values of a dojo data grid

Can anyone tell me how to connect my dojo datagrid to "onApplyCellEdit" event and how to update the dojo store with the updated values in the grid. thanks.
0
votes
1 answer

grid filter in dojo

can any one help with filtering multiple condition in dojo grid. im using grid.DataGrid and json data. data1 = {items: [ {"id":1,"media":"PRINT",pt:"Yellow Directory"}, {"id":2,"media":"DIGITAL",pt:"Social…
0
votes
2 answers

dojo 1.6 DataGrid cannot display lists?

In dojo 1.7.2, if I create a data store containing array values, dojox.grid.DataGrid displays them with no problem, separating each item with a coma. However, in dojo 1.6, it takes only the first element of my array. I have a project where I have to…
Philippe
  • 6,703
  • 3
  • 30
  • 50
0
votes
1 answer

Refreshing DojoGrid

I have this grid which displays some data, that is retrieved from database. I am retrieving the data as a JSON string which comes in the form :: [{"ActID":16,"Assigned To":"Anand","Activity Type":"fdsf","Status":"New","Assigned Date":"2012-04-20…
Shantanu Tomar
  • 1,572
  • 7
  • 38
  • 64
0
votes
1 answer

Performing action a button click event, button being placed inside dojox.grid.DataGrid.

I have a dojox.grid.DataGrid. In this a set of values are being displayed along with last 2 columns being filled up with buttons which are created dynamically according to data being retrieved from database using formatter property in gridStruture.…
Shantanu Tomar
  • 1,572
  • 7
  • 38
  • 64
0
votes
1 answer

Adding icon to dojo data grid

I'd like to set a icon in a column in a dojox data grid. Can I set the class icon like in the dojo tree: dijit/Tree getIconClass? Thanks
myborobudur
  • 4,385
  • 8
  • 40
  • 61
-1
votes
1 answer

Reset the value as null jquery

I want to reset the value of docId as null. Can you please show me how to do this? console.dir(dijit.byId("grid")); rowIndex = e.rowIndex; var item = this.getItem(rowIndex); var docId = this.store.getValue(item, "ID");
-1
votes
1 answer

how to show or hide the columns based on radio button selection

i have an aspx page where the columns are shown in dojo grid like var formFields = [{ name: 'Cost', placeHolder: '', required: true, type: 'currency', column: 'Cost', friendlyName: 'Cost', width: 80 }, { …
-1
votes
1 answer

Getting the selected Items in EnhacnedGrid

I have created a dojox.grid.EnhancedGrid. I want to fetch the selected Item in the grid. grid.selection.getSelected() is the method that I am using to fetch the selected rows with the attributes and their corresponding values. But this function…
user2721609
  • 57
  • 1
  • 5
-1
votes
2 answers

enhanced grid defaultly displaying only 10 rows? in dojo

i have 100000 data in my grid at first request it showing only 10 after clicking on the page selecter it showing next data............plz answer why enhanced grid displaying only 10 rows at first time require([…
sree
  • 17
  • 7
-1
votes
1 answer

Not coming out of inline editing in Dojo DataGrid

Possible Duplicate: Dojo IE DataGrid inline editing The cells in the grid in the following jsfiddle are editable but I am : not able to come out of the edit mode when I double click on the cell, change the value, click outside the grid. able to…
-1
votes
2 answers

Change ItemFileWriteStore URL, get data and refresh Grid

I have an EnhancedGrid with ItemFileWriteStore. After calling startup() on the grid, I hide the same by using following code: dojo.style(grid.domNode, 'display', 'none'); And then on the click of a button, I change the URL of store for this grid and…
-2
votes
1 answer

XPages: Data Grid

I'm new in Xpages and I need help about use Data Grid(DG) or Dojo Data Grid(DDG). How can I use “filters” using a Read/Write/Input DDG/DG whitin an XPages Form? Example: I have input Field in Xpages Form(1) NumberCase DateCase and in the same…
1 2 3
23
24