oria / gridx

Just another powerful Dojo grid
Other
162 stars 78 forks source link

GridX showing same data for every row #427

Closed VarunVerma3 closed 5 years ago

VarunVerma3 commented 5 years ago

I'm Following the steps to create grid using gridx it self but i see same data all ove the row.

require([ 'dojo/store/Memory', 'gridx/Grid', 'gridx/core/model/cache/Sync' ], function(Store, Grid, Cache){ var store = new Store({ data: [ {id: 1, title: 'Hey There', artist: 'Bette Midler'}, {id: 2, title: 'Love or Confusion', artist: 'Jimi Hendrix'}, {id: 3, title: 'Sugar Street', artist: 'Andy Narell'} ] }); ...... });