Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ext.grid.GridPanel is very cool grid, advanced with very powerfull features, sorting, resizeing, etc...

If I want to use it as nice looking output for my data (nice looking TABLE) there is pleny of unnessecery features, what I need to turn off, disable etc,

I wonder if is it a ExtJS class that look like a grid, got store inside - so can be loaded, updated..

share|improve this question

3 Answers

up vote 2 down vote accepted

I've had a lot of performance problems with ExtJS Grid, so my solution was to switch to ListView. It is a lot simpler, doesn't have that many features, but still supports data stores.

share|improve this answer

You can use Ext.extend to create a GridPanel which has defaults exactly as you'd like them:

ConfiguredPanel = Ext.extend(Ext.grid.GridPanel, {
  constructor: function(cfg) {
    cfg = Ext.applyIf(cfg || {}, {
      // defaults
    });
  }
});
share|improve this answer
1  
Is it a question was about something less than GridPanel, and extend is something OPOSITE ? – Joanna Jan 18 '11 at 3:16
My read was it was asking how to make a class that disabled the various features of GridPanel that weren't wanted so there was less repetition in locking it down. – wombleton Jan 18 '11 at 3:50

The winner isssssssss...

Ext.list.ListView !

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.