Search Type: Posts; User: assassin
Search: Search took 0.02 seconds.
-
14 Jul 2008 2:29 AM
Jump to post Thread: how could I sync two trees? by assassin
- Replies
- 4
- Views
- 1,270
He,
Use one store for both trees and put a filter on it to get the part of items for tree B. If you add an item to the store the trees will be both updated with the item.
Regards,
Rick -
25 Jun 2008 12:32 AM
Jump to post Thread: Pageable table with MVC by assassin
- Replies
- 1
- Views
- 1,096
Let the store fill up with the use of the proxy and the loader in the view. Delete the store.add() function. This is done in the view because it has the responsibility of getting/showing data. The...
-
25 Jun 2008 12:14 AM
- Replies
- 6
- Views
- 2,567
Since RC 1.0b the removeAll and Width bugs are fixed. So with this version you can create a dynamic menu like this:
final Menu dynamicMenu = new Menu();
dynamicMenu.setAutoWidth(true);... -
24 Jun 2008 2:01 AM
Jump to post Thread: ModelData and displayProperty by assassin
- Replies
- 11
- Views
- 4,036
+1
-
19 Jun 2008 4:53 AM
Jump to post Thread: [CLOSED] Tree stack overflow by assassin
- Replies
- 3
- Views
- 1,604
Sorry for the double post. I only searched in the GXT community forums.
-
19 Jun 2008 1:34 AM
Jump to post Thread: [CLOSED] Tree stack overflow by assassin
- Replies
- 3
- Views
- 1,604
I don't know if I must post this in help or bugs but if I create a async tree with alot of nodes I get a Stack overflow error see error.jpg. The tree works fine after pressing ok.
-
19 Jun 2008 12:49 AM
- Replies
- 3
- Views
- 1,524
Hi,
Just look at the API documentation of DataView:
setOverStyle
public void setOverStyle(java.lang.String overStyle) Sets the style name to be applied on mouse over (defaults to ... -
17 Jun 2008 12:49 AM
- Replies
- 6
- Views
- 1,967
Maybe you can use:
homeItem.addStyleName("cssClass");
or
homeItem.addStyleDependentName("cssClass");
or
homeItem.setStylePrimaryName("cssClass"); For more information look at GWT Api class... -
16 Jun 2008 2:17 AM
- Replies
- 10
- Views
- 5,336
You can use the LabelField to show some information on your FormPanel.
-
16 Jun 2008 2:10 AM
- Replies
- 8
- Views
- 2,375
I didn't find a nice solution to but maybe you can use:
store.commitChanges();
myNode.setExpand(true);
Regards,
Rick -
13 Jun 2008 12:23 AM
- Replies
- 11
- Views
- 5,308
You are wright you can also solve the problem by implementing the ListLoadConfig interface into your own extended basemodel class.
-
13 Jun 2008 12:17 AM
Jump to post Thread: BaseEvent/AppEvent type by assassin
- Replies
- 17
- Views
- 4,179
I think option 3 is the best option because it can take a long time before the new event system is implemented in GWT. Besides that an important qeustion would be if you gonna change your entire...
-
12 Jun 2008 1:15 AM
- Replies
- 11
- Views
- 5,308
Hi,
A binder on a ComboBox is not needed because the values in the ComboBox are not editable. Use the following code to load data trough an RpcProxy.
// data proxy
// Edit... -
11 Jun 2008 11:25 PM
Jump to post Thread: BaseEvent/AppEvent type by assassin
- Replies
- 17
- Views
- 4,179
@darrellmeyer
Please look at the code listed below. It uses the Enum as type of an Event. The advantage of using Enum here is that I can't declare the same type of event for different events. As... -
11 Jun 2008 5:33 AM
Jump to post Thread: BaseEvent/AppEvent type by assassin
- Replies
- 17
- Views
- 4,179
Why is the type of a Event Integer? The use of enum would be type safe and is also comparable.
Regards,
Rick -
10 Jun 2008 3:59 AM
- Replies
- 7
- Views
- 3,065
The only solution i can think of if you don't want to use a store (which also can be loaded from a model in the memory) is to use the BeforeAdd (child) param; child.getText() method and search for a...
-
10 Jun 2008 3:29 AM
- Replies
- 3
- Views
- 1,524
Hi,
I should do this with the help of a dataview. You can create a html template:
just a div with a css class and the name of the button in it.
You can simulate a button with css using... -
10 Jun 2008 3:13 AM
- Replies
- 7
- Views
- 3,065
Look at the example of the async tree in the samples/demo:
binder.setIconProvider(new ModelStringProvider<FileModel>() {
public String getStringValue(FileModel model, String... -
9 Jun 2008 2:33 AM
Jump to post Thread: i18n & DateField by assassin
- Replies
- 1
- Views
- 1,218
Hello,
You can use the com.google.gwt.i18n.client.DateTimeFormat to be returned as i18n contstant or message. The datefield has a property setPropertyEditor where you can change the Dateformat... -
9 Jun 2008 2:09 AM
- Replies
- 0
- Views
- 1,589
Dear reader,
The selection event stops the loading of the dataview trough the loader. When I clear the line: -ModelData record = (ModelData) dataView.getSelection().get(0);- it loads the modeldata... -
9 Jun 2008 12:19 AM
Jump to post Thread: Store with 2 Trees attached by assassin
- Replies
- 1
- Views
- 1,117
Why not use two stores and when the store data is changed the other store must be updated. You can do this with the DataChange event on the store.
DataChange : TreeStoreEvent(store)
Fires when... -
9 Jun 2008 12:07 AM
- Replies
- 4
- Views
- 2,494
I don't really know if this is the solution of your problem but the following is listed in the api documentation:
TableBinder
public TableBinder(Table table,
ListStore<M>... -
5 Jun 2008 11:31 PM
Jump to post Thread: Help: Project Dependency by assassin
- Replies
- 2
- Views
- 1,538
Hi ballpen66,
Which project do you start compiling because that is the project where you must inherit the other projects in the xml file. The inherit of GWT works different than normal inherits.... -
5 Jun 2008 6:06 AM
Jump to post Thread: Remote procedure call problem by assassin
- Replies
- 0
- Views
- 1,533
Dear Reader,
I am testing EXT GWT for the use of projects in the future. I want to make a remote procedure call to get all the files of a folder. This works with GWT and sending back a String type...
Results 1 to 24 of 24
