Search Type: Posts; User: me2
Search: Search took 0.04 seconds.
-
6 Feb 2012 6:54 AM
Jump to post Thread: FileUploadField IE compatability by me2
- Replies
- 10
- Views
- 2,506
It seems that setting an empty string is causing the problem, so for the interim don't use setEmptyText, perhaps just use setToolTip instead.
-
1 Feb 2010 11:21 AM
Jump to post Thread: combo box doesn't display items by me2
- Replies
- 8
- Views
- 2,571
The CourseType class needs a tweak - see below:
public class CourseType extends BaseModel{
private String typeName;
private Integer typeValue;
public CourseType(){} -
28 Jan 2010 7:43 AM
- Replies
- 11
- Views
- 2,734
You can perform your long running action on a DeferredCommand, for example:
protected void onReconfigure()
{
// tell the grid to mask itself first
grid.mask("Please Wait",... -
12 Jan 2010 7:38 AM
Jump to post Thread: ComboBox default selection by me2
- Replies
- 6
- Views
- 7,630
In version 2.1 the ComboBox was changed to have lazy render by default - we've found this caused problems with setting default values, so had to call setLazyRender(false) on combo boxes that need a...
-
27 Apr 2009 12:34 PM
- Replies
- 2
- Views
- 1,181
I had the same requirement. The way we solved it was by first iterating over the columns in the portal, and for each column we'd iterate over it's contained items.
So, for example:
... -
26 Feb 2009 1:21 PM
Jump to post Thread: [FIXED] Info not adjusting for scroll by me2
- Replies
- 1
- Views
- 978
GXT version 1.2.3
com.extjs.gxt.ui.client.widget.Info
The displayed 'info' popup isn't adjusting for the scroll of the viewport. The problem looks to reside in the position() method:
... -
26 Feb 2009 11:52 AM
- Replies
- 3
- Views
- 1,103
Thanks - looks like the El.center(Element container) method might have the same problem, lines 384, 385
-
26 Feb 2009 11:43 AM
- Replies
- 3
- Views
- 1,103
In com.extjs.gxt.ui.client.core.El the center(boolean constrainViewport) method appears to have a bug that is incorrectly computing the proper top/left coordinates.
The following code is what...
Results 1 to 8 of 8
