0
votes

I'm loading data into a Panel Grid using loadData function. In the browser, I see the load mask, and the data for the fraction of a second, and then all the columns disappear. When I refresh the browser a couple of times, sometimes I see the columns, but sometimes I don't. My data is in the following format:

data  = [
    { name: 'ExtJs'},
    { name: 'ExtJs'},
    { name: 'ExtJs'}
]

Any ideas why the grid columns disappear?

1
Post your code please, the data is not enough to advise anything helpful.Saki
Post the grid columns and your model.Darin Kolev
It works when I turn off autoload in the store.Rutwick Gangurde

1 Answers

0
votes

May be you can do a refresh after render to force the columns to show first time

afterrender: function(grid){
grid.getView().refresh();
}