Tagged Questions

2
votes
1answer
1k views

Advanced JavaScript data store & grid widget

We have written a data store / grid widget system in JavaScript that automatically updates all widgets associated with a data store whenever some of the data changes. Its nice features are: it ...
0
votes
0answers
224 views

How to use a dojo data store to populate options for a grid's comboBox cell type

I am developing a health care app that allows a user to assign a row of medication data to a particular standardized name. - the meds and std name are from the same database table and end up in the ...
0
votes
2answers
149 views

how get element from grid

I have grid in extjs program. Grid has 2 columns. I want to get each value in grid. Is possible something like that (of course in JS): foreach( row in grid ) { row.cell[0] // do something ...