Search Type: Posts; User: fangning
Search: Search took 0.02 seconds.
-
27 Jun 2012 6:02 PM
- Replies
- 0
- Views
- 259
For example, I can use the codes listed below to set the header icon for a Window widget:
window.getHeader().setIcon(Images.INSTANCE.xxx());
But how can I do the same thing when use... -
9 Apr 2010 1:21 AM
Jump to post Thread: [CLOSED] MenuBar bugs in 2.1.2 by fangning
- Replies
- 1
- Views
- 804
Version: GXT 2.1.2
Browser: IE 8
Follow the steps to reproduce the problem:
1. Navigate to the MunuBar sample page: examples/pages/toolbar/menubar.html
2. Move your mouse over the "File"
3.... -
5 Feb 2010 4:52 PM
- Replies
- 8
- Views
- 3,234
This problem only exists in DevModel.
-
15 Dec 2009 12:49 AM
- Replies
- 8
- Views
- 3,234
After I upgrade GWT to new 2.0, when I right click in the grid (or tree), the browser's context menu shows, instead of the GXT context menu.
-
10 Dec 2009 1:14 AM
- Replies
- 2
- Views
- 2,251
Now it works.
Thanks -
4 Dec 2009 7:52 PM
- Replies
- 2
- Views
- 2,251
I want to listener all onMouseDown and onKeyDown events in the browser window, and write the following code:
DOM.setEventListener(RootPanel.get().getElement(), new EventListener() {
... -
25 Nov 2009 5:30 PM
- Replies
- 3
- Views
- 2,566
I have found the Post:
https://www.extjs.com/forum/showthread.php?p=405497
But I do not think they are the same problem.
In previous releases (2.0.4 or earlier), in most cases, I can select... -
25 Nov 2009 4:48 PM
- Replies
- 3
- Views
- 2,566
Open the DEMO page in IE 8:
http://www.extjs.com/examples/explorer.html#gridplugins
I can not select more than one Checkbox at the same time.
When I select one checkbox, the others will... -
24 Nov 2009 5:38 AM
- Replies
- 1
- Views
- 2,150
The following code:
treePanel.setCheckedSelection(new ArrayList<TreeModel>());
can not deselect all tree nodes (check box).
I must use the following code to avoid this problem: -
12 Nov 2009 4:45 AM
- Replies
- 4
- Views
- 1,683
The setReadOnly() method of ListField has no effect.
After invoking this method, you can still modify the selected value. -
4 Nov 2009 5:10 PM
- Replies
- 3
- Views
- 1,803
I have tried the following methods, but their parents are null:
treePanel.getSelectionModel().addSelectionChangedListener(
new SelectionChangedListener<D>() {
@Override
... -
3 Nov 2009 4:48 PM
- Replies
- 3
- Views
- 1,803
See the code below:
RpcProxy<List<TreeModel>> proxy = ...;
TreeLoader<TreeModel> loader = new BaseTreeLoader<TreeModel>(proxy);
TreeStore<TreeModel> store = new TreeStore<TreeModel>(loader);... -
29 Oct 2009 4:44 PM
- Replies
- 1
- Views
- 1,820
See the code of com.extjs.gxt.ui.client.widget.form.FormButtonBinding (line 49):
listener = new Listener<ComponentEvent>() {
public void handleEvent(ComponentEvent be) {
if... -
21 Oct 2009 5:01 AM
- Replies
- 8
- Views
- 2,741
This feature requires us to modify the code when we upgrade GXT from 2.0.2 to 2.0.3, the existing code can not work as before.
We hope that it is compatible with the early code, after all, this is a... -
21 Oct 2009 12:00 AM
- Replies
- 8
- Views
- 2,741
See the codes listed below:
SimpleComboBox<String> scb = new SimpleComboBox<String>();
scb.setFieldLabel("Type");
scb.add(Arrays.asList("Error", "Warn", "Info", "Tip"));
... -
14 May 2009 1:49 AM
- Replies
- 0
- Views
- 1,121
The constructor of BaseListLoadResult and BasePagingLoadResult should be visible by sub classes. For example:
BaseListLoadResult() {
}
should be changed to:
protected... -
15 Jan 2009 4:50 PM
- Replies
- 1
- Views
- 2,415
Hi, I need the form commit upload request immediately after user select a file, and use the code below:
FileUploadField field = new FileUploadField();
field.addListener(Events.Change, new...
Results 1 to 17 of 17
