Search Type: Posts; User: maddhippy
Search: Search took 0.03 seconds.
-
23 Jan 2013 1:51 PM
- Replies
- 1
- Views
- 313
I am able to run 'build testing' fine. It creates the correct index.html, an app.json, etc.
But when I run build production, it creates the js resources and the delta folders but no index.html or... -
4 Dec 2012 1:59 PM
Jump to post Thread: compile and sencha touch by maddhippy
- Replies
- 0
- Views
- 270
Ok, sorry for the noobness, but what are the steps to using compile instead of build for a sencha touch app? The docs seem to only walk you through using build app. Build, for one, says that is...
-
16 Nov 2012 9:32 AM
- Replies
- 458
- Views
- 124,257
Hi, I'm using DJN with Sencha; It's been working perfectly until forms.
When I create a form like is said in the docs as so:
Ext.define('mdms.mynote.view.components.MyNoteForm',{ ... -
14 Nov 2012 10:32 AM
- Replies
- 2
- Views
- 286
requires:['Ext.navigation.View']
-
8 Nov 2012 2:27 PM
- Replies
- 2
- Views
- 286
My setup:
ST 2.1 RC2
Cordova 2.2
iPhone Simulator
I am using sencha-touch-all-debug.js
When I create a component that extends Ext.navigation.View,and have... -
19 Jun 2012 8:34 AM
- Replies
- 30
- Views
- 4,878
I'm not sure, but my download of ST2 doesn't have an sdk folder in it.
36352
So, my config.rb in the resources/sass directory is :
# Get the directory that this configuration file exists... -
18 Jun 2012 12:43 PM
- Replies
- 7
- Views
- 1,374
I was getting this error.
I update to 2.0.1 and didn't copy all of the files...
Specifically, make sure that these are there:
resources/themes/vendor
resources/themes/compass_init.rb
... -
14 Jun 2012 8:12 AM
Jump to post Thread: QR Code reader by maddhippy
- Replies
- 3
- Views
- 1,116
I can +1. We use this Android plugin and this iOS plugin in our production app and it works beautifully.
-
4 Jun 2012 7:59 AM
- Replies
- 3
- Views
- 777
I don't think the singleton object is create before that config property in Main is loaded.
Try setting that html in the constructor. -
31 Mar 2012 4:48 PM
- Replies
- 8
- Views
- 1,052
I am having this issue as well with Android browser on 2.2 and 2.3.
Instead of a parentPanel, I am adding to Ext.Viewport, but the rest is the same. I add it the first time and it works, hit the... -
28 Mar 2012 1:00 PM
- Replies
- 3
- Views
- 992
that was my point.
I'm trying to add a sencha listener to document, but am not sure how to get a reference to it. -
28 Mar 2012 10:32 AM
- Replies
- 3
- Views
- 992
Ok, this is probably a dumb question:
How do I add a managed event listener for phonegap events?
Their documentation has
document.addEventListener('resume', someFn,false);
I would like... -
22 Mar 2012 7:06 AM
Jump to post Thread: DataItem, useComponent, and tpl by maddhippy
- Replies
- 3
- Views
- 574
a button for every item.
-
21 Mar 2012 11:13 AM
Jump to post Thread: DataItem, useComponent, and tpl by maddhippy
- Replies
- 3
- Views
- 574
I am trying to get the DataItem to work according to this guide: http://docs.sencha.com/touch/2-0/#!/guide/dataview
Using the dataMap of setText like the example works fine, but I was hoping to be... -
10 Mar 2012 11:17 AM
- Replies
- 5
- Views
- 859
Yes, it is working for me in Android. I do know that Android has a timeout error with setting the height of Ext.Viewport. I've found that some of my earlier events I have to use...
-
9 Mar 2012 11:38 AM
Jump to post Thread: Ext.create vs. xtype by maddhippy
- Replies
- 2
- Views
- 465
Yeah, it must be something in my tab. they are all lists or data views, which are more picky than most.
I didn't realize I could create my own config object: tabs and keep the list of xtypes in... -
8 Mar 2012 10:54 AM
Jump to post Thread: Ext.create vs. xtype by maddhippy
- Replies
- 2
- Views
- 465
I am trying to add a tab to a tabpanel.
if I do:
myTabPanel.add({xtype:'tabclass-xtype'})
it works.
But -
7 Mar 2012 4:02 PM
Jump to post Thread: best way to display hasMany by maddhippy
- Replies
- 0
- Views
- 229
Ok, so I've got a list of objects which is downloaded at startup. Each object has a few hasMany associations with child objects. I have these setup in the models with hasMany associations on the...
-
7 Mar 2012 3:12 PM
- Replies
- 10
- Views
- 1,294
Oh, my bad I missed that.
It looks like you are using the config object when you create the panel. Usually, you use the config object when you are extending a class using Ext.define not when you... -
7 Mar 2012 2:25 PM
- Replies
- 10
- Views
- 1,294
Well, I'm not sure if this was just a copy/paste issue, but if your ref is going to MainV, then this.getMain().add is going to add to the outer panel, not the tabPanel.
But that wouldn't throw... -
7 Mar 2012 7:56 AM
- Replies
- 10
- Views
- 1,294
You can actually specify a tabBar, which I do to specify a layout and a custom ui. I'm not sure it's documented, though. And I tested it and it doesn't seem to replicate your issue.
I was... -
6 Mar 2012 10:15 AM
- Replies
- 10
- Views
- 1,294
Try setting the tabBar config.
Mine is :
tabBar:{
docked: 'bottom',
layout: {
pack: 'center'
}
} -
6 Mar 2012 9:51 AM
- Replies
- 5
- Views
- 859
I don't know if you're using the MVC structure, but if you did, the way I did it was on each controller that I wanted to change with an orientation change I had:
config:{
control:{
... -
2 Feb 2012 7:15 AM
Jump to post Thread: Hiding the NavigationBar by maddhippy
- Replies
- 2
- Views
- 1,193
Nope, I didn't know it was out. I was using PR4. It works fine in Beta 1. thanks!
-
1 Feb 2012 2:38 PM
Jump to post Thread: Hiding the NavigationBar by maddhippy
- Replies
- 2
- Views
- 1,193
Hi, trying to hide the navigationBar in a Navigation View by setting it to false like:
Ext.define('dms.view.AppContainer', {
extend: 'Ext.navigation.View',
xtype: 'app-container',
...
Results 1 to 25 of 36
