1. #1
    Sencha User
    Join Date
    Mar 2012
    Posts
    103
    Vote Rating
    0
    Answers
    4
    izak18 is on a distinguished road

      0  

    Default Unanswered: Image resize with two fingers

    Unanswered: Image resize with two fingers


    Hi everybody! I have a problem and I can't resolve it!
    I have a dataview with some images, this is my code:

    Code:
    var imageView = new Ext.DataView({
        id: 'imageView',
        store: catalogoStore,
        itemSelector: 'div.thumb-wrap',
        multiSelect: false,
        tpl:
        '<div class="contenedor2" align="center">' +
        '<span id="dlModelos" class="hidebr">' +
        '<tpl for=".">' +
        '<div class="thumb-wrap"><img src="{url}" title="{name}" width="500" height="500"><br /><br />' +
        '</tpl>' +
        '</span>' +
        '</div>'
    });
    
    
    var imageForm = new Ext.form.FormPanel({
        id: 'imageForm',
        fullscreen: true,
        layout: 'fit',
        cardAnimation: 'slide',
        scroll: 'vertical',
        dockedItems: [
        {
            xtype: 'toolbar',
            title: 'Material'
        }],
        items: [imageView]
    });
    
    
    catalogoView = Ext.extend(Ext.Panel,
    {
        id: 'catalogoView',
        fullscreen: true,
        layout: 'card',
        cardAnimation: 'slide',
        items: [imageForm]
    });
    
    
    Ext.reg('catalogoView', catalogoView);

    It works fine but when I try to expand the image with my two fingers, nothing happens, the image just move but nothing more, what do I have to do? Please!


    Thanks in advance

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,714
    Vote Rating
    438
    Answers
    3113
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Are you handling the event?
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

Tags for this Thread