Search Type: Posts; User: rohdef
Search: Search took 0.02 seconds.
-
23 Nov 2012 5:35 AM
Jump to post Thread: sencha app build production by rohdef
- Replies
- 5
- Views
- 341
It probably lacks some of the hidden files/folders you get when creating an ST 2 app with Sencha Cmd
-
14 Nov 2012 2:48 AM
Jump to post Thread: How to listen for rendering done? by rohdef
- Replies
- 2
- Views
- 609
Show is fired before painted in my tests, I did something along the lines of:
Ext.define('Project.view.SomeList', { extend: 'Ext.List', xtype: 'someList', store: 'Whatever', config: { ... -
12 Nov 2012 3:11 AM
Jump to post Thread: How to listen for rendering done? by rohdef
- Replies
- 2
- Views
- 609
I have some code that adjusts layout based on the rendered html, thing is that I don't know how to listen for it. I have something along the lines of:
Ext.define('Project.Utilities', {
... -
19 Jul 2012 6:42 AM
- Replies
- 2
- Views
- 872
Just had the same problem. No better solution from my part though. Epic fail to Apple for that bug, I have to wonder how it could even appear in the first place.
-
21 Jun 2012 9:12 AM
- Replies
- 5
- Views
- 1,054
When you want to get exceptions I would say that local storage is a really bad way, since you woudn't be able to retrieve those, unless you have the device.
Much rather would I make some kind of... -
18 Jun 2012 5:18 AM
Jump to post Thread: View not getting initialized by rohdef
- Replies
- 1
- Views
- 232
In mainLaunch
var view = Ext.create("NPD.view.MyView")
Ext.Viewport.add(view);
Also a good idea to have a views section in your application that loads the views you need to start with. I could... -
18 Jun 2012 5:12 AM
- Replies
- 7
- Views
- 2,114
A little Googling showed this: http://webmasters.stackexchange.com/questions/4459/keep-iphone-browser-from-turning-numbers-into-links. I don't know if it works, but worth a try.
-
17 Jun 2012 1:54 AM
- Replies
- 4
- Views
- 2,074
Eclipse does some, but I have to admit that I'm not particular satisfied, although a lot can be improved but updating the settings. IMO it's too slow.
As far as I can see it does analyze the js... -
16 Jun 2012 4:34 AM
Jump to post Thread: Start up page. by rohdef
- Replies
- 8
- Views
- 1,030
Question for the Sencha people:
Where are the documentation for these settings actually placed? (Look at onItemAdd, just didn't have a direct link to that since, it links the the parent version)... -
16 Jun 2012 4:28 AM
Jump to post Thread: Start up page. by rohdef
- Replies
- 8
- Views
- 1,030
Use this:
{
xtype: 'tabpanel',
items: [{
xtype: 'splashpanel',
hidden: true // This is the magic line -
16 Jun 2012 3:37 AM
Jump to post Thread: drag event buffer option question by rohdef
- Replies
- 2
- Views
- 465
How long do you wait? Afaik there can be some delays on things like that because it's put in some kind of stack or queue that's executed when it fits into the JavaScripts engine schedule. (Anyone who...
-
16 Jun 2012 3:27 AM
Jump to post Thread: Start up page. by rohdef
- Replies
- 8
- Views
- 1,030
Hint; read the documentation, for instance the getting started guide actually answers this: http://docs.sencha.com/touch/2-0/#!/guide/first_app
-
15 Jun 2012 10:18 AM
- Replies
- 11
- Views
- 1,144
I have a nagging feeling that your controller somehow isn't loaded, try adding a launch to your controller like this:
Ext.define('myMoney.controller.Inicio', { extend: 'Ext.app.Controller',... -
15 Jun 2012 10:09 AM
Jump to post Thread: android packaging error by rohdef
- Replies
- 17
- Views
- 4,801
A very wild guess is that your path is:
C:/AppServ/fabi-release-key.keystore
and the signing tool relies on the default way to write Windows paths:
C:\AppServ\fabi-release-key.keystore ... -
15 Jun 2012 10:01 AM
- Replies
- 4
- Views
- 942
If I'm not much mistaken the proxies (or at least jsonp) actually include attributes for getting paginated results from the server. If it's an option that should greatly improve performance to only...
-
15 Jun 2012 9:55 AM
- Replies
- 14
- Views
- 4,688
I don't know if you have seen it, but this seems to answer your question: http://www.sencha.com/forum/showthread.php?190000-Has-Many-with-localstorage&p=762500&viewfull=1#post762500
-
15 Jun 2012 12:44 AM
- Replies
- 2
- Views
- 366
I'm not entirely sure of the logic inside XTemplates, but I would suspect that you don't want the itemTpl to be a list, but a string. I suspect that it reads the array tpl as:
first item write:... -
15 Jun 2012 12:32 AM
Jump to post Thread: android packaging error by rohdef
- Replies
- 17
- Views
- 4,801
Ok I see multiple problems here:
First off most of the error traces don't tell squad, please make it invoke ant with some kind of debug parameter or increase the info level. I'm pretty sure the... -
15 Jun 2012 12:18 AM
- Replies
- 14
- Views
- 4,688
I think you should define a localstorage for your products and use the foreign key to select the right products when loading. I think the reason for you problem is found in the documentation, since...
-
15 Jun 2012 12:08 AM
- Replies
- 11
- Views
- 1,144
Could be that it graps a button on the toolbar. Afaik that should be possible, since you just search for a button somewhere inside 'inicio'.
Try adding an id to the button:
xtype:... -
14 Jun 2012 1:20 PM
- Replies
- 11
- Views
- 1,144
Wow, I've must have been coding too long, should have noticed a some other details. Ah well, I'll just try again :)
You're trying to do a ref down in the control area, what you should do is:
... -
14 Jun 2012 12:38 PM
- Replies
- 11
- Views
- 1,144
Also make sure that you actually have loaded the controller by having a:
controllers: ['myMoney.controller.Inicio'],
in your Ext.application. -
14 Jun 2012 12:36 PM
- Replies
- 11
- Views
- 1,144
Loginform isn't defined, you could give it an id and then in your refs section do:
refs: {
inico....
loginForm: '#myLoginFormId',
} -
14 Jun 2012 10:19 AM
- Replies
- 6
- Views
- 783
Hope this will help.
I've just been fighting with associations all day and I finally got some examples to work. Here's what I've discovered.
First off:
hadMany: {
model:... -
7 Jun 2012 3:07 AM
- Replies
- 7
- Views
- 2,284
This is quite interesting. I think what's happening is that Apple is seeing that Objective C is being outperformed (no wonder, Objective C looks like me in the morning) and can't handle it.
That...
Results 1 to 25 of 67
