Search Type: Posts; User: ftftft
Search: Search took 0.02 seconds.
-
31 Mar 2009 5:57 AM
Jump to post Thread: [2.2]Date.parseDate error on 'm/Y' by ftftft
- Replies
- 2
- Views
- 1,143
Hi,
I think it is a ExtJS bug, when I am running
Date.parseDate('06/01/2009','m/d/Y') -> > Mon Jun 01 2009 00:00:00 GMT-0400 (Eastern Daylight Time) . Correct.
But,
... -
17 Jul 2008 10:03 AM
- Replies
- 11
- Views
- 5,723
I think this is a bug too. We cannot assume the server always return JSON. For example, when session timeout, the user would be redirected to a login page.
-
30 Jun 2008 6:15 AM
- Replies
- 95
- Views
- 77,940
The plugin works very nice. Thanks, But I have one concern.
Each page down/up, the code is calling
result = reader.readRecords(this.data); If the data set is fairly large, it would be a... -
3 Jun 2008 10:28 AM
Jump to post Thread: Ext.ux.LiveGrid by ftftft
- Replies
- 823
- Views
- 290,894
I did some code change to make it to support EditorGridPanel. It works. However, I am still reviewing and see if it is good enough.
In the BufferedGridView.js. I added a method.
getCell :... -
6 May 2008 12:43 PM
Jump to post Thread: Download for 2.0.2? by ftftft
- Replies
- 19
- Views
- 3,374
:-). The change makes me look bad too. Now, I start to understand why company would like to purchase stuff from big names, even though their stuff suck.
-
23 Apr 2008 5:53 AM
Jump to post Thread: License Change? by ftftft
- Replies
- 758
- Views
- 248,284
Ext Team,
Maybe you should take a look at this link http://www.paulgraham.com/good.html.
I have commercial license. But the recent change seems to make our pick to ExtJS doubtable.
Anyway,... -
14 Apr 2008 12:03 PM
Jump to post Thread: HTML Label/ Field??? by ftftft
- Replies
- 2
- Views
- 997
I used to use TextField as Label. If you want only Plain Text, you may try
new Ext.form.TextField({
... ...
style: 'border:none;background: transparent',
readOnly : true,
... ...... -
11 Apr 2008 5:45 AM
Jump to post Thread: Resize FormPanel in IE by ftftft
- Replies
- 13
- Views
- 6,588
Choleriker,
I tried your solution. It is still wrong with IE6. Later on, I find there is no doLayout method if it is running under IE6. -
9 Apr 2008 12:09 PM
Jump to post Thread: Resize FormPanel in IE by ftftft
- Replies
- 13
- Views
- 6,588
I have the same issue with FormPanel under IE6. Regardless I put formpanel under BorderLayout,or columnlayout. It just doesn't resize. But GridPanel works.
-
9 Apr 2008 6:42 AM
- Replies
- 4
- Views
- 2,187
Sure. There are workaround here. But it doesn't work like the document.
setRawValue( Mixed value ) : void
Sets the underlying DOM field's value directly, bypassing validation. To set the value... -
8 Apr 2008 9:11 AM
- Replies
- 4
- Views
- 2,187
I think it is a bug at 2.0.2 too.
-
5 Mar 2008 11:39 AM
- Replies
- 1
- Views
- 1,231
I found it at 2.0.1. But it seems to be a problem at the latest code. Basically, I run
this.dataStore.loadData() => load 100 records
this.dataStore.filterBy()
this.dataStore.removeAll() ==>... -
3 Mar 2008 12:33 PM
Jump to post Thread: TextArea maxLength validation by ftftft
- Replies
- 3
- Views
- 4,693
I have the same issue at IE. I am using ext js 2.0.1. It said "Line 25566 "Error null is null or not object.
-
10 Dec 2007 8:53 AM
- Replies
- 22
- Views
- 11,488
Not yet. I hardcoded the timeout parameter to 30000 as a workaround. However, I have tested your fix bofore.
-
10 Dec 2007 8:39 AM
- Replies
- 22
- Views
- 11,488
Any update on this issue? Will the fix go to SVN? Thanks,
-
5 Dec 2007 8:20 AM
- Replies
- 22
- Views
- 11,488
I don't find the fix at Ext 2.0 Release. Is there anything wrong with the fix? Thanks,
-
28 Nov 2007 6:18 AM
- Replies
- 22
- Views
- 11,488
I believe it works. But have those codes entered SVN? Thanks,
-
8 Nov 2007 12:28 PM
- Replies
- 22
- Views
- 11,488
Hi, Aaron,
Your fix worked, when I set timeout at the form config parameter. But the timeout set at form.submit( { timeout: ... }) has not been used.
Thanks, -
2 Nov 2007 4:59 AM
- Replies
- 22
- Views
- 11,488
My code is like below. Both "timeout" parameter are ignored.
this.filterForm = new Ext.FormPanel({
url:'....',
timeout: 400,
}
this.filterForm.getForm().submit(... -
1 Nov 2007 6:45 AM
- Replies
- 22
- Views
- 11,488
Even this code has some problem. If I call,
this.formPanel.getForm().submit({timeout: ....}). the "timeout" value here would never be used.
// private
createCallback :... -
1 Nov 2007 6:35 AM
- Replies
- 22
- Views
- 11,488
Well. Let me go through code at SVN 1350.
Ext.data.Connection. Eventually, timeout is set to here.
Ext.extend(Ext.data.Connection, Ext.util.Observable, {
timeout : 30000,
request :... -
30 Oct 2007 10:11 AM
- Replies
- 22
- Views
- 11,488
I guess it is a bug at Ext code. Regardless what value I set to timeout, it is always 30 seconds.
BasicForm.js: (action='submit', options.timeout=40)
doAction : function(action, options){... -
10 Oct 2007 11:39 AM
- Replies
- 1
- Views
- 1,514
Well. The code is similiar to
var window = new Ext.window(...)
if ( window.isVisible() ) blah blah
else blah blah.
I got the error at method isVisible(). "Error: this.getActionEl()... -
3 Oct 2007 10:26 AM
- Replies
- 2
- Views
- 2,213
I could create a combox with the latest code from SVN 1080. It works with Ext 2.0 Alpha 1.
It said config is not defined.
this.selectedIndex = -1;
if(this.mode == 'local'){... -
7 Sep 2007 4:54 AM
- Replies
- 2
- Views
- 1,206
Got it. Maybe it is a good idea to put your comments into the docs.
Results 1 to 25 of 32
