Search Type: Posts; User: evant
Search: Search took 0.18 seconds.
-
Today 10:41 PM
Jump to post Thread: Open File Dialog Programatically by evant
- Replies
- 1
- Views
- 58
Not possible, AFAIK.
-
23 May 2013 4:16 PM
- Replies
- 1
- Views
- 70
Because you're just passing a string:
return this.save(this.contentCallback); -
23 May 2013 7:06 AM
- Replies
- 7
- Views
- 158
Probably just a documentation error, it's intended that you can override it if needed.
-
23 May 2013 6:58 AM
- Replies
- 7
- Views
- 158
Could possibly be a bug with an older version not using getGroupString properly, I tested it on the latest (see attached screen).
-
23 May 2013 6:47 AM
- Replies
- 2
- Views
- 56
Using which version? The current code reads:
removeUIClsFromElement: function(cls) {
var me = this,
baseClsUi = me.baseCls + '-' + me.ui + '-' + cls,
result... -
23 May 2013 6:36 AM
Jump to post Thread: Finnish date locale not correct by evant
- Replies
- 4
- Views
- 106
Right. It's not a bug in the code, but with the locale file. The getMonthNumber function isn't localized appropriately for the fi locale.
It should read something like:
Ext.Date.monthNames... -
23 May 2013 6:07 AM
Jump to post Thread: Finnish date locale not correct by evant
- Replies
- 4
- Views
- 106
How are you setting the value using setValue()?
-
23 May 2013 2:07 AM
- Replies
- 2
- Views
- 64
We have an open issue for this: EXTJSIV-9490.
Thanks for the post. -
23 May 2013 1:45 AM
- Replies
- 1
- Views
- 73
The form tracks fields at any depth underneath, so what you've got is fine.
-
22 May 2013 5:52 PM
- Replies
- 7
- Views
- 158
This isn't a bug. The transform method on the Sorter (Grouper) is used to transform the value when sorting the store, for example:
transform: function(v) {
if (v == 'first') {
... -
22 May 2013 3:07 PM
- Replies
- 3
- Views
- 86
I can't reproduce this:
Ext.require(['Ext.chart.*', 'Ext.chart.axis.Gauge', 'Ext.chart.series.*', 'Ext.Window']);
Ext.onReady(function () {
console.log(store1.first());
... -
22 May 2013 2:58 PM
- Replies
- 5
- Views
- 126
These "compat" modes aren't supported by Ext. As you can see, the emulation doesn't work like the real browser.
-
21 May 2013 10:17 PM
- Replies
- 5
- Views
- 126
That looks like IE10. Are you saying you're running the app in IE10 and choosing a non-IE10 document mode?
-
21 May 2013 9:45 PM
- Replies
- 5
- Views
- 126
I can't reproduce this on 4.2.0 using IE9, please post a test case:
Ext.require('*');
Ext.onReady(function() {
new Ext.panel.Panel({
width: 400, -
21 May 2013 8:22 PM
- Replies
- 1
- Views
- 69
Ext doesn't do anything extra with frames. When you've got Ext loaded, there's more memory being used, but other than that, there's no special handling.
-
21 May 2013 3:44 PM
- Replies
- 1
- Views
- 108
Because you never use the view anywhere. All you've done is define a class. How will it know where to insert this view?
You need to:
a) Put it in views
controllers: ['ui.Navigations'],... -
21 May 2013 5:17 AM
- Replies
- 3
- Views
- 93
Why not using a mapping: http://docs.sencha.com/touch/2.2.0/#!/api/Ext.data.Field-cfg-mapping
-
21 May 2013 5:05 AM
- Replies
- 7
- Views
- 99
I don't really understand your code. You've got:
a) A panel with no layout, which will be auto -> The "tab"
b) A form with auto layout
c) The grid
Why not just: -
21 May 2013 4:54 AM
- Replies
- 7
- Views
- 99
Stretch the grid to a maximum of what? How are you using it?
-
21 May 2013 4:24 AM
- Replies
- 7
- Views
- 99
You will never see a scrollbar, because auto height means stretch to the size of the content.
-
21 May 2013 1:26 AM
- Replies
- 3
- Views
- 94
You can, just not in afterlayout.
-
20 May 2013 11:13 PM
- Replies
- 3
- Views
- 94
update() triggers a layout on the component, so you can't call update inside afterlayout.
-
20 May 2013 8:18 PM
- Replies
- 1
- Views
- 169
http://www.sencha.com/forum/showthread.php?260106-Tooltips-on-forms-and-grid-are-not-resizing-to-the-size-of-the-text
-
20 May 2013 6:15 PM
- Replies
- 9
- Views
- 242
for ( i = 1; i <= 4; i++) {
picturesListeners.push({
element: 'element',
delegate: 'div.img' + i,
event: 'tap',
fn: (function() {
return... -
20 May 2013 5:43 PM
- Replies
- 9
- Views
- 242
You can use this pattern to capture the index:
var fns = [],
i = 0;
for (i = 0; i < 4; i++) {
fns.push((function(captured) {
return function() {
...
Results 1 to 25 of 108
