0
votes
Best Way to Organize an ExtJS Project
When starting new big project, I decided to make it modular. Usually, in big projects not all modules are used by a particular user, so I load them on demand. F.e., if a project would have 50+ modu …
1
vote
Width issue with Ext.Panel bbar in IE 6
Maybe you should try to force the width of the bbar:
main.getBottomToolbar().setWidth(500);
right after Panel creation?
But I think the problem is that bbar is rendered into …
0
votes
Is there a map() function in ExtJS?
ExtJS doesn't replace Javascript language itself. Array functions aren't in the focus of ExtJS core. However there is a special Ext.Array object type. You can extend it on your own.
EDIT: N …
0
votes
How to center a mask in a Panel when rendering
Just call this.el.mask() from 'render' listener too. Also check this.rendered property before calling the mask in this.load method.
…
1
vote
EXTJS Combobox not selecting by valueField after expand
It's probably because when you type random data into combo, it may not locate correct fieldValue every time. Then it stucks at the last non-existing value.
Try to set ComboBox to a …
0
votes
Handling events from HTML anchor tags in ExtJS
As you might know, HTML tag accepts ANY named attribute. So you may create some specifically called attribute(s) and pass any value(s) to them (f.e. my-bogus-param="something"), By thi …
0
votes
this[a] has no properties in ext js
This usually happens when you refer to an object/widget which is not yet being rendered (But you suppose it to be).
…
1
vote
How to avoid showing loading text in Ext.form.ComboBox?
The solution is to override 'onBeforeLoad' method of Ext.form.ComboBox:
Ext.override(Ext.form.ComboBox,
{ onBeforeLoad:
function() {this.selectedIndex = -1;}
}); …
0
votes
ExtJs Cascading-Combos Issue
Call combo-2.store.clearFilter(); in first combo selection handler to clear second combo internal filter before you updating it.
…
0
votes
Usage of ExtJS under GPL v3
I think it's not about publishing or not your code, it's about licensing of your code. You must license your code as GPL, but not necessary disclose the code internals to public.
I think GP …
0
votes
ExtJS Toolbar with multiple rows
You haven't mentioned to what widget you like to add toolbars, but in general you may add as many toolbars as you want:
var panel = new Ext.Panel();
var tool1 = new Ext.Toolbar({... …
-1
votes
Loading extJS Combo Remotely not Working
You must set a proxy, i.e. set
proxy: new ScriptTagProxy
property for loading 'store' remotely. Look at examples for exact syntax.
EDIT: Please disregard …
0
votes
Clear extJS combo value when text is cleared or doesn’t match.
Just an idea. In a 'keydown' event do 'validate()' on each keystroke. Then use 'valid' and 'invalid' events to perform an appropriate action (f.e. setValue('')).
…
0
votes
I am using rails appln with Ext-JS as frontend and require help for compression
ExtJs size is not much bigger (if any) than most of modern web-sites. It's something below 1MB together with your scripts. And it's loading only one time. I think, with the current network speeds i …
0
votes
ExtJS - using a custom TriggerField as a GridEditor
I think you should use Ext.override for onTriggerClick handler function instead of redefining it in your superclass.
You also could set it right after triggerField creation (possibly in th …
