0
votes
1answer
7 views

ExtJS Combobox not loading up in Panal

I have this panel view. Please check this JSFiddle . So I have a cgi script which returns json for combo-box value and label but its not loading up in combo-box. I am not sure why any help will be ...
0
votes
1answer
62 views

setting value of a combobox extjs

This is my model for my combo Ext.define('ExtJS.myApp.ComboModel', { extend: 'Ext.data.Model', alias: 'widget.combomodel', fields: [ { name: 'ID', type: 'int' }, { name: ...
2
votes
1answer
144 views

In an editable grid, how to make an Ext combo box immediately finish edit mode when selecting an item?

I have configured an Ext JS 4 grid to be editable by utilising the CellEditing plugin. Some cells in the grid have a textfield editor, and a few use a combo box editor. It all works great, but I have ...
0
votes
0answers
99 views

extjs4 : How to reset item selector in combobox ?

I am using extjs 4.1.1a for developing some application. I had a form consisting of two combo-boxes and an item-selector. Based on the value selected in first combo-box , the itemselector will load ...
1
vote
0answers
59 views

extjs4 combobox trunks value

I have a comboBox within a form, the valueField is the ObjectId field of a document in mongodb, it displays the proper value of the fields in the comboBox, but it returns just a part of the value ...
0
votes
0answers
119 views

Default display value in row editing combobox

I am facing a problem while using row editing plugin. In my project we are using gird panel to show the data from server and using plugin row editing with combo box to edit data. The code is: editor: ...
0
votes
1answer
159 views

How do I apply a store to a combobox in ExtJS?

{ fieldLabel: 'Tip', name: 'SubjectType', allowBlank: false, xtype: 'combo', displayField: 'name', valueField: 'type', typeAhead: true, forceSelection: true, ...
1
vote
2answers
170 views

Cannot seem to populate combo box remotely in Extjs

I've tried all manor of things to get this to populate the combo drop-down box. When typing, say "Apple", it appears to be loading the data but, nothing ends up in the drop down box. Firebug shows the ...
0
votes
1answer
218 views

Load nested models in a form containing a combo multiSelect=true in ExtJS 4.1.1

Here is a shortened version of my code : Ext.define('MyApp.model.Folder', { extend: 'Ext.data.Model', fields: ['id', 'name'] }); Ext.define('MyApp.model.User', { ..., hasMany: { ...
0
votes
1answer
199 views

Combo box issues in IE

I'm using Sencha 4.1.2a, IE 9. I'm in the process on migrating my company's project from sencha 4.07 to sencha 4.1.2. I'm now face with unexpected problems with combo box. We have extend the combo ...
2
votes
2answers
2k views

Filter store on combobox selection

I have tried this different ways, but still can't get the filter to work. My ext app lets user to choose a single state from a combobox, and the grid below displays more data on that selected ...
0
votes
1answer
899 views

Paging combobox in ExtJS 4.1

can anyone give me an example about Paging combobox in ExtJS4.1. i understand the paging combobox, but i can't reproduce in extjs4.1. Ufficial sencha forum old post about it. thank for any type of ...
1
vote
1answer
2k views

ExtJS Combobox posting hiddenName value

I am trying to get ExtJS combobox to return value instead of display value. Here's my problem. I am using ajax to get the data for the combobox field, and in the same time using getForm().load to ...
0
votes
2answers
1k views

Add listener OnReady to extjs ComboBox

Is there anyway to execute a function just when a combobox is ready? I'm having troubles with this because at the end of the Ext.OnReady it seems like sometimes the combo is not ready and calling a ...
0
votes
1answer
171 views

Linked Combobox in EXTJS4

I'm trying to create a linked combobox using EXTjs4, Im thinking of using static array data sources. I looked at the examples in sencha website but i couldn't find any. Thanks
0
votes
0answers
48 views

secondary request to the server due to combobox

I have a form which includs some fields and combobox. The store is loaded in Ext.application launch(): store.load({ scope: this, callback: function(records, operation, success) { ...
1
vote
1answer
4k views

Ext 4.1.1: Add new record to Store

I would like to add records after the initialization of a store. I tried loadData(), loadRawData(), add() but nothing seams to work. Here is my jsfiddle: http://jsfiddle.net/charlesbourasseau/zVvLc ...
0
votes
1answer
488 views

Ext JS 4 - not focus combo box when you select the fieldLabel

We have a basic combo box http://www.samuellevy.com/blog/2010/10/senchaextjs-combo-box-gotchas-and-how-fix-them we don't want that the fieldLabel when you click it , the focus go to the combobox ...