Search Type: Posts; User: Ageris
Search: Search took 0.02 seconds.
-
20 Apr 2012 5:13 AM
- Replies
- 13
- Views
- 2,713
Good to know I'm not the only one seeing this. I worked around the problem by setting the show animation on initialization and setting the hide animation on first show (an event listener with...
-
17 Apr 2012 5:03 AM
Jump to post Thread: Create class instance from xtype by Ageris
- Replies
- 1
- Views
- 501
I have a definition of a class with parameters in an object like so:
{
xtype: 'coolpanel',
width: 200,
...
}
I want to do something like this Ext.create("MyApp.view.CoolPanel")... -
16 Apr 2012 9:00 PM
Jump to post Thread: Creating modular applications by Ageris
- Replies
- 2
- Views
- 457
I've modified my architecture to contain all the JS code that is needed by the modules. The are now basically only sets of configuration data for the pre-existing classes. This seems to work ok. I...
-
16 Apr 2012 8:51 PM
- Replies
- 12
- Views
- 2,931
Yeah, but PhoneGap has done something actively to fix the issue. I think they move the localstorage file back to its old location or something like that. Sencha does not do that yet as far as I know....
-
15 Apr 2012 12:45 AM
- Replies
- 12
- Views
- 2,931
I don't think so. The way I understood it is that localstorage is now stored under a "temporary" folder on the device regardless of its origin (WebView or home screen). This means that if the space...
-
12 Apr 2012 10:55 PM
Jump to post Thread: Creating modular applications by Ageris
- Replies
- 2
- Views
- 457
I'm trying to create a modular application that only loads the parts it needs at any given time.
I have a set of "modules" that are simply an abstraction for a set of views, controllers, stores... -
12 Apr 2012 10:23 PM
Jump to post Thread: Listening for pinch events by Ageris
- Replies
- 2
- Views
- 614
Thanks! That worked nicely :)
So there is no way to hook up the pinch event using refs and controls?
Also, do you have any tip on the slideDown animation? -
11 Apr 2012 11:09 PM
Jump to post Thread: Listening for pinch events by Ageris
- Replies
- 2
- Views
- 614
Does anyone know of a way to hook up a controller such that it will handle all "pinch" events throughout my application? I want a single controller to be responsible for showing a global tool bar...
-
11 Apr 2012 10:27 PM
- Replies
- 13
- Views
- 2,713
These are the exact steps (in order) I did to reproduce the problem:
Downloaded source from here: http://www.sencha.com/products/touch/download/
Extracted to folder... -
10 Apr 2012 1:33 AM
- Replies
- 12
- Views
- 2,931
Before you put too much effort into using localstorage you should read this:
http://www.softwareindustryinsights.com/2012/04/building-hybrid-apps-important-change-in-ios-5-1/
Basically what it... -
10 Apr 2012 1:26 AM
- Replies
- 13
- Views
- 2,713
I just tried creating a blank application from scratch, adding a simple panel:
Ext.define('Play.view.SimplePanel', {
extend: 'Ext.Panel',
config: {
showAnimation:... -
3 Apr 2012 9:14 PM
- Replies
- 13
- Views
- 2,713
But I'm not destroying anything. This is the exact code and the last line is where it fails:
mainViewFullName = 'InBrief.view.'+this.get('mainView'); //Becomes: 'InBrief.view.ArticleNavigator'... -
3 Apr 2012 6:09 AM
- Replies
- 13
- Views
- 2,713
No, I'm simply starting upp the application and adding a panel with show and hideAnimation set.
-
3 Apr 2012 1:01 AM
- Replies
- 1
- Views
- 322
I found the solution. It seems I was overriding the "load" method incorrectly.
-
3 Apr 2012 1:00 AM
- Replies
- 13
- Views
- 2,713
I am dynamically adding panels to a view and I want to animate their transitions. This is the structure:
Viewport
-- TilePanel
Both panels are inserted dynamically at runtime using this... -
2 Apr 2012 9:38 PM
- Replies
- 1
- Views
- 322
I have an application that automatically loads a menu structure from ajax when starting up. Once done it fires an event on a global "event sink" object which other objects may listen to. The event...
-
2 Apr 2012 2:44 AM
- Replies
- 3
- Views
- 418
Also: Why does the documentation show the getFlex method on the button if it's not available?
-
1 Apr 2012 11:45 PM
- Replies
- 3
- Views
- 418
Thanks for the help. I've moved the code out and overridden the initialize function. I also noticed that I'm actually setting the flex value on the parent Panel object and not the button itself. I...
-
1 Apr 2012 9:53 PM
- Replies
- 3
- Views
- 418
I might be missing something fundamental here, but I cannot seem to figure out why this does not work:
Ext.define('InBrief.view.TileButton', {
extend: 'Ext.Button',
xtype: 'tilebutton',...
Results 1 to 19 of 19
