Search Type: Posts; User: mystix
Search: Search took 0.13 seconds.
-
23 Apr 2012 9:55 AM
- Replies
- 2
- Views
- 526
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 :... -
23 Apr 2012 6:55 AM
- Replies
- 2
- Views
- 526
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)
... -
19 Apr 2012 8:18 AM
Jump to post Thread: Ext.encode() handles Dates badly by mystix
- Replies
- 5
- Views
- 673
... 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... -
18 Apr 2012 10:05 PM
Jump to post Thread: Ext.encode() handles Dates badly by mystix
- Replies
- 5
- Views
- 673
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... -
13 Apr 2012 2:51 AM
- Replies
- 6
- Views
- 662
did you try this against 4.1.0-rc3 (released just yesterday)?
-
12 Apr 2012 11:32 PM
- Replies
- 3
- Views
- 673
I think he meant to say "mobile webkit", which powers the android browser.
-
12 Apr 2012 2:35 AM
Jump to post Thread: [4.1b2] Inconsistent line endings by mystix
- Replies
- 4
- Views
- 796
Same CRLF problem with
<ext-download>/src/core/test/unit/spec/dom/CompositeElementLite.js
in 4.1.0-RC3.
All other files are fine. -
7 Apr 2012 7:59 AM
- Replies
- 8
- Views
- 858
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... -
6 Apr 2012 6:44 PM
- Replies
- 4
- Views
- 762
Couldn't resist ;)
33724 -
6 Apr 2012 6:39 PM
- Replies
- 8
- Views
- 858
Mine says:
function (number, min, max) {
number = parseFloat(number);
if (!isNaN(min)) {
number = math.max(number, min);
}
... -
6 Apr 2012 7:14 AM
Jump to post Thread: API Documentation Content Bugs by mystix
- 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) -
6 Apr 2012 4:58 AM
- Replies
- 8
- Views
- 858
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 +... -
5 Apr 2012 3:36 AM
- Replies
- 4
- Views
- 762
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... -
5 Apr 2012 2:35 AM
- Replies
- 4
- Views
- 762
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... -
4 Apr 2012 11:49 PM
Jump to post Thread: [4.1b2] Inconsistent line endings by mystix
- Replies
- 4
- Views
- 796
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... -
4 Apr 2012 7:26 AM
- Replies
- 8
- Views
- 1,300
Woot... I can confirm this is fixed in 4.1.0-rc2. Thanks!
-
20 Mar 2012 8:16 AM
- Replies
- 6
- Views
- 1,078
Thanks for clearing that up :)
-
20 Mar 2012 6:31 AM
- Replies
- 6
- Views
- 1,078
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 Mar 2012 9:32 PM
- Replies
- 6
- Views
- 1,078
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... -
18 Mar 2012 7:08 AM
- Replies
- 6
- Views
- 1,078
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... -
18 Mar 2012 4:16 AM
- Replies
- 8
- Views
- 1,300
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... -
23 Feb 2012 6:10 PM
- Replies
- 8
- Views
- 1,139
Yes it's a bug
-- right above the first post it says it's been logged with a tracking id of EXTJSIV-5383 -
20 Feb 2012 11:25 PM
- Replies
- 17
- Views
- 3,322
Agreed. Site's been snappy for me for a little under 2 weeks. Woot =D>
-
17 Feb 2012 9:22 AM
- Replies
- 1
- Views
- 480
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... -
10 Feb 2012 1:17 AM
- Replies
- 3
- Views
- 1,059
The workaround is simple
-- just provide an initial dummy column:
// ...
columns: [{header:''}],
// ...
Results 1 to 25 of 116
