没有获得tabpanel的文本框值?

时间:2012-08-02 08:39:31

标签: android sencha-touch sencha-touch-2

在我的应用程序中,我在屏幕底部有一个标签面板。三个选项卡是Home,Add Wishlog和Add Feedback。现在,当我点击主页选项卡时,它会显示一些图标。在添加愿望日志和添加反馈选项卡中,我添加了一些文本框和一些按钮。我在屏幕上添加了如下所示的addwishlog选项卡

{
        xtype : 'addwishlog',
        styleHtmlContent : true,
        title : '+ Wishlog',
        iconCls : 'favorites',
    },

这是addwishlog.js文件:::

    Ext.define('MyApp.view.AddtoWishlog', {
                    extend : 'Ext.Container',
                    xtype : 'addwishlog',
                    config : {
                        ui : 'light',
                        scrollable: {
                            direction: 'vertical',
                            directionLock: true
                        },
                        items : [
                                {
                                    xtype : 'container',
                                    id : 'LoginScreen',
                                    docked : 'top',
                                    items : [
                                            {
                                                xtype : 'image',
                                                docked : 'left',
                                                height : 92,
                                                id : 'Logoimage',
                                                ui : '',
                                                width : 120,
                                                src : 'app/images/small_logo.png'
                                            },
                                            {
                                                xtype : 'titlebar',
                                                cls : 'mytitlebar',
                                                docked : 'top',
                                                height : 80,
                                                ui : 'blue',
                                                items : [ {
                                                    xtype : 'label',
                                                    height : 36,
                                                    html : 'Add to Wishlog',
                                                    id : 'title',
                                                    margin : 20,
                                                    style : 'font: normal Bold 20px droid sans; color:#AB3951',
                                                } ]
                                            } ]
                                },
                                {
                                    xtype : 'panel',                                    
                                    autoHeight: true,
                                    items: [{
                                        xtype : 'container',
                                        id : 'dashboardiconcontainer',
                                        height: 400,
                                        layout: 'vbox',
                                        items : [
                                                {
                                                    xtype : 'container',
                                                    id : 'topitembox',
                                                    layout : {
                                                        type : 'hbox'
                                                    },
                                                    margin : '10 0 0 10',
                                                    height : 50,
                                                    items : [ {
                                                        xtype : 'textfield',
                                                        id : 'itemname',
                                                        labelWidth : '40%',
                                                        label : 'Name of the item',
                                                        width : 320
                                                    }, {
                                                        xtype : 'textfield',
                                                        id : 'barcodetextfield',
                                                        width : 300,
//                                                        value: 'test', 
                                                        margin : '0 0 0 10',
                                                        labelWidth : '40%',
                                                        label : 'Enter Barcode'
                                                    }, {
                                                        xtype : 'button',
                                                        height : 40,
                                                        scope: this,
                                                        margin : '0 0 0 10',
                                                        id : 'scanbutton',
                                                        ui : 'orange',
                                                        width : '80',
                                                        text : 'scan barcode'
                                                    } ]
                                                },

                                                {
                                                    xtype : 'container',
                                                    height : 160,
                                                    id : 'cameraimagecontainer',
                                                    margin : '10 0 0 10',
                                                    layout : {
                                                        type : 'hbox'
                                                    },
                                                    items : [
                                                            {

                                                                html : '<img style="width:180px; height:150px;display:none;" id="capturedimage" src="" />'
                                                            },
                                                            {
                                                                xtype : 'container',
                                                                id : 'btncontainer',
                                                                width : 120,
                                                                margin : '0 0 0 10',
                                                                layout : {
                                                                    type : 'vbox'
                                                                },
                                                                items : [
                                                                        {
                                                                            xtype : 'button',
                                                                            height : 73,
                                                                            cls : 'capturebtn',
                                                                            id : 'capturebtn',
                                                                            width : 100
                                                                        },
                                                                        {
                                                                            xtype : 'button',
                                                                            height : 73,
                                                                            margin : '10 0 0 0',
                                                                            cls : 'choosephotobtn',
                                                                            id : 'selectphoto',
                                                                            width : 100
                                                                        } ]
                                                            },

                                                            {
                                                                xtype : 'container',
                                                                id : 'additionalinfo',
                                                                margin : '10 0 0 10',
                                                                width : 400,
                                                                layout : {
                                                                    type : 'vbox'
                                                                },
                                                                items : [
                                                                        {
                                                                            xtype : 'textareafield',
                                                                            height : 80,
                                                                            width : 380,
                                                                            id : 'additionalinfo',
                                                                            label : 'Add Additiona Details',
                                                                            labelWidth : '40%',
                                                                            placeHolder : ''
                                                                        },
                                                                        {
                                                                            xtype : 'selectfield',
                                                                            margin : '5 0 0 0',
                                                                            width : 300,
                                                                            label : 'Select Category',
                                                                            options : [
                                                                                    {
                                                                                        text : 'Food',
                                                                                        value : 'first'
                                                                                    },
                                                                                    {
                                                                                        text : 'Sports',
                                                                                        value : 'second'
                                                                                    },
                                                                                    {
                                                                                        text : 'Electronics',
                                                                                        value : 'third'
                                                                                    } ],
                                                                            labelWidth : '40%'
                                                                        },
                                                                        {
                                                                            xtype : 'textareafield',
                                                                            id : 'Addmoretag',
                                                                            margin : '10 0 0 0',
                                                                            width : 320,
                                                                            placeHolder : 'Add any other tags you want '
                                                                        },
                                                                        {
                                                                             xtype : 'button',
                                                                             height : 54,
                                                                             id : 'Addwishlog',
                                                                             margin : '10 0 0 0',
                                                                             ui : 'orange',
                                                                             width : 250,
                                                                             text : 'Add to my wishlog'
                                                                             }

                                                                        ]
                                                            } ]
                                                } ]
                                    }]
                                } ]
                    }
                });

我也在为addFeedback做同样的事情。现在,当我尝试从addWislog屏幕获取任何文本字段的值时,我收到错误。有一段时间它告诉getValue()方法不适用于此对象..同时尝试使用

this.getIDofTextbox().getValue();

虽然我在控制器中采用了正确的参考。如果我正在尝试使用getCmp(),我将获得null值。

我真的很困惑,因为对于其他屏幕,我从文本框中获取价值。我只能在这个tabpanel js文件中获得问题。

这是我的app.js文件:

    Ext.Loader.setConfig({
    enabled : true
});

Ext.application({
    views : ['dashboardpanel', 'TitlePanel', 'wishlogsummary', 'ConsumerSignup', 'FeedbackSummary', 'ConsumerSignin', 'AddFeedback'],
    models : [ 'MyModel', 'wishlistmodel', 'feedbacksummarymodel' , 'loginmodel'],
    stores : [ 'name', 'wishlistsummarystore', 'feedbacksummarystore' ],
    name : 'MyApp',
    controllers : [ 'MyController' ],
    requires:['Ext.ux.touch.Rating'],

    fullscreen: true,


    launch : function() {

        var Login = {
                xtype: 'login'
        }
        var Dashboard = {
                xtype: 'dashboard'
        }

        var Wishlogsummary = {
                xtype: 'wishlogsummarylist'
        }

        var AddtoWishlog = {
                xtype: 'addwishlog'
        }
        var Consumersignup = {
                xtype: 'consumersignup'
        }
        var FeedbackSummaryList = {
                xtype: 'feedbacksummarylist'
        }
        var Consumersignin = {
                xtype: 'Consumersignin'
        }

        Ext.Viewport.add([Login,Dashboard,Wishlogsummary, FeedbackSummaryList,Consumersignup,Consumersignin]);
    }

});

我是否必须在应用程序架构中进行更改?

请帮忙,因为我在这个问题上遇到了很长一段时间而无法找到解决方案..

1 个答案:

答案 0 :(得分:0)

实际上,我的架构存在一些问题。现在我能够修复它。