Just a note that this is still present up to at least Ext 6.5.3.
I got stung in a slightly different way: an allowBlank: false field in a form gets "stuck" as empty where the next selected record...
Type: Posts; User: milestonebass
Just a note that this is still present up to at least Ext 6.5.3.
I got stung in a slightly different way: an allowBlank: false field in a form gets "stuck" as empty where the next selected record...
We've made quite a few customisations to the original class. Here is the init method for our custom class:
You would be interested in change listener in the filter configuration - I hold a reference...
Hello Evan,
I have recently upgraded to 6.5.2 in hopes of this being resolved, but I am still seeing the issue for a column's getEditor. See fiddle here:...
With Ext.form.field.ComboBox.multiSelect being marked as deprecated since version 5.1.0 the suggestion is to use Ext.form.field.Tag
Functionally this is a much better component, but does not lay...
@evant I am running 5.1.2.748 and does not seem to be supported. Do you know if this was ever supported in any future version?
=D> would never have guessed this... many thanks.
Looks like this is still present in the latest 4.xx build. Did anyone come up with a workaround?
... I hope you aren't speaking from experience! /:)
When setting a column width, the filterbar field for that column is not being initially rendered. However, flexes work fine.
Has anyone else experienced this problem (and got a possible...
I had the same issue with a 4.1.1 build and solved it by changing the ext import path from:
ext-4.1.1/ext-all.js
to
ext-4.1.1/ext.js (obviously, make sure you've got the script at this path!)
...
I had the same behaviour and solved it by moving store references out of the app.js and into their own controller.
Declare this new controller in the application config to include the stores.
I resolved this issue on iOS by setting the element width after the hide/show.
this.buttonsSet.pauseButton.setWidth(25);
Notice here that the width is 25 pixels (1 pixel more than the 24...
I have a simple hbox layout containing buttons for a media player.
{
xtype: 'container',
layout: 'hbox',
ref: 'buttonsSet',
...
I would be interested to know what the result of this was as I am facing a similar issue. ~o)
Looks like the page visit tracker is broken - I just went directly to the file in the URL:
http://lovcombo.extjs.eu/lovcombo-1.0.zip
how you mean? I consider Chris_S response a full solution to the problem.
Thanks Chris_S. Neat override solution. :)
Thanks for your guidance Condor, it is a good approach to solving this issue.
I'm sure this is a common problem, so here's I resolved it:
Added the override as below:
...
Is it possible for the loadMsg to be positioned near the top of the loadMask, instead of center aligned?
How so?
Thanks.
Animal's two posts are all the information you need.
1. call getBottomToolbar() on the Element containing the paging toolbar
2. Math.ceil((t.cursor + t.pageSize) / t.pageSize); - where t is the...
When a browser resize occurs, content within this form panel disappears. If I collapse the panel and re-expand it the description fieldset is now visible but the inner panel content is still not...
http://www.extjs.com/deploy/dev/docs/?class=Ext.grid.GridPanel&member=viewready
The viewReady event works beautifully! Thank you, Animal.
After the render of an EditorGridPanel, I want to expand the single group if there is only one group and collapse all the groups if there is more than one group.
Namespace.PersonGridPanel = new...
Only works for modal windows, of course.
How would you suggest the same functionality for a non-modal window?
This code will scroll the appropriate record into view on the MonthsGrid for a split second and then the scrollbar will snap back to the top - taking the record out of view.
The following code is...