1. #21
    Sencha User
    Join Date
    Jun 2008
    Posts
    287
    Vote Rating
    0
    Scorpie is on a distinguished road

      0  

    Default


    Just purchased this wonderfull product. I`m however stuck on a simple issue; is it possible to nest the grid in a hbox layout in a tabpanel?
    I`m from Holland!

  2. #22
    Sencha - Community Support Team mankz's Avatar
    Join Date
    Nov 2007
    Location
    Helsingborg, Sweden
    Posts
    2,454
    Vote Rating
    48
    mankz is a jewel in the rough mankz is a jewel in the rough mankz is a jewel in the rough

      0  

    Default


    Awesome thanks . You can treat the UG as any other component, post in our help section if you need assistance. http://bryntum.com/forum/viewforum.php?f=27

  3. #23
    Sencha User
    Join Date
    Jun 2008
    Posts
    287
    Vote Rating
    0
    Scorpie is on a distinguished road

      0  

    Default


    Thanks just posted it over there
    I`m from Holland!

  4. #24
    Sencha User
    Join Date
    Mar 2011
    Location
    Pune, India
    Posts
    9
    Vote Rating
    0
    snehalv is on a distinguished road

      0  

    Default UberGrid with MVC gives error

    UberGrid with MVC gives error


    We tried using UberGrid with MVC.
    Everything works fine, tried the sample provided with the code.
    The grid gets loaded displays data. However it still shows the following error in the console:
    • [COLOR=red !important]Uncaught TypeError: Object #<Object> has no method 'define' ubergrid-all-debug.js:1[/COLOR]
      • [COLOR=red !important](anonymous function)

        [/COLOR]
        We did the following changes:
        Changed the index.html to include:
        [COLOR=red !important]
        [/COLOR] <link href="touch/resources/css/sencha-touch.css" rel="stylesheet" type="text/css" />
        <link href="resources/css/ubergrid-all-debug.css" rel="stylesheet" type="text/css" />

        <!-- The line below must be kept intact for Sencha Command to build your application -->
        <script id="microloader" type="text/javascript" src="touch/sencha-touch-all-debug.js"></script>
        <script src="ubergrid/ubergrid-all-debug.js" type="text/javascript"></script>
        <script src="app.js" type="text/javascript"></script>

        Also, changed the following in app.json:
        "js": [
        {
        "path": "touch/sencha-touch-all-debug.js",
        "x-bootstrap": true
        },{
        "path": "ubergrid/ubergrid-all-debug.js"
        },
        {
        "path": "app.js",
        "bundle": true, /* Indicates that all class dependencies are concatenated into this file when build */
        "update": "delta"
        },{
        "path": "data.js"
        }
        ],

        did the same for css files.
        And added the following to .sencha\app\sencha.cfg[COLOR=red !important]
        [/COLOR]app.classpath=${app.dir}/app.js,${app.dir}/app,${app.dir}/lib/UberGrid

        the lib directory is at the same level as the app directory.
        We want to eliminate error on the console. The app however works as expected.
        Any clue of what we are doing wrong?[COLOR=red !important]
        [/COLOR]