Re: send post message a PHP solved

2011-02-06 Thread Jozef Môstka
Hi, Im working on phpCallback , It will be finished soon. using is much easier. first we made object to send public class TestObject extends PhpRpcObject { public String[] aaa = {"ss","dd"}; public int[] bbb = new int[2]; } then made servi

refers to which jars

2011-02-06 Thread drools10
I hope this is the correct mailing list for the question. I have created some rules through guvnor & am trying to fireAllRules(). I created a normal java class using KnowledgeAgent & am calling fireAllRules() method. I have noticed that it executes fine as long as I have the following entry in my c

Re: Problem Styling CellList

2011-02-06 Thread zixzigma
Ok, I found what I was doing wrong : ) I should have overriden all styles defined in CellList. I had left out, .cellListWidget {} and corresponding String cellListWidget(); .cellListSelectedItem {} / String cellListSelectedItem(); I added those, and it worked. though not very critical, I am cu

Re: Problem Styling CellList

2011-02-06 Thread zixzigma
The line highlighted as the source of problem is : CellList.Resources resources = GWT.create(MyCellResources.class); and the exception can be found here: http://pastebin.com/eLLBAMLj -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To pos

Problem Styling CellList

2011-02-06 Thread zixzigma
Hello Everyone, I modified GWT basic CellList sample, to experiment how I can style a CellList. Unfortunately I am getting exceptions, and was not successful in styling a cell list. Below you can find my basic code sample which I posted on pastebin for easy viewing. Do you know what I am doi

runAsync and GwtEvent

2011-02-06 Thread Algian
Hi, I'm having an issue with the code resulting from a code split which fires a GwtEvent. The scenario is the following: Class A - This class is runAsync'd and fires a GwtEvent for when an action is completed Class B - This class has a handler for the GwtEvent which handles the event fired by Cl

Re: Using the Layout class

2011-02-06 Thread Jeff Larsen
Have you set your doctype to standards mode? If you post some code I can take a look at it. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from thi

Using the Layout class

2011-02-06 Thread Magnus
Hi, I try to use the layout class, but I have problems. It would be nice, if one could get some help here. Unfortunately, this is very limited here. I also know it's a very special problem. I try to layout my children with layer.setLeftWidth and layer.setTopBottom, but it does not work correctly.

TabLayoutPanel and panel - the content doesn't appear

2011-02-06 Thread András Csányi
Hi all! I know it will be a very simple question from me, so I'm sorry in advance. My application looks like this: - the main structure is a DockLayoutPanel. In this are the other control structures, in North is the MenuBar, in West are the menu built on Tree, Center is the main data recording ar

Re: Is it possible to convert ImageResource to ImageElement?

2011-02-06 Thread Jambi
Hej Thomas, it´s the same with your solution. The Image won´t appear on the canvas. Maybe it is a bug since the canvas api is still experimental? Maybe I should try a different approach to implement an image preloader. On Feb 6, 11:50 am, Thomas Broyer wrote: > Or, without creating an Image widg

Re: Force render of CellBrowser cell(s)

2011-02-06 Thread Y2i
> > 1) Am I trying to achieve this the correct way? > Probably not. If you use value updater to communicate a change to your data provider, then data provider can update itself, which will automatically update all attached displays. Take a look at this post

i18n properties file

2011-02-06 Thread Luke
i have LocalizableResource_lang.properties located at com.google.gwt.client . using uibinder http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Help with Google Plugin For Eclipse setup

2011-02-06 Thread Jaroslav Záruba
seems like the plugin is trying to create the "WEB-INF" directory but apparently "web-inf" already exists, therefore (on Windows platform) "WEB-INF" can not be created either delete your "web-inf", or rename it to "WEB-INF" (or "web-inf.del" or something like that), so the plugin can either crea

Re: nothing visible in IE8 while it all looks good in FF and Chrome

2011-02-06 Thread Jack
Make sure you use to put ie8 in standards mode and make sure the checkbox "show intranet sites in compatibility view" is unchecked in ie8's compatibility view settings. On 5 Feb., 07:39, doles wrote: > Hello, > > I have a UiBinder based layout and it looks and works great in FF and > chrome. Ho

Re: Is it possible to convert ImageResource to ImageElement?

2011-02-06 Thread Thomas Broyer
Or, without creating an Image widget: AbstractImagePrototype.create(imageResource).createElement() -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe fr

Re: History.replaceItem?

2011-02-06 Thread PhilBeaudoin
@zixzigma: stateful in the sense that the view (or the presenter if you're using MVP) has a private variable that keeps the last page seen and is only initialized on a new search. As a consequence, it would show the exact same page if you navigate back to it. On Feb 4, 2:08 pm, Jason wrote: > Goo

Force render of CellBrowser cell(s)

2011-02-06 Thread sevendays
I would like to be able to explicitly call the render method on a CellBrowser. The reason for this is that I am making changes to the underlying data model, and want the values to be refreshed in the display. I have a valueUpdater.update() method that is being called. My approach is to re-rende