1. #1
    Sencha User BonaccorsoP's Avatar
    Join Date
    Jan 2012
    Location
    Palermo (Italy)
    Posts
    6
    Vote Rating
    0
    BonaccorsoP is on a distinguished road

      0  

    Red face Answered: List and fullscreen false

    Answered: List and fullscreen false


    Hi to everyone.
    I've got a problem with List widget.
    I'm trying to develop a small application with Sencha Touch 1.1 for a
    desktop environment that uses a touchscreen monitor and I want to create a not complex
    layout .

    I began creating of a List that has static dimensions and I declared it in this way:

    Code:
    var list = new Ext.List({
                border: '3 3 3 3',
                height : 300,
                width : 400,
                centered: true,
    
    
                fullscreen : false,  //<--- this is my TARGET
    
    
                itemTpl :  '{company} - {price}',
                store : store,
                listeners: {
                    itemtap : {
                        fn : function(){
                            console.log('Hello World')        
                        }
                    },                 
                }            
            });
    
    list.show();
    The list appears to be valid and works fine, but I can't set it in fullscreen FALSE, because it don't renders.
    So i tried to use list methods after setting fullscreen to true

    Code:
    list.setWidth(300);
    list.setHeight(400);
    This way permits to set list's dimension, but on window resize the List return to body size.
    Can you help me ?

    Sorry fo my bad English

    [COLOR=#fafafa !important]

    [/COLOR]


    [COLOR=#fafafa !important]

    [/COLOR]

  2. I've built apps for Chrome and Safari on the desktop just fine.

  3. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    34,107
    Vote Rating
    453
    Answers
    3155
    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 mitchellsimoens has much to be proud of

      0  

    Default


    What do you want to happen? If you set fullscreen to true then the size will be 100% of the height and width of the screen. If it's not in a layout then you need to set the height and width.
    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.

  4. #3
    Sencha User BonaccorsoP's Avatar
    Join Date
    Jan 2012
    Location
    Palermo (Italy)
    Posts
    6
    Vote Rating
    0
    BonaccorsoP is on a distinguished road

      0  

    Default


    Ok Mitchell.
    I'm studing the Sencha Layout System and maybe I understood it.
    Now my question is:
    Is Sencha Touch a reccomended tool for developing a web-application for desktop environment too?
    Testing a few lines of code I observed that Sencha Touch works just on webkit (Chrome & Safari) and I'm afraid to find incompatibility for some framework's functionality in a "standard pc browser".
    What do you think about this?
    [COLOR=#fafafa !important]

    [/COLOR]

  5. #4
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    34,107
    Vote Rating
    453
    Answers
    3155
    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 mitchellsimoens has much to be proud of

      0  

    Default


    I've built apps for Chrome and Safari on the desktop just fine.
    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.

  6. #5
    Sencha User BonaccorsoP's Avatar
    Join Date
    Jan 2012
    Location
    Palermo (Italy)
    Posts
    6
    Vote Rating
    0
    BonaccorsoP is on a distinguished road

      0  

    Default


    Thanks Mitchell,
    I'll try to complete it !
    [COLOR=#fafafa !important]

    [/COLOR]