1. #11
    Sencha User
    Join Date
    Nov 2012
    Posts
    17
    Vote Rating
    0
    marco1991 is on a distinguished road

      0  

    Default


    hi,

    i'm using this grid.. is pretty good but how can I put a spinner (xtype: spinnerfield) in a cell?

    thanks!

  2. #12
    Sencha User raskri's Avatar
    Join Date
    Dec 2008
    Location
    Stavanger, Norway
    Posts
    72
    Vote Rating
    0
    raskri is on a distinguished road

      0  

    Default Using the command tool with this Grid - getting errors

    Using the command tool with this Grid - getting errors


    This UX works perfectly! Thanks!

    What is the preferred way to include these files in my app?

    In app.js I have:
    Code:
    Ext.Loader.setPath({
        'Ext': '../touch/src',
        'MyApp': 'app',
        'Ext.ux.touch.grid': 'ux/Ext.ux.touch.grid'
    });
    
    // in one of my panels i require the List
    ...
    requires: ['Ext.ux.touch.grid.List'],
    ...
    This works fine when I run in "dev" mode. But when I compile with Sencah Cmd(sencha app build production), I get Errors.

    App structure:
    Code:
    /
    app.js
    app/
    ux/Ext.ux.touch.grid/List
    Getting the error:
    Code:
    com.sencha.exceptions.ExBuild: Failed to find any files for Ext.ux.touch.grid.List (x-app-build#273)   runAppBuild (x-app-build:273)   [anonymous] (x-app-build:545)   x_app_build (x-app-build:543)   <script> (anonymous:1)
    Any pointers are appreciated!

  3. #13
    Ext JS Premium Member
    Join Date
    Mar 2007
    Posts
    87
    Vote Rating
    2
    amackay11 is on a distinguished road

      0  

    Default


    Raski,

    Not sure what your issue is. I have
    Code:
         Ext.Loader.setPath({
            'Ext': 'touch/src',
            'myapp': 'app'
          , 'Ext.ux.touch.grid': 'ux'
          , 'Ext.ux': 'ux'
    });
    .....
     requires: [
       
            'Ext.ux.touch.grid.feature.Feature',
            'Ext.ux.touch.grid.feature.Editable',
    ....
    and files directly in app/ux.
    Andy