建造后隐藏旋转木马(0高度)

时间:2013-07-11 18:55:09

标签: extjs sencha-touch

很想再看一下这个基本代码,看看为什么我的旋转木马(以及不同视图中的微调器)在构建(测试或制作)后没有出现。

编辑: 还有什么可能有帮助,我必须建立SUDO。这可能是权限错误吗?我无法运行'sencha'命令作为非SUDO b / c我收到以下错误:

/Projects/Sencha/Cmd/3.0.2.288/sencha: line 59: 43741 Trace/BPT trap: 5       java $jvmArgs -jar $BASEDIR/sencha.jar "$@" 2> stderr.txt

谢谢, 史蒂夫

Ext.define('MyApp.view.Tutorial', {
extend: 'Ext.Container',
fullscreen: true,
xtype: 'tutorial',
requries: [
    'Ext.carousel.Carousel',
    'Ext.dataview.List',
    'Ext.data.proxy.JsonP',
    'Ext.data.Store'
],
defaults: {
    styleHtmlContent: true
},     
config: {
    layout : {
        type: 'vbox',
        pack  : 'center'
    },   
    scrollable: false,  
    items: [
        {
            xtype: 'toolbar',
            docked: 'top',
            title: 'Welcome to MyApp'
        },
        {
            xtype: 'carousel',
            flex: 1,
            height: 90,
            layout: 'fit',
            defaults:{
                layout:'fit'
            },
            items:[{
                html: 'asdfasdfasdf',
                cls: 'card',
                height: 60
            },{
                html: '2asdfasdf',
                cls: 'card',
                height: 60
            }]
        },
        {
            height: 60,
            docked: 'bottom',
            xtype: 'container',
            align: 'middle',
            defaults:{
                layout: {
                    align: 'middle',
                    pack: 'center'
                }


            },                
            items: [
                {
                    xtype: 'button',
                    centered: true,
                    cls: 'fb_login',
                    height: 47,
                    margin: '',
                    width: 280, 
                    id:'fb_login_button'     
                }
            ]
        }          
    ]
}

});

1 个答案:

答案 0 :(得分:0)

因此,在将我的应用程序拆分为最简单的组件和设置后,我找到并回答了这两个问题。

BUILD问题与另一个覆盖DYLD_LIBRARY_PATH环境变量的应用程序有关。取消设置允许sencha命令正常运行。

之后,我对SMD和Sencha Touch进行了更新。

看起来我的大问题是Sencha在构建过程中的容差不允许我混淆的布局定义。所以将'fullscreen:true'移动到配置块,删除'scrollable:false',而不是混合适合和高度似乎消除了bugginess。

我确实希望构建调试器能够更加健壮地识别应用程序的破坏位置。在我的任何浏览器中运行已编译的应用程序时,我没有遇到任何控制台错误。