Combo-box not expanding - extjs

I am creating a multiselect combobox(extjs 6.0.1 version). A textbox has been embedded in it. On clicking in the textbox the combobox collapses.The same issue was happening for select all checkbox but it worked fine after using combo.expand().Also on clicking the Deselect all, the scrollbar goes to the end. This works fine in extjs version 4.1.1 Fiddle below
https://fiddle.sencha.com/#view/editor&fiddle/1kn2

Why adding a text field in the first place?
Shouldn't suffice a normal extjs combo box with editable set to true?
http://docs.sencha.com/ext/6.2.0/classic/Ext.form.field.ComboBox.html

Related

Ext JS 5 Data Binding Combobox

I have an Ext JS 5.0.1 application that I am working on. I have a simple window with a grid and a form. I have the grid bound to my store and when a row is selected, all the textfields in the form bind, but I also have a combobox with its own store. When I select the grid row, I could not get the combobox to bind. I finally figured that out, but now if you change the combobox on the form the grid column just shows object.object. I have created a fiddle if anybody can help me out a little with this problem. Obviously I am trying to use the MVVM but also I would like for it to work in Architect if possible.
Fiddle
Bind value, not selection:
value: '{allPeople.selection.gender}'
Working example: https://fiddle.sencha.com/#fiddle/obm

On clicking the row of a grid, checkboxes of other rows getting unchecked using checkboxselectionmodel in GWT

I have a multiSelectCombobox that uses a grid with checkboxselectionModel. I want checkboxes getting checked on clicking the checkbox, but what is happening here is when i click the row of an unchecked checkbox, that checkbox gets selected while all the other checkboxes that were previously checked get unchecked automatically.
I have seen many threads posted on Sencha but none seem to be of any help.
grid=new Grid(skillsetStore, new ColumnModel(columnConfigs));
cm.setSelectionMode(SelectionMode.MULTI);
grid.setStyleAttribute("borderTop", "none");
grid.setBorders(true);
grid.setStripeRows(true);
grid.setWidth(300);
grid.getView().setForceFit(true);
grid.getView().setAutoFill(true);
grid.setSelectionModel(cm);
grid.addPlugin(cm);
grid.setHideHeaders(true);
This is my grid that i am using...
Any help on this issue would be much appreciated.
I had a similar issue. I was setting the checkbox value to false in data bind complete event. Once I removed it, it worked fine

Tooltip is not displaying in MDIChild Form

I am using devexpress gridcontrol in my desktop application. But I am facing a problem with tooltip.I used the repositoryHyperlinkbutton and it has 3 buttons in it named view, edit, insert
Now I want to display a tooltip for that three Buttons. I already set the property for it.When I use single form the Tooltip work fine. but when I used that form with MdiParent at that time the Tooltip is not display.
This Problem is solved in above the devexpress 11.5 controls.
I done it.
The cells in a GridView contains no controls - they are only painted. When you click a cell, its in-place editor is created (or - in this case - the 3 image buttons). No controls = no tooltips!

ExtJS 3.4 :: Combobox in grid - wrongly selecting first value when opened

Using ExtJS 3.4
I have a EditorGridPanel and columns with ComboBoxs.
Just noticed that if I three options, say...
Dog
Cat
Mouse
...and Mouse is the saved value, then when I click the dropdown, my field gets populated with Dog - without me selecting it. Whatever the options, my field gets populated with the first value.
This only happens after an initial page load and the first time I click a combobox. Subsequent combo clicks do not elicit this behavior.
Anyone experienced anything like this? Any clue?
Thanks
Paul
autoSelect : false
for combobox component will solve this. Read ExtJS Documentation for more details.

ExtJS 4 Combobox Vertical Scrollbar Is Gone!

cmbCombobox.getStore().loadData(arrayData);
I use this code to load my arrayData into Combobox.
getStore() method does not exists anymore in ExtJs 4.
So i use this code to load data:
cmbProvince.store.loadData(provinceData);
But vertical scrollbar is gone when i load data by this code.
Has anyone realized this problem?
I ran into the same thing today. You should be able to do:
cmbProvince.createPicker()
to force it to "redraw" the dropdown, which added the scrollbar back.

Resources