Adding Rows to a Grid in ExtJS

February 27th, 2009 · 3 Comments

In the last article we built a data grid mockup in ExtJS. Now we want to add some rows to the grid. Firstly we need to create a record class to store a data. We’ve done that also in the previously article, but for the better understanding, here’s it again: var Person = Ext.data.Record.create([{ name: [...]

[Read more →]

Topics: · , , ,

Building Mockups in ExtJS

February 27th, 2009 · 2 Comments

In the early development phase it is usually a good idea to provide a mockup that is not using real data but some dummy data from memory. To do that for a grid in ExtJS we need to create a record class first. For a person this might look like this: var Person = Ext.data.Record.create([{ [...]

[Read more →]

Topics: · , , , , , , ,