Re: Styling CellList?

2011-09-22 Thread Sudhakar Abraham
Override the cellListStyle() inside MyCellListResources. I have added a sample CSS to test it out. S. Abraham www.DataStoreGwt.com Persist objects directly in GAE //corrected code. interface MyCellListResources extends CellList.Resources { @Source({CellList.css}) @Override public

Re: Styling CellList?

2011-09-22 Thread nacho
thank :) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/4VXQUZk0KTwJ. To post to this group, send email to

Styling CellList?

2011-09-21 Thread nacho
I am trying to apply styles to a CellList, and I have this in my Java: interface MyCellListResources extends CellList.Resources { @Source({CellList.css}) MyCellListStyle cellTableStyle(); } interface MyCellListStyle extends CellList.Style { } cellList = new

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

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 post

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