Search Type: Posts; User: Stormseeker
Search: Search took 0.03 seconds.
-
9 May 2013 8:04 AM
- Replies
- 3
- Views
- 127
Setting autoLoad to false shouldn't throw an error. Which error are you getting? Perhaps remove the autoLoad configuration completely since the default is undefined (I.E. false).
-
28 Jan 2013 7:04 AM
- Replies
- 7
- Views
- 743
I just ran into this myself and it was driving me crazy. I'm using Sencha Cmd V3.0.2.288 and ExtJS V4.1.3. I did search through the source code of ExtJS and noticed that it is setting the ExtJS...
-
17 Jan 2013 9:36 AM
- Replies
- 2
- Views
- 494
We had a dirty hack in place for V4.1.1 that seemed to fix it however in V4.1.3, various changes seems to have killed off my hack. It seems the Ext.layout.component.Button processing is setting the...
-
15 Jan 2013 3:59 PM
- Replies
- 3
- Views
- 262
Not sure if this is the recommended way, but if you wanted to add it to the Ext.form.Basic class, you could try something like this:
Ext.define('Ext.form.BasicOverride', {
override:... -
15 Jan 2013 10:05 AM
Jump to post Thread: Reusable Components by Stormseeker
- Replies
- 8
- Views
- 297
I think this is what you want:
this.control({
'areapanel[itemId="snork"] combobox': {
change: this.onComboboxChange
},
'areapanel[itemId="differentName"] combobox': {... -
15 Jan 2013 9:29 AM
- Replies
- 3
- Views
- 262
panel.loadRecord is really just calling Ext.form.Basic.setValues(record.data) method. You can try and use this method as a template and create a new function to set the labels instead of the values...
-
15 Jan 2013 9:18 AM
- Replies
- 1
- Views
- 79
If you are using the Sencha MVC style, check out Sencha Command:
http://docs.sencha.com/ext-js/4-1/#!/guide/command -
15 Jan 2013 9:12 AM
Jump to post Thread: No space long text by Stormseeker
- Replies
- 1
- Views
- 118
Seems to look fine in V4.1.1. Maybe you have other CSS that could be affecting it?
http://jsfiddle.net/Stormseeker/NMuyr/ -
15 Jan 2013 8:54 AM
- Replies
- 1
- Views
- 136
I haven't used it yet but it seems like you want KeyMaps:
http://docs.sencha.com/ext-js/4-1/#!/api/Ext.util.KeyMap -
15 Jan 2013 8:43 AM
- Replies
- 2
- Views
- 283
For a regular combobox, we just added some CSS to force the height for the combo items. Should probably work for combobox editors as well.
.x-boundlist-item {
height : 20px;
} -
15 Jan 2013 7:15 AM
Jump to post Thread: Polymorphic model? by Stormseeker
- Replies
- 4
- Views
- 244
Ext.define('Sample.model.Shape', {
extend : 'Ext.data.Model',
fields : [
{name: 'id', type: 'int'},
{name: 'name', ... -
15 Jan 2013 7:08 AM
- Replies
- 2
- Views
- 274
I'm not sure about one-click custom builds but the current tool for this is Sencha Command.
http://www.sencha.com/products/sencha-cmd/download -
11 Jan 2013 2:54 PM
- Replies
- 11
- Views
- 1,139
Yup, I'm using the Ext.Loader.setPath() workaround but wasn't sure if it was going to cause problems later on. Looks good so far. I'm also using Sencha Cmd but didn't want to have to run a build...
-
11 Jan 2013 8:46 AM
- Replies
- 1
- Views
- 354
It appears that the following markDirty configuration doesn't do anything anymore in V4.2 Beta2:
Ext.define('QLP.view.permission.ActionGrid', {
extend : 'Ext.grid.Panel',
title ... -
11 Jan 2013 8:26 AM
- Replies
- 13
- Views
- 1,769
It worked in V4.1.1 at least. It used to be referenced in the Ext-grid-header-Container class in the prepareData() method which has been removed from V4.2.0 probably because of a re-factor to the...
-
11 Jan 2013 8:05 AM
- Replies
- 11
- Views
- 1,139
I'm trying out Beta2 currently and things seem to be MUCH better. However I did notice a weird bug. It seems if you have some requires statements in the Ext.application config code, they are executed...
-
7 Jan 2013 11:37 AM
- Replies
- 11
- Views
- 1,139
I'm having a similar problem, however I am using the 'paths' config value. When the application loads, it is still looking for the source files to be the /apps/model/ect... folder.
Basically, we... -
6 Dec 2012 11:57 AM
- Replies
- 4
- Views
- 709
This is happening to me too. It seems like Sencha Cmd is ignoring the controllers property in the Ext.application and the only way I can get it to work is to list all the controllers as required.:-?...
-
20 Nov 2012 10:23 AM
- Replies
- 6
- Views
- 931
Yup, that seemed to work perfectly. I just replaced the default theme.html file with the newly generated one and all is working. Thanks!
-
19 Nov 2012 9:58 AM
- Replies
- 6
- Views
- 931
Unfortunately, it doesn't look this works with the full "sencha app build" command since the themeing portions such as compass/sass don't reference the sencha.cfg file but a hard-coded reference to...
-
19 Nov 2012 9:52 AM
- Replies
- 5
- Views
- 1,427
According to this, the answer is yes. You need to it for various parts that deal with creating custom themes. Probably the main "sencha app build" command will not even work because it builds the...
-
12 Nov 2012 8:32 AM
- Replies
- 0
- Views
- 220
Perhaps this is not supported but here is my scenario.
I created a workspace and multiple applications using Sencha Cmd v3.0.0.250
I wanted to reference Ext outside of my workspace directory... -
2 Nov 2012 1:40 PM
- Replies
- 4
- Views
- 458
That's odd. I don't have the same problem when I create just an App and no workspace using 4.1.1a. I'll have to give it a go when I have a second with 4.1.2a
-
30 Oct 2012 12:42 PM
- Replies
- 4
- Views
- 458
Setup:
Win7 64 bit
Sencha Cmd V3.0.0.230
ExtJS 4.1.1a
Commands:
sencha -sdk path/to/4.1.1a generate workspace C:\TestWrkspace
sencha -sdk path/to/4.1.1a generate app Test... -
2 Jul 2012 6:42 AM
- Replies
- 0
- Views
- 302
Ext version tested:
Ext 4.1.0
Browser versions tested against:
Chrome v20 (Windows)
Description:
The maskRe for Number fields is only set on initComponent and is never checked again....
Results 1 to 25 of 52
