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.

I am developing a checkbox grid list with pagination using the EXTJS grid. I need to remember the selected record when the page navigation is performed.

Details: 1) Go to page:1 and selected rows 1,2 and 3. 2) Now navigate to page:2 3) Come back to page:1 4) The rows 1,2 and 3 which are already selected should be shown as selected

Is there is any api in grid which handles this kind of function?

Thanks in advance.

share|improve this question

3 Answers

I don't think there is. You;d need to store IDs of selected records in some separate store/array and use it to re-apply selections when page is changed.

share|improve this answer
I tried that earlierby storing the selected rows in an array and using selectRows(Array) i highlighted the records. But there is a problem here. Suppose if am selecting rows with ids 1,2 and 3 in page:1 and moved to page:2 the rows 1,2 and 3 in page:2 are selected. So i dont think storing row ids is not apt in pagination grid. – Rock123 Jan 20 '12 at 12:01
1  
That's why I'm talking about record IDs not row IDs. Something that can unamigously indicate records to be highlighted, like for example a primary key from your database. – Mchl Jan 20 '12 at 12:24
Thanks Mchl. I got your answer and it works !!! – Rock123 Jan 21 '12 at 4:40
up vote 1 down vote accepted

Thanks for your responses. I have achieved my design by implementind a plugin for grid. The plugin looks as,

Ext.namespace('Ext.ux.plugins');

Ext.ux.plugins.CheckBoxMemory = Ext.extend(Object,
{
   constructor: function(config)
   {
      if (!config)
         config = {};

      this.prefix = 'id_';
      this.items = {};
      this.idProperty = config.idProperty || 'id';
   },

   init: function(grid)
   {
      this.view = grid.getView()
      this.store = grid.getStore();
      this.sm = grid.getSelectionModel();
      this.sm.on('rowselect', this.onSelect, this);
      this.sm.on('rowdeselect', this.onDeselect, this);
      this.store.on('clear', this.onClear, this);
      this.view.on('refresh', this.restoreState, this);
   },

   onSelect: function(sm, idx, rec)
   {
      this.items[this.getId(rec)] = true;
   },

   onDeselect: function(sm, idx, rec)
   {
      delete this.items[this.getId(rec)];
   },

   restoreState: function()
   {
      var i = 0;
      var sel = [];
      this.store.each(function(rec)
      {
         var id = this.getId(rec);
         if (this.items[id] === true)
            sel.push(i);

         ++i;
      }, this);
      if (sel.length > 0)
         this.sm.selectRows(sel);
   },

   onClear: function()
   {
      var sel = [];
      this.items = {};
   },

   getId: function(rec)
   {
      return rec.get(this.idProperty);
   }
});

This plugin was called from gird as,

Ext.grid.Gridpanel({
store: 'someStore',
plugins: [new Ext.ux.plugins.CheckBoxMemory({idProperty: "recordID"})]

});

Hope this helps some one.

share|improve this answer

You could put a MixedCollection Object at the global scope to keep track of these records. This will allow you to store global settings of different object types.

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.