Search Type: Posts; User: cgi-bin
Search: Search took 0.02 seconds.
-
17 May 2012 10:57 AM
- Replies
- 2
- Views
- 1,114
Internet explorer is throwing a pop-up warning:
I am trying to load a JsonStore with about 6000 records. The store is configured with 20 fields (but the JSON data contains 40 fields).
Clicking... -
29 Feb 2012 8:02 AM
- Replies
- 192
- Views
- 93,531
I was frustrated that the ListMenu wasn't using the configured store's sorted values... so I fixed it:
Change ListMenu.js : in the onLoad function (line 116-ish).
Change:
for(var i=0,... -
28 Jul 2011 9:55 AM
- Replies
- 1
- Views
- 816
Forgot to mention this is in 3.4.0, but was also occurring in 3.3.x.
-
28 Jul 2011 9:23 AM
- Replies
- 1
- Views
- 816
I have a page with a tab panel... in that tab panel is an item with an autoLoad:{} object set. In the autoLoad, I am passing a params:{} object.
It seems that in Internet Explorer (version 6 & 7,... -
12 May 2011 12:11 PM
- Replies
- 192
- Views
- 93,531
I seem to have solved both of my problems... if you try to specify a filter:{ } definition in the defaults:{} config for the column model, it doesn't actually apply correctly. Once I explicitly put...
-
12 May 2011 7:08 AM
- Replies
- 192
- Views
- 93,531
Minor bug: If the data associated with a column in a grid had NULL values, you'd get:
Error: this.inputItem.getValue() is undefined
Source File:... -
10 May 2011 7:24 AM
Jump to post Thread: Sencha web site extremely slow by cgi-bin
- Replies
- 33
- Views
- 6,414
Ever since since the release of 4.0 the sencha web site has been getting slower and slower to respond. Today has been particularly bad, as the API documentation browser has been completely unusable...
-
3 May 2011 7:24 AM
- Replies
- 192
- Views
- 93,531
I noticed something strange... when using a string filter, when clicking drop-down menu in the header to fill in the filter, if the search field is to the right of the drop-down, the filter "auto...
-
27 Apr 2011 10:43 AM
- Replies
- 7
- Views
- 1,868
was looking at examples at: http://examples.extjs.eu/?ex=tabsinform
hideMode:'offsets' in the defaults{} of the tabPanel seems to fix the problem... However, I still think this is probably a bug... -
27 Apr 2011 10:29 AM
- Replies
- 7
- Views
- 1,868
one odd thing i did accidentally figure out: If the form is in a viewport and you resize the window, it "fixes" the fields (at least until the next edit/cancel). I've tried firing the resize event on...
-
27 Apr 2011 7:31 AM
- Replies
- 7
- Views
- 1,868
I tried in both beforetabchange and tabchange listeners:
newTab.doLayout(false, true);
tabPanel.doLayout(false, true);
myForm.doLayout(false,true);
myForm.getForm().applyToFields({anchor:'0'});... -
27 Apr 2011 6:25 AM
- Replies
- 7
- Views
- 1,868
Thanks for the suggestion, however it doesn't make a difference... I even used doLayout(false, true) to do non-shallow and force the layout even if hidden.
-
27 Apr 2011 6:00 AM
- Replies
- 7
- Views
- 1,868
Still having the issue, I have tried scattering forceLayout:true and deferredRender:false in various places with no luck.
Below is a self contained example... when it loads, click each of the 4... -
21 Apr 2011 6:07 AM
- Replies
- 7
- Views
- 1,868
Hi,
I have a page with a form that utilizes a tabpanel to separate groups of fields. All of the fields in the form are initially set to readOnly. I toggle the readOnly for all the fields via... -
23 Feb 2011 11:12 AM
Jump to post Thread: Namespace question by cgi-bin
- Replies
- 3
- Views
- 573
Thanks for your reply.
Technically it works... to an extent. However, I ran into a case where because each tab declares "var myNS = ...", I'm getting some cases where things are pointing to the... -
23 Feb 2011 7:39 AM
Jump to post Thread: Namespace question by cgi-bin
- Replies
- 3
- Views
- 573
The API documentation says that Ext.namespace() returns the namespace object... can I do something like this:
var myNS = Ext.namespace('XXX.tabs.tab-22');
myNS.myStore = new Ext.data.JsonStore({});... -
28 Jan 2011 12:28 PM
- Replies
- 2
- Views
- 650
After spending a couple hours getting this to work on my own... I came here and searched...
http://www.sencha.com/forum/showthread.php?18683-Collapsed-title
and... -
28 Jan 2011 7:05 AM
Jump to post Thread: Put tooltip to bachground images by cgi-bin
- Replies
- 29
- Views
- 2,535
Well, using afterlayout on the panel was firing every time the panel was displayed... guess thats why it fired twice in my initial tests...
changed the listener to: afterlayout: { fn: function(c,... -
28 Jan 2011 6:43 AM
Jump to post Thread: Put tooltip to bachground images by cgi-bin
- Replies
- 29
- Views
- 2,535
ugh, about a minute after posting that I realized why... Quictips was not init'ed yet... moved quicktips init before the viewport creation in my onReady() fn, and it works in either the...
-
28 Jan 2011 6:37 AM
Jump to post Thread: Put tooltip to bachground images by cgi-bin
- Replies
- 29
- Views
- 2,535
Hi, I just wanted to add 2 things:
1) If you are not using the "mini" collapse mode, add the green part to show the tooltip on the expand tool in the "normal" collapsed region.
2) I'm curious as to... -
13 Dec 2010 9:08 AM
- Replies
- 3
- Views
- 1,152
I was in a similar situation a few months ago and did a lot of research on the various available frameworks. I have a strong programming background, however I had not specifically had a cause to use...
-
3 Dec 2010 6:14 AM
Jump to post Thread: Ext.ux.data.PagingStore [v0.5] by cgi-bin
- Replies
- 276
- Views
- 124,335
Thanks! That solves my problem. However, its really counter-intuitive based on how the documentation is worded.
-
3 Dec 2010 5:41 AM
Jump to post Thread: Ext.ux.data.PagingStore [v0.5] by cgi-bin
- Replies
- 276
- Views
- 124,335
Technically, baseParams is optional, as I am supplying the additional params in the object supplied to the load() call. That part works perfectly.
The problem isn't that the params aren't being... -
2 Dec 2010 2:05 PM
Jump to post Thread: Ext.ux.data.PagingStore [v0.5] by cgi-bin
- Replies
- 276
- Views
- 124,335
I've been trying to narrow down why this might be happening...
I am using a PagingJsonStore, autoLoad is false
The store is linked to a gridPanel
there is a top-toolbar with a combobox with the... -
1 Dec 2010 11:26 AM
Jump to post Thread: Ext.ux.data.PagingStore [v0.5] by cgi-bin
- Replies
- 276
- Views
- 124,335
Hello,
First I'd like to thank you for this UX, it has really helped with a few cases that remote paging was impractical.
I'm curious if there will be any "official" update to address a couple of...
Results 1 to 25 of 57
