Search Type: Posts; User: mystix

Page 1 of 5 1 2 3 4

Search: Search took 0.13 seconds.

  1. I came up with this override which works around the problem for me:


    Ext.define('Ext.grid.plugin.CellEditingOverride', {
    override: 'Ext.grid.plugin.CellEditing',

    onEditComplete :...
  2. In 4.1.0-rc3, the cellediting plugin does not refocus the edited cell when completing an edit.

    To reproduce:

    Open the cellediting example (<ext-4.1.0-rc3>/examples/grid/cell-editing.html)
    ...
  3. ... but which sadly form the bulk of browsers being used.


    Wholeheartedly agree. That code's been there (iirc) since the 2.x / 3.0.x days.

    The only kink would be for upgraders -- they will...
  4. Or just use this override (and let the server handle timezone conversion):


    Ext.JSON.encodeDate = function(o) {
    return Ext.Date.format(o, 'c');
    };


    which when used should give you...
  5. did you try this against 4.1.0-rc3 (released just yesterday)?
  6. I think he meant to say "mobile webkit", which powers the android browser.
  7. Same CRLF problem with

    <ext-download>/src/core/test/unit/spec/dom/CompositeElementLite.js

    in 4.1.0-RC3.

    All other files are fine.
  8. Woot. Confirmed.

    @animal's Ext.Number.constrain override resolves the problem nicely
    (cellediting still works fine in Chrome 18+ after repeating my test case from post #2 > 30 times).


    Here's...
  9. Couldn't resist ;)

    33724
  10. Mine says:


    function (number, min, max) {
    number = parseFloat(number);

    if (!isNaN(min)) {
    number = math.max(number, min);
    }
    ...
  11. Replies
    488
    Views
    68,550
    Description for Ext.view.View contains the following text:

    There's no more DataView class
    -- the DataView class is the View class now (though the xtype remains as dataview)
  12. In Chrome 18.0.1025.151 beta, repeatedly commencing an edit then sorting a grid configured with the cellediting plugin causes the Editor to permanently disappear.

    Drop the following HTML +...
  13. Here's another test-case which demonstrates wonkiness in another view.Table method -- getCellByPosition()

    Drop the following HTML + accompanying JSON into the
    /path/to/ext-4.1.0-rc2/examples/grid...
  14. 1) View the Cell Editing Grid Example in Chrome with the console open
    /path/to/ext-4.1.0-rc2/examples/grid/cell-editing.html
    2) Dismiss the "Store Load Callback" dialog
    3) Delete the first...
  15. This popped up again in 4.1.0-rc2.

    All the files I mentioned previously were fixed, but now there's a new culprit:
    <ext-download>/src/core/test/unit/spec/dom/CompositeElementLite.js

    Please...
  16. Woot... I can confirm this is fixed in 4.1.0-rc2. Thanks!
  17. Thanks for clearing that up :)
  18. Hi Mitch,

    To be clear -- the pad function was only moved in the neptune theme's _frame.scss file.
    The pad function still causes errors in the ext4 theme's _frame.scss file because it remains...
  19. In the 4.1.0-rc1 download, the pad function was un-nested by moving it to the top of
    resources/themes/stylesheets/neptune/default/mixins/_frame.scss

    The same pad function remains nested in...
  20. Same issue all over again:
    http://www.sencha.com/forum/showthread.php?158358-4.0.7-Syntax-errors-when-compiling-SASS-themes

    The neptune theme was fixed, but somehow the ext4 theme was either...
  21. Updated diff patch for 4.1.0-rc1:



    diff --git a/resources/themes/stylesheets/ext4/default/widgets/_grid.scss b/resources/themes/stylesheets/ext4/default/widgets/_grid.scss
    index...
  22. Yes it's a bug
    -- right above the first post it says it's been logged with a tracking id of EXTJSIV-5383
  23. Agreed. Site's been snappy for me for a little under 2 weeks. Woot =D>
  24. An active textfield editor in a gridpanel configured with the cellediting plugin doesn't call completeEdit() when the grid header is clicked to sort a column. This used to work in 4.0.7.

    Test...
  25. The workaround is simple
    -- just provide an initial dummy column:


    // ...

    columns: [{header:''}],

    // ...
Results 1 to 25 of 116
Page 1 of 5 1 2 3 4