Search Type: Posts; User: eyepoker
Search: Search took 0.02 seconds.
-
13 Jul 2012 6:54 AM
Jump to post Thread: Add gesture to panel by eyepoker
- Replies
- 1
- Views
- 312
I need to add gestures to a panel - pinch in/out. Ext.event.recognizer.Pinch seems to be what i want... how would i go about adding this to a panel via Architect?
-
15 Mar 2012 8:19 AM
Jump to post Thread: xtemplate member function issue by eyepoker
- Replies
- 1
- Views
- 340
Hello,
I can't get anything to print out from my template if i add the member formatting function as seen below - i suspect it is because my reference to the "amount" value is incorrect due to its... -
12 Mar 2012 4:18 PM
- Replies
- 6
- Views
- 719
If you remember this thread after the training I'd like to hear what it was like. Have been thinking of it myself.
-
7 Mar 2012 6:51 PM
- Replies
- 6
- Views
- 719
sorry for the delay, have been traveling...
well, i think it was worth doing just for the documentation. the training material is in a 8 1/2 x 11 spiral-bound tome - code samples from layout to... -
7 Mar 2012 6:16 PM
Jump to post Thread: previous next in forms on iPhone by eyepoker
- Replies
- 1
- Views
- 470
have you tried using normal text fields, then when focus is applied, blur the field and show the desired picker?
-
6 Mar 2012 12:15 PM
Jump to post Thread: simFla.ux.plugins.signaturePad by eyepoker
- Replies
- 54
- Views
- 19,049
unfortunately, no, you can't. you have to test on-device. what i did was get the captured base 64 and displayed it in a test div to see what i got.
-
6 Mar 2012 8:58 AM
Jump to post Thread: simFla.ux.plugins.signaturePad by eyepoker
- Replies
- 54
- Views
- 19,049
i used the phonegap canvas plugin for android 2x.... assuming you are making an app.
-
1 Mar 2012 5:16 PM
- Replies
- 6
- Views
- 719
i took a course last year, not open training though, it was the fast-track to sencha 1 through Fig Leaf.
You spend 3 days hands on in front of a computer going through the course material. At the... -
1 Mar 2012 5:06 PM
- Replies
- 6
- Views
- 648
i think i see the issue.... all industries looks like an array already - don't wrap it in brackets, thats an array literal you are creating whose only array item is itself an array of objects......
-
29 Feb 2012 7:54 AM
- Replies
- 1
- Views
- 470
if you put id's on your buttons you can use the show() and hide() methods on them, like:
Ext.getCmp('button_one').hide();
After that, my approach would be to not bother about checking if... -
29 Feb 2012 7:23 AM
- Replies
- 6
- Views
- 648
yep, as long as your array is an array of config objects. the answer is here:
http://docs.sencha.com/touch/1-1/#!/api/Ext.form.Select
if you still have questions then please post your... -
21 Feb 2012 9:41 PM
- Replies
- 4
- Views
- 1,404
We would need to see more of your code but seems to me that the "viewport" panel doesn't exist (or you have a typo).
Instead of "viewport", use the name of the Panel whose items... -
21 Feb 2012 11:14 AM
- Replies
- 8
- Views
- 7,554
have you guys tried just blurring the input element? works for me. Is there a need to do philip's method? seems like a lot if blur does the job.
i.e., Ext.getCmp('componentID').blur(); -
15 Feb 2012 3:03 PM
- Replies
- 3
- Views
- 1,401
@ siebmanb
Thats because the text field has focus, or at least i have seen this occur when a field had focus. You have to blur it to prevent what you are describing.
If you gave the text field... -
25 Jan 2012 8:35 AM
Jump to post Thread: simFla.ux.plugins.signaturePad by eyepoker
- Replies
- 54
- Views
- 19,049
From what I can tell you shouldn't be getting the desired result for android 2.x devices. I have a Galaxy S2 (2.3.6) and I literally get this short string as the output: "data:". This is consistent...
-
24 Jan 2012 3:37 PM
Jump to post Thread: simFla.ux.plugins.signaturePad by eyepoker
- Replies
- 54
- Views
- 19,049
hello, I'm using the signature pad from simon (thanks for this!), but have run into the same issue as was noted a page or two back on android, namely that we don't get any image data in anything...
-
16 Jan 2012 5:40 PM
Jump to post Thread: multi-column select? by eyepoker
- Replies
- 1
- Views
- 453
oh... looks like its Ext.Picker! ;)
-
16 Jan 2012 5:33 PM
Jump to post Thread: multi-column select? by eyepoker
- Replies
- 1
- Views
- 453
is there a way to create a multi-column select, behaving /appearing like the date picker?
-
16 Jan 2012 5:27 PM
- Replies
- 1
- Views
- 429
do this for every Ext.Msg:
var myMsg = Ext.Msg.alert('test','test');
myMsg.doComponentLayout(); -
11 Jan 2012 1:40 PM
Jump to post Thread: tap event behaves like "mouseup" by eyepoker
- Replies
- 2
- Views
- 644
that works, thanks.
-
11 Jan 2012 9:28 AM
Jump to post Thread: tap event behaves like "mouseup" by eyepoker
- Replies
- 2
- Views
- 644
is there a way to get something akin to "mousedown"? I find that "tap" doesn't fire until i lift my finger off of the screen. i need it to fire as soon as my finger touches the element, not after i...
-
11 Jan 2012 9:24 AM
- Replies
- 13
- Views
- 2,698
we just bought two copies for the office - looking forward to having a look as soon as they arrive!
-
10 Jan 2012 8:00 AM
Jump to post Thread: activate event fires only once by eyepoker
- Replies
- 7
- Views
- 1,395
i think i see what is happening.
my setup is this:
var parentPanel = new Ext.Panel({
items:[childPanel]
}); -
10 Jan 2012 7:24 AM
Jump to post Thread: activate event fires only once by eyepoker
- Replies
- 7
- Views
- 1,395
yes, but thats the way that I had it to begin with, see the first code sample above.
-
10 Jan 2012 7:19 AM
Jump to post Thread: activate event fires only once by eyepoker
- Replies
- 7
- Views
- 1,395
the listener was structured incorrectly, the correct way appears to be:
listeners:{
activate:{
fn:function(){
console.log('activated');
}
}
Results 1 to 25 of 66
