[FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

Page 1 of 2 12 LastLast
  1. #1

    [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    I wasn't having this problem in the previous version.



    I have 2 tabs (one with a grid and the other with a dataView), both are associated with the same store and each one has a pagging toolbar.


    The problem is that*when changing the tab*from the first displayed tab (index 0) to the other tab (index 1) I get the following error:


    this.el is undefined at:



    
    //function that breaks
    Ext.form.Hidden.override({
    ** *setValue: function (v) {
    ** * * *this.value = v;
    ** * * *var temp = this.el.dom.value; //here i get the error
    ** * * *if (this.rendered) {
    ** * * * * *this.el.dom.value = (v === null || v === undefined ? "" : v);
    ** * * * * *this.validate();
    ** * * *}
    ** * * *if (this.el.dom.value != temp) {
    ** * * * * *this.fireEvent("change");
    ** * * *}
    ** *}
    });
    
    
    
    
    //the previous is called by this code (that is generated by coolite and it's located on*Ext.onReady(...) in the page where the tabs are rendered)
    windowsUC_panelUC_PagingToolbar1.on("change",function(el,data){this.getActivePageField().setValue(data.activePage);})
    
    
    <div class="sourceRow"><div class="sourceRow">

    By the way I'm using a <ext:Desktop> and the conflicting code is inside a <ext:DesktopWindow>


    Also if I change the activeTabIndex from 0 to 1 (baked in the aspx), I recieve the same error when changing to tab 0.



    Do you know why i'm getting this error? How can i solve it?


    Thanks in advance


    Regards


  2. #2

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Hi,

    Fixed. Please update and rebuild
    *
  3. #3

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Thanks for the quick response! but it has another bug. It's autoLoading a store that is using objectDataSource with autoLoad=false

    Here it's the call stack






    If you need more information, contact me on msn jp_belli@hotmail.com (we can talk too)
    I need this working as soon as posible


    Thanks

  4. #4

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Hi,

    I am not sure that I clear understood your problem. Do you mean that you have AutoLoad="false" but data is visible in GridPanel?


    Store always call DataBind at PreRender (if DataBind still doesn't called). It is original behaivor all DataBoundControls.*
    AutoLoad is used on client side for loading data to the store (data rendered to the page as json object and loaded to the store js object)


    Can clarify what you want to reach and I'll try to resolve it.


  5. #5

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Yes, it my explanation was not so good! :P

    I have a store, related to an objectDataSource.
    Than must be loaded in a certain moment, if it's loaded before it doesn't have any sense (it needs a first step compleated before). So I have to ask the Store to be load in a certain moment, after knowing some information.

    Well this store it's managed by a pagging toolbar (maybe the problem it's regarding that).


    This problem appears with the lastest*SVN version (1097), with yesterdays morning version was OK


    Regards
  6. #6

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Ok, I see. One question: Do you use any proxy in Store?*
  7. #7

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Yes, on the store.


    *** *<Proxy>** * * *<ext:DataSourceProxy></ext:DataSourceProxy>
    ** *</Proxy>


    Thanks
  8. #8

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Hi,

    I made small changes. Can you update, rebuild and retest
    *
  9. #9

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    I've updated the DLL, but I'm having the same problem but the stack trace changed

    Added Call to*Coolite.Ext.Web.DLL!Coolite.Ext.Web.WebControl.Enf orceDataBind() Line 1246 + 0xb bytes C#


    Here it's the stack trace





  10. #10

    RE: [FIXED] [V0.8.0] Problems with PaggingToolbar with 0.8.0

    Hi,

    Thanks for Stack image. Can you try again update and retest?
    *
Page 1 of 2 12 LastLast

Similar Threads

  1. About Ext.NET 2.0.0-rc1 Some of the problems
    By happy61 in forum 2.x Help
    Replies: 2
    Last Post: Jul 15, 2012, 4:06 PM
  2. There are some problems
    By jiaxiang8756 in forum 2.x Help
    Replies: 0
    Last Post: Jun 19, 2012, 10:04 AM
  3. GUI problems on IE 7.0 & IE 8.0
    By ITECH-Developer in forum 1.x Help
    Replies: 5
    Last Post: Sep 15, 2011, 4:12 PM
  4. two problems!
    By jarremw in forum 1.x Help
    Replies: 0
    Last Post: Jun 29, 2009, 4:37 PM
  5. Problems with asp:ObjectDataSource
    By jpbelli in forum 1.x Help
    Replies: 5
    Last Post: Feb 02, 2009, 1:34 PM

Posting Permissions