Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8488667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T21:36:25+00:00 2026-06-10T21:36:25+00:00

I have a problem with add data to combobox( Here’s my code: { xtype:

  • 0

I have a problem with add data to combobox( Here’s my code:

{
    xtype: 'combo',
    name: 'accounttype',
    triggerAction: 'all',
    fieldLabel: '??? ?????',
    labelWidth: 125,
    displayField: 'name_y',
    valueField: 'nzp_y',
    width: 280,
    emptyText: '??? ?????',
    listeners: {
        afterrender: function (item) {
            Ext.Ajax.request({
                url: 'account/combodata',
                method: 'POST',
                success: function (objServerResponse) {
                    var jsonResp = Ext.decode(objServerResponse.responseText);


                if (jsonResp.success == true) {

                    var mystore = new Ext.data.JsonStore({
                        fields: ['nzp_y', 'name_y'],
                        data: [{ nzp_y: 0, name_y: ' '}]
                    });

                    var myArray = new Array();

                    for (var i = 0; i < jsonResp.combolist.length; i++) 
                    {
                        if (jsonResp.combolist[i].nzp_res == 9999) 
                        {
                            myArray['nzp_y'] = jsonResp.combolist[i].nzp_y;
                            myArray['name_y'] = jsonResp.combolist[i].name_y;
                            //???
                        }
                    }
                }
            },
            failure: function (objServerResponse) {
                Ext.Msg.alert('Error', objServerResponse.responseText);
            }
        });
    }
},
store: mystore

}

How can I add store to combo?
Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T21:36:27+00:00Added an answer on June 10, 2026 at 9:36 pm

    Assuming that you are using ExtJS 4.x

    I recommend you to use Model-Proxy-Store

     // Set up a model to use in your Store
     Ext.define('User', {
         extend: 'Ext.data.Model',
         fields: [
             {name: 'nzp_y', type: 'int'},
             {name: 'name_y',  type: 'string'}
         ]
     });
    

    … some other code

    {
        xtype: 'combo',
        name: 'accounttype',
        triggerAction: 'all',
        fieldLabel: '??? ?????',
        labelWidth: 125,
        displayField: 'name_y',
        valueField: 'nzp_y',
        width: 280,
        store: Ext.create('Ext.data.Store', {
             model: 'User',
             proxy: {
                 type: 'ajax',
                 url: '/account/combodata',
                 reader: {
                     type: 'json',
                     root: 'data' // you may need to modify this
                 }
             },
             autoLoad: true
         }),
        emptyText: '??? ?????'
    }
    

    Edit to answer the comment:

    You definetely should look the following configs (can be added beneath root: 'data'):

    idProperty     : 'id'  // You seem not to have a id property based on the given values
    totalProperty  : 'total' // You don't have this one at all
    

    Please check these first and post the result. For the given error I have so idea. Never seen this one.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have problem to add jQuery to some existing code, please help. We have
Hi all I have problem with following: foreach (DataRow dr in data.Tables[0].Rows) { string
I have problem with store data in list collection. If I add new data
I have a problem with isolated storage. This is my code: List<Notes> data =
I have a problem: I've add a Jquery UI drag-n-drop widget to my page,
I have problem, when I want add Node to my GUI from other Thread.
I have problem on my blog: http://osify.com while processing add new post with above
I have a problem where I have to add thirty-three integer vectors of equal
I have a problem with WPF Toolkit Chart Control. I can't add text values
I have a problem with XamDataChart in a WPF application. When I add the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.