Search Type: Posts; User: sormy
Search: Search took 0.02 seconds.
-
6 May 2013 1:16 PM
Jump to post Thread: unable to override constructor by sormy
- Replies
- 1
- Views
- 76
can be closed, component loaded before override was applied (via require)
-
6 May 2013 11:07 AM
Jump to post Thread: unable to override constructor by sormy
- Replies
- 1
- Views
- 76
i added this script to requires property of application, but it seems like ExtJS do not reach this code after override.
... -
2 Nov 2011 7:50 AM
Jump to post Thread: [3.x] Ext.ux.ItemSelectorEx by sormy
- Replies
- 17
- Views
- 4,070
Your example on steroids:
window size decreasing not working in IE6
Ext.override(Ext.list.ListView, {
// private
onResize : function(w, h){
var bd =... -
2 Nov 2011 7:03 AM
Jump to post Thread: [3.x] Ext.ux.ItemSelectorEx by sormy
- Replies
- 17
- Views
- 4,070
ExtJS doesn't have auto layout.
There are problems with vbox/hbox layouts in IE6 with ExtJS 3.3.1 (incorrect absolute positioning)
But it's not fatal, because problem occurred only if you decrease... -
1 Nov 2011 12:32 PM
Jump to post Thread: [3.x] Ext.ux.ItemSelectorEx by sormy
- Replies
- 17
- Views
- 4,070
I have no errors in IE6 on Ext 3.3.1
but I have error in resize when decreasing width of window.
It seems like IE6 HBOX layout problem. I have no idea how to fix it. I recommend you to try found... -
1 Nov 2011 9:13 AM
Jump to post Thread: [3.x] Ext.ux.ItemSelectorEx by sormy
- Replies
- 17
- Views
- 4,070
I have no problems with IE6.
Can you provide simple example how to repeat problem? -
23 Jun 2011 8:37 AM
- Replies
- 20
- Views
- 7,271
// Ext 3.3.1
// Opera 10.x/11.x upload problem
// http://www.sencha.com/forum/showthread.php?79640-FIXED-129-2.x-3.x-Opera-10-upload-form/page2
(function(){
var BEFOREREQUEST =... -
17 Mar 2011 1:10 PM
- Replies
- 13
- Views
- 8,474
For Ext 3.3.1:
example:
new Ext.grid.GroupingView({ disableGroupingByClick: true });
patch:
Ext.override(Ext.grid.GroupingView, {
disableGroupingByClick: false, -
25 Feb 2011 2:15 PM
- Replies
- 0
- Views
- 876
Opera: 11.01
Problem: We can not select items from combobox over horizontal scroll. In this example I can not select item 9 by mouse click from combo. It seems like it's Opera bug =(
May be someone... -
19 Feb 2011 5:15 PM
- Replies
- 2
- Views
- 1,983
try http://www.sencha.com/forum/showthread.php?124549-3.x-Ext.ux.ItemSelectorEx
-
19 Feb 2011 3:02 PM
Jump to post Thread: Ext.ux.form.CheckboxCombo by sormy
- Replies
- 92
- Views
- 27,290
It seems that CheckboxCombo doesn't support local store.
Here is a patch:
Ext.override(Ext.ux.form.CheckboxCombo, {
mode: 'remote',
onTriggerClick: function() {
if... -
19 Feb 2011 2:09 PM
Jump to post Thread: [3.x] Ext.ux.ItemSelectorEx by sormy
- Replies
- 17
- Views
- 4,070
I have created Ext.ux.ItemSelector analog but with better rendering layout and it is working better as field. Ext.ux.ItemSelectorEx support anchor layout, one store with available variants, value...
-
5 Jul 2009 4:55 AM
Jump to post Thread: [3.0] Multiselect/ItemSelector by sormy
- Replies
- 1
- Views
- 3,012
FIX Code:
Ext.override( Ext.ux.ItemSelector, {
setValue: function(val) {
this.reset();
if (!val) return;
val = val instanceof Array ? val :... -
5 Jul 2009 4:46 AM
- Replies
- 9
- Views
- 3,749
FIX: edit ItemSelector.js:
onRender: function(ct, position){
...
this.fromMultiselect = new Ext.ux.form.MultiSelect(Ext.applyIf(this.multiselects[0], msConfig[0]));
... -
5 Jul 2009 3:21 AM
- Replies
- 9
- Views
- 3,749
BUG: this.toMultiselect.valueField = this.toMultiselect.displayField = "TEXT" ALWAYS!!!
valueField and displayField not works for toMultiselect (with empty store)
WORKAROUND: using... -
4 Jul 2009 3:50 PM
Jump to post Thread: [3.0] Multiselect/ItemSelector by sormy
- Replies
- 1
- Views
- 3,012
Traditional problem with Load Data in multiselect from
http://extjs.com/forum/showthread.php?t=62284
and
https://extjs.com/forum/showthread.php?t=20071
FIX:
Ext.override(...
Results 1 to 16 of 16
