Search Type: Posts; User: eyepoker

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. 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?
  2. 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...
  3. If you remember this thread after the training I'd like to hear what it was like. Have been thinking of it myself.
  4. 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...
  5. have you tried using normal text fields, then when focus is applied, blur the field and show the desired picker?
  6. 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.
  7. Replies
    54
    Views
    19,049
    i used the phonegap canvas plugin for android 2x.... assuming you are making an app.
  8. 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...
  9. 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......
  10. 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...
  11. 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...
  12. 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...
  13. 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();
  14. @ 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...
  15. 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...
  16. 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...
  17. Replies
    1
    Views
    453
    oh... looks like its Ext.Picker! ;)
  18. Replies
    1
    Views
    453
    is there a way to create a multi-column select, behaving /appearing like the date picker?
  19. do this for every Ext.Msg:



    var myMsg = Ext.Msg.alert('test','test');
    myMsg.doComponentLayout();
  20. that works, thanks.
  21. 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...
  22. we just bought two copies for the office - looking forward to having a look as soon as they arrive!
  23. Replies
    7
    Views
    1,395
    i think i see what is happening.

    my setup is this:



    var parentPanel = new Ext.Panel({
    items:[childPanel]
    });
  24. Replies
    7
    Views
    1,395
    yes, but thats the way that I had it to begin with, see the first code sample above.
  25. 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
Page 1 of 3 1 2 3