Search Type: Posts; User: dobie_
Search: Search took 0.02 seconds.
-
21 Feb 2013 4:45 PM
Jump to post Thread: Carousel ActiveItem by dobie_
- Replies
- 3
- Views
- 272
I'm experiencing this issue with Sencha Touch 2.1.1
-
24 May 2012 4:33 PM
- Replies
- 1
- Views
- 484
Hi,
I have a Sencha Touch 2.0.1 app running here: http://www.joppio.com/
I'm having trouble populating the dataview store when users click the "Top 20" button in the bottom tab bar.
Here's the... -
7 Mar 2012 12:43 PM
Jump to post Thread: Sencha SDK Tools for Linux ? by dobie_
- Replies
- 20
- Views
- 5,703
I used to develop sencha applications in Linux. Now I have a mac. My development process hasn't changed at all. It's completely possible to develop sencha touch apps without the SDK tools. I use the...
-
28 Feb 2012 5:06 PM
- Replies
- 3
- Views
- 854
Yeah -- same problem when element isn't set.
-
27 Feb 2012 2:19 PM
- Replies
- 3
- Views
- 854
I'm trying to capture the blur event on a search field. It works on my laptop in Chrome but not on the device when I click the 'Done' button in the on-screen keyboard. What's going on? I'm using an...
-
20 Feb 2012 5:39 PM
Jump to post Thread: Extending Ext.data.JsonP [beta3] by dobie_
- Replies
- 1
- Views
- 597
Well basically... duh what am I thinking. Singletons require special attention to be overridden, since only one can be instantiated.
What I ended up doing is just copy and pasting the whole class.... -
20 Feb 2012 3:39 PM
Jump to post Thread: Extending Ext.data.JsonP [beta3] by dobie_
- Replies
- 1
- Views
- 597
I'm trying to override Ext.data.JsonP to just call $.jsonp via the jquery-jsonp extension (https://github.com/jaubourg/jquery-jsonp) because it has error handling. When I try to extend Ext.data.JsonP...
-
17 Feb 2012 3:37 PM
- Replies
- 21
- Views
- 4,078
Is this fixed in ST2-beta3? I'm still having this issue on iOS in beta3, presumably because there is no <form> around the search input.
edit: nevermind, I didn't realize the search field needs to... -
9 Feb 2012 10:04 AM
Jump to post Thread: [B1] Bug in Ext.dom.applyStyles() by dobie_
- Replies
- 4
- Views
- 676
According to the beta-2 changelog, this made it in the release: [TOUCH-1771] Fixed applyStyles error and cleaned up some regex caching
But for me the override is still necessary when using beta 2.... -
1 Feb 2012 4:23 PM
- Replies
- 2
- Views
- 727
I just upgraded to ST2 beta 1, and I'm getting an error in my app, but the cause is hard to trace:
NOT_FOUND_ERR: DOM Exception 8
I know this is vague, but hopefully someone else has a similar... -
25 Jan 2012 12:33 PM
- Replies
- 7
- Views
- 842
I ended up fixing it by just extending Ext.Button and using the extended class. I couldn't get Ext.overrides to work... strange.
-
25 Jan 2012 12:17 PM
- Replies
- 7
- Views
- 842
Hey,
Thanks for fixing it. That override code doesn't seem to be overriding the tap for me... I put some log messages in the doTap function that aren't getting called. -
24 Jan 2012 6:40 PM
- Replies
- 7
- Views
- 842
Here's a test case to see the behavior I'm talking about:
Ext.setup({
viewport: {
layout: {
type: 'hbox',
align: 'middle'
},
defaults: { -
24 Jan 2012 5:11 PM
- Replies
- 7
- Views
- 842
iOS 5.0.1. I'll try to put together a test case. Maybe it's related to something else going on in my app as well.
-
24 Jan 2012 3:48 PM
- Replies
- 7
- Views
- 842
I have a searchfield that's getting focused on my iPod Touch (not on chrome on my desktop) when I call setWidth() on it. It's annoying because it causes the on-screen keyboard to appear. This started...
-
24 Jan 2012 1:28 PM
- Replies
- 1
- Views
- 611
Hello, I have a store that contains lots of nested data like this:
screen_shot_images: Array[4]
0: Object
MyApp::Image: Object
alt_text: "iPhone Screenshot 1"
... -
18 Jan 2012 3:49 PM
- Replies
- 3
- Views
- 960
I would look at window.innerWidth and window.innerHeight and infer the orientation from there.
-
16 Jan 2012 2:59 PM
Jump to post Thread: Custom Component Workflow? by dobie_
- Replies
- 4
- Views
- 1,042
Have you read this document?
http://docs.sencha.com/touch/2-0/#!/guide/class_system -
16 Jan 2012 12:13 PM
Jump to post Thread: SENCHA TOUCH2 RELEASE DATE by dobie_
- Replies
- 5
- Views
- 1,717
How can the developers give us a release date when they themselves don't know? Let's stop bothering them.
-
12 Jan 2012 3:29 PM
- Replies
- 10
- Views
- 1,906
I would also like to be able to set animation to false. Right now I get an error with .setReverse().
I've seen some weird problems with setting it to type: 'slide', duration: 0, so for now I'm... -
10 Jan 2012 3:06 PM
Jump to post Thread: setActiveItem direction by dobie_
- Replies
- 1
- Views
- 734
I have a container with a card layout set up with the sliding animation. Every time I call setActiveItem() on it, it slides left. I'd like it to reverse the slide animation depending on which child...
-
5 Jan 2012 5:13 PM
Jump to post Thread: <table> in DataView by dobie_
- Replies
- 4
- Views
- 1,698
Hey anthoang,
I ended up doing what you suggested -- making each row a separate table. It works out just fine :). The DOM is slightly bigger but whatever. -
4 Jan 2012 6:10 PM
Jump to post Thread: <table> in DataView by dobie_
- Replies
- 4
- Views
- 1,698
Say I have a DataView like this...
Ext.create('Ext.DataView', {
id: 'myData',
itemTpl: '<tr class="dataRow"><td>{someData}</td></tr>',
store: someStore
}); -
3 Jan 2012 1:06 PM
- Replies
- 1
- Views
- 685
Hello,
I have a panel that I want to put an Ext.Image in. I've tried this:
{
xtype: 'image',
src: 'images/logo.png',
height: 300,
... -
16 Dec 2011 1:23 PM
- Replies
- 10
- Views
- 2,337
Oh cool! I tried that but I missed the call to this.callParent(). I was trying the old style this.superclass.initComponent.call(this) type thing.
Results 1 to 25 of 47
