[FIXED] [#269] [2.x] how to add window's item from session to another window's item?

Page 3 of 3 FirstFirst 123
  1. #21
    I can reproduce now. A critical step is removing an active item.

    Here is another workaround.
    var removeFrom = function (win, countToRemove, totalCount) {
        win = App[win];
     
        var items = win.items;
    
        items.getAt(totalCount - countToRemove - 1).expand(); // workaround
     
        Ext.suspendLayouts();
        for (var i = 1; i <= countToRemove; i++) {
            win.remove(items.getAt(totalCount - i));
        }
     
        Ext.resumeLayouts(true);
    };
    It looks a bug, I reported to Sencha.
    http://www.sencha.com/forum/showthread.php?265511
  2. #22
    My report duplicates another report.
    http://www.sencha.com/forum/showthread.php?263882

    Created an Issue to track this defect.
    https://github.com/extnet/Ext.NET/issues/269
  3. #23
    Sencha issue has been marked as fixed for some time now so we're assuming this is fixed on Ext.NET by now.
    If this issue still bugs anyone, just let us know and we'll get to the bottom of it!
    Fabrício Murta
    Developer & Support Expert
Page 3 of 3 FirstFirst 123

Similar Threads

  1. [CLOSED] asp:datalist inside ext window item.count always zero
    By Tonic in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: Jul 15, 2013, 12:49 PM
  2. Replies: 4
    Last Post: Jan 21, 2013, 7:23 AM
  3. Replies: 17
    Last Post: Dec 17, 2012, 11:58 AM
  4. [CLOSED] Always selected Item is nothing for combobox as menu item
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 04, 2011, 4:51 PM
  5. Replies: 1
    Last Post: Jun 01, 2009, 5:15 PM

Posting Permissions