Re: HTTP Response

2011-11-25 Thread Marcin Biegan
use iframe which will not inherit css from gwt app. Anyway, start with investigating what is wrong with styles and what to add to make your popup look as expected. (also check if in both cases you have doctype declared properly) -- Regards Marcin Biegan On Nov 24, 7:10 pm, karun karunkuma

Re: Popup windows printing

2011-11-04 Thread Marcin Biegan
Why not just use CSS to hide everything you don't want to print? media=print and display:none should do the job, just hide everything except the stuff to print. You can do it dynamically in case you need to allow to print various regions of the application. On Oct 28, 3:30 am, Mike Dee

Re: Cell List: add non-data rows

2011-09-13 Thread Marcin Biegan
Well, you can always wrap your data object and render non-data rows depending on that: class Wrapper{ private Data data; } CellListWrapper cellList = new CellListWrapper(new MyCell()); class MyCell extends AbstractCellWrapper{ private SomeCellData somecell = ...

Re: Anyone using Place/Activity feature in GWT?

2011-09-10 Thread Marcin Biegan
On Sep 9, 8:08 am, Robin chwa...@gmail.com wrote: Second, I don't want to create each Tokenizer for each Place. According to the link above, I created a BasicPlace and subclass all the places I don't want to have Tokenizer. By doing so, It seems I can not have the right Place on the URL when i

Re: Anyone using Place/Activity feature in GWT?

2011-09-10 Thread Marcin Biegan
On Sep 9, 9:27 pm, BM bhushan.ma...@gmail.com wrote: The idea of creating Tokenizer is to have tokens for Browser History. The questions to consider would be do you care to have browser history? And what that means is do you care if the user have to use Back and Forward buttons of the

Re: Scalability problem with Cell widgets and KeyboardPagingPolicy.INCREASE_RANGE

2011-09-10 Thread Marcin Biegan
I have run into this issue as well. In the end I handle keyboard events myself (but I also needed jumping to items as the user is typing their names). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

compilation time issue with only 1 permutation

2011-08-29 Thread Marcin Biegan
Hello, I've recenty seen High-performance GWT talk from Google IO 2011 and during the part about compiler options David Chandler said that large GWT projects can take several minutes to compile. My current project takes about 1h to compile on average machine (i5 2.4GHz, 8GB ram, SSD drive, ~80k

Re: Different type for rows in a CellTable

2011-06-11 Thread Marcin Biegan
I'm wondering about the exact same thing. Simple solution: create an object which contains order or product and make a table of these: CellTableOrderOrProduct. But what about paging? I'd like to have each page start with order details (even if this order already appeared on previous page). And

LayoutPanel's height set by it's content?

2011-05-13 Thread Marcin Biegan
Hi, I have a question, is it possible to setup some LayoutPanel to resize with it's interior? I'd like to put content of unknown size (a plain text for example) into a LayoutPanel and avoid having scrollbars inside of it. I want to use scrollbar of the body - make the application behave kinda