Search Type: Posts; User: abierbaum
Search: Search took 0.03 seconds.
-
16 May 2013 7:46 AM
- Replies
- 4
- Views
- 293
@jweber Thank you for this. It is exactly what I was looking for to fix a long standing bug I have been seeing.
-
13 May 2013 8:47 AM
Jump to post Thread: Aborting store's proxy load by abierbaum
- Replies
- 5
- Views
- 599
Thanks for the hints. This saved me a *lot* of work. I agree that this should be considered a bug and would love to see it fixed in the store load implementation.
-
16 Jan 2013 12:50 PM
- Replies
- 18
- Views
- 6,700
@anand.arvind Did you ever find a way to do this? I would also be interested in a way to solve this and allow dragging of scrollbars. We are finding a lot of people that want to run their mobile...
-
16 Jan 2013 6:45 AM
- Replies
- 3
- Views
- 298
I have been tracking down a bug in our application and finally took a look at the code for PullRefresh and was a bit surprised at how it works.
Basically if I understand it correctly:
* When... -
29 Dec 2012 1:50 PM
- Replies
- 4
- Views
- 222
Just getting back to this, and no I haven't tried after. I really didn't know it existed or how to use it. Are their some examples somewhere that describe how this works? I checked the event guide...
-
24 Dec 2012 6:32 AM
- Replies
- 2
- Views
- 325
Ext version tested:
Sencha Touch 2.1
Browser versions tested against:
Chrome 23
Description:
It looks like the dataitem update code inside dataview assumes that the view items have been... -
17 Dec 2012 6:53 AM
- Replies
- 4
- Views
- 222
I tried hiddentchange, and it doesn't work correctly for my case. It is fired immediately on the change in hidden state (ie. start of the animation)
I hooked up an event spy to the component to... -
14 Dec 2012 1:44 PM
- Replies
- 4
- Views
- 222
I am writing a ST2 application where I need to allow the user to toggle on/off the display of a panel in the UI. I am using a button that toggles on selection. When the user clicks the button it...
-
18 Nov 2012 8:34 AM
- Replies
- 1
- Views
- 365
I am trying to decipher some of the sencha touch components so I can extend them. It looks like they make pretty extensive use of a capability in the class system that I can't find documented...
-
16 Nov 2012 5:33 PM
Jump to post Thread: Sliding Side Menu by abierbaum
- Replies
- 202
- Views
- 45,281
@in4p Thanks for the pointer. You are right, I totally forgot to regenerate the css file. I don't know why I didn't think of that. Works with no problems now.
-
16 Nov 2012 11:53 AM
Jump to post Thread: List of changes from 2.0 to 2.1 by abierbaum
- Replies
- 1
- Views
- 258
Found it.
For future reference, all releases include a release-notes.html file in the base directory that shows a full history. -
16 Nov 2012 11:30 AM
Jump to post Thread: Sliding Side Menu by abierbaum
- Replies
- 202
- Views
- 45,281
I added a branch on github that has all the code needed to show the issue between 2.0 and 2.1.
See: https://github.com/vrsource/sencha-SlideNavigation/tree/dev/bug_21
if you load the... -
16 Nov 2012 9:51 AM
Jump to post Thread: List of changes from 2.0 to 2.1 by abierbaum
- Replies
- 1
- Views
- 258
Is there a document that lists the detailed changed between 2.0 and 2.1?
I think I remember seeing a changelog document for some of the release candidates in a sticky post, but now I can't find... -
16 Nov 2012 8:54 AM
Jump to post Thread: Sliding Side Menu by abierbaum
- Replies
- 202
- Views
- 45,281
Have you tried ST 2.1.0? I am interested to know if I am the only one seeing the issue or if something is significantly broken.
-
16 Nov 2012 8:28 AM
Jump to post Thread: Sliding Side Menu by abierbaum
- Replies
- 202
- Views
- 45,281
I just tried SlideNavigationView with ST 2.1 release, and it is not working. The main viewport is initialized with everything in the upper left hand corner of the screen.
Has anyone else gotten... -
14 Nov 2012 6:30 AM
Jump to post Thread: Documentation for mixins? by abierbaum
- Replies
- 2
- Views
- 363
Thanks for the quick reply. This is exactly what I wanted to see.
-
13 Nov 2012 1:17 PM
Jump to post Thread: Documentation for mixins? by abierbaum
- Replies
- 2
- Views
- 363
Is there documentation for how to use mixins? I have a situation where I think I want to use a mixin, but I can't find any documentation that tells me exactly how to do it or how it functions.
-
30 Oct 2012 10:42 AM
- Replies
- 2
- Views
- 808
Did you ever find a way to do this? I would also like to reuse custom components in Sencha Architect. Seems like a fairly key requirement for large applications.
-
2 Apr 2012 1:39 PM
- Replies
- 2
- Views
- 323
Here is a stackoverflow posting with a couple of potential options.
http://stackoverflow.com/questions/3304638/test-if-a-selector-matches-a-given-element
summary:
var nodeList =... -
2 Apr 2012 11:12 AM
- Replies
- 2
- Views
- 323
Using the latest ST 2.0 code, the following code doesn't work as I would expect (run inside chrome dev tools). It looks to me like Ext.Element.is doesn't work on elements that are not currently in...
-
27 Mar 2012 6:52 AM
- Replies
- 1
- Views
- 501
I have several objects where my config includes array values. I am trying to determine what the best practice is for setting default values for these arrays.
What makes it a bit tricky is that if... -
27 Mar 2012 4:20 AM
- Replies
- 6
- Views
- 984
It is a bit heavy handed, but this is what I am doing for now. It will go back to ST1 behavior of treating status 0 as a failure.
/*
* Override the parseStatus method to consider 0 as a failure.... -
22 Mar 2012 9:32 AM
- Replies
- 6
- Views
- 984
I updated the example to show requestexception and requestcomplete events. It shows the same problem. When the status code is 0, the requestcomplete is called just as the success handler is called....
-
22 Mar 2012 7:54 AM
- Replies
- 6
- Views
- 984
I had thought of that, but it looks like exceptions only happen if the request is a failure. Since it is considered a success the event doesn't get fired.
-
22 Mar 2012 7:28 AM
- Replies
- 6
- Views
- 984
I am porting a ST1 application and have run into a surprising change in ST2. When I issue an Ext.Ajax.request to a URL and it returns a status of 0, ST2 now considers that to be a success. (ST1...
Results 1 to 25 of 92
