Search Type: Posts; User: jmcolyer

Search: Search took 0.03 seconds.

  1. I was able to get it working by adding by the following listener to each of my accordion items.



    // workaround for EXTJSIV-7642 (not working)
    listeners: {
    expand: function(item) {
    ...
  2. Is there an override for this? The one mentioned above doesn't work. Also, I couldn't find the jira entry in any of the recent release notes.
  3. Replies
    8
    Views
    283
    I ended up downloading SA 2.2 (in a different directory to be safe). Everything worked fine in my existing projects after updating them. As a side note...I had to use fiddler to get around the proxy...
  4. Replies
    8
    Views
    283
    Has the auto-upgrade been shipped? I heard it would be "this week", but I haven't gotten it. I just want to make sure my companies firewall isn't blocking it.
  5. +1
  6. Change your Home view to extend navigation view instead of container. Container doesn't have a push method. extend: 'Ext.navigation.View'
  7. That would be very handy. It's a lot faster than deploying to the devices and would be nice when initially developing an app.
  8. Vijay,
    I'd recommend you checking out the extdirectspring implementation for Java. There's a comprehensive set of examples here. https://github.com/ralscha/extdirectspring-demo
    Jeff
  9. Has anyone attempted to create a Bing Maps extension? I've seen GeoExt2, but that's using OpenLayers and I want to stay away from pulling in too many libraries.
  10. Replies
    6
    Views
    1,031
    Hello Phil..how's the progress? Any chance of getting a beta version to test out?
  11. Replies
    6
    Views
    1,031
    +1 for getting it to work in 2.1
  12. @frankbolviken - Look back a couple pages in this post. I've updated it to 4.1 and it's working fine for me.

    Jeff
  13. Replies
    5
    Views
    2,293
    Look in the extjs/examples/app folder that comes with the download.
  14. I should also point out one more thing. In the ux you'll see this line:

    itemCls: ['x-tabpanel-child', 'x-vertical-tab-panel'],


    This use to be

    itemCls: 'x-tabpanel-child'...
  15. I've updated this for 4.1. NOTE: There is currently a bug in beta 2 EXTJSIV-5244 see: ...
  16. Here's an example for you using the VerticalTabPanel extension (I did have to make some updates to this). Once launching this keep clicking on tabs. You will eventually get an array size exception...
  17. Please change this (4.1-b2):



    configureItem: function(item) {
    var me = this,
    ownerItemCls = me.owner.itemCls,
    addClasses = me.itemCls || [];

    ...
  18. Replies
    21
    Views
    9,371
    I fixed this in my case by explicitly passing in an array.

    change itemCls : 'x-class-1 x-class-2' to itemCls: ['x-class-1', 'x-class-2']
  19. Replies
    21
    Views
    9,371
    I have a similar problem, which appears to be the same root cause. When I have multple classes on a card layout I have the same issue. Ex:
    itemCls: 'x-class-1 x-class2'

    Now in addCls an object...
  20. Yes. It works on 4.0.6 also, just not 4.1-beta.

    EDIT: I should also mention that I had to make a few tweaks to the component. There were a couple core methods that didn't exist any longer.
  21. Has anyone tested this with the new 4.1 Beta. I'm using a border layout with the Vertical Panel in the center, and it appears to be overwriting the north region.
  22. Replies
    71
    Views
    20,683
    Jeet,

    Try annotating your controller with @Controller

    Jeff
Results 1 to 22 of 22