There's no Events.Load. I used resize instead. And magically It works!!
Here is my piece of codes.
HtmlContainer p2 = new HtmlContainer();
p2.setUrl("test.html");
...
Type: Posts; User: tomasi
There's no Events.Load. I used resize instead. And magically It works!!
Here is my piece of codes.
HtmlContainer p2 = new HtmlContainer();
p2.setUrl("test.html");
...
is there any Event about Load when I use HtmlContainer setUrl?
I need to know it's loaded when HtmlContainer loads page. I tried to use .AddListener()
But didn't see any Load event!
does anyone...
yes you're right. That's all I want for now! I also hope Gxt Team can make it better!
Problem solved! I used gwt 1.7 gxt 2.01 then Used TreeGrid example code that add checkBox into treeGrid by using addPlugin.Then it works. the followings are my peice of code and the result.
...
There is only one example about checkbox with TreePanel. But how could I put checkbox into TreeGrid? I looked at the example of treePanel. We can use tree.setCheckable(true) but not in the TreeGrid....
Try using addStyleName instead of setStyleName.
This is not a bug. I've asked that before. Now setStyleName is for Images bundling.
Try builder.setHeader("Content-type", "application/x-www-form-urlencoded");
set this after builder when you want to use POST method to trans data.
I'm not sure this would work or not. Hopefully...
Problem solved!
Somehow I restarted my Windows and my eclipse then magically problem is gone!!!
I don't why, but I guess it's eclipse keeps my old settings no matter I've already put the new...
String menu[] = {"test1","test2","test3"};
ToolBar tb = new ToolBar();
SelectionListener<ButtonEvent> btnClick = new SelectionListener<ButtonEvent>(){
@Override
public void...
When I upgraded from m2 to rc1, I recompiled my project again.
Then I found out there's a xxx/war/none 404 not found request appeared in my firebug.
So I switched back to m2, then It disappeared....