Exception PageProxy in gridpanel row expander

  1. #1

    Exception PageProxy in gridpanel row expander

    if you build the store on the page init, compilation is ok.

      protected void Page_Init(object sender, EventArgs e)    
        { 
            storepoi = new Store { ID = "StoreRow" };
            Ext.Net.PageProxy gh = new Ext.Net.PageProxy();
            gh.Total = WAY.Business.BusinessTarget.GetCountTargets(-1,1);        
            storepoi.Proxy.Add(gh);
            JsonReader reader = new JsonReader(); 
            reader.IDProperty = "ID";
            reader.Fields.Add("ID", "Name");        
            storepoi.Reader.Add(reader);        
            List<object> data = new List<object>();       
            ///storepoi.RefreshData += new Store.AjaxRefreshDataEventHandler(Store1_RefreshData);
            storepoi.DataSource = WAY.Business.BusinessTarget.GetTargetsList(-1, 1, 8, 0);
            this.Form.Controls.Add(storepoi); 
            //important
        }

    but the behavior is wrong!!

    grids daughters share the same store and this is not good.
    Last edited by geoffrey.mcgill; Jul 15, 2010 at 11:33 PM. Reason: please use [code] tags
  2. #2
    Hello!

    Could you provide me with a small example demonstrating the wrong behavior?

Similar Threads

  1. GridPanel Row Expander new row
    By asteriskgr in forum 2.x Help
    Replies: 0
    Last Post: Aug 06, 2012, 8:00 PM
  2. GridPanel Paging with PageProxy
    By jigpatel06 in forum 1.x Help
    Replies: 3
    Last Post: Mar 11, 2011, 10:33 AM
  3. Replies: 4
    Last Post: Nov 08, 2010, 11:13 AM
  4. Exception PageProxy in gridpanel
    By 78fede78 in forum 1.x Help
    Replies: 1
    Last Post: Jul 02, 2010, 12:50 PM
  5. [FIXED] [V0.6] GridPanel Row Expander
    By Timothy in forum Bugs
    Replies: 8
    Last Post: Sep 11, 2008, 7:39 PM

Posting Permissions