R: Specifying cell width in cellTable

2011-06-30 Thread icamts
Hi, for columns width have a look at http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiCellTable.html#columnWidths For each input width you may need to provide your own version of the Inputcell: customize render method. Cheers, Luca -- You received this message because you

Re: Shortcomings in Places

2011-06-06 Thread icamts
Hi all, this is a quite interesting discussion. So far I've gone this way (and any suggestion will be appreciated): 1) let user authenticate through an external login page; 2) retrieve user profile and store it in client; 3) write authorization code in views for what user can see and in

Re: GWT CellList Drag and Drop

2011-05-31 Thread icamts
Hi, add draggable-plugin-1.0.4, remove gquery-dnd-bundle-1.0.3. If you're not using Maven move droppable-plugin-1.0.6 before gwt 2.3 library in compilation order. Hope it helps. Cheers, Luca On 31 Mag, 15:16, Jee sundarra...@gmail.com wrote: Below jars are being used.But facing the issue with

Re: SplitLayoutPanel Sizing?

2011-05-31 Thread icamts
May be you are missing to put SplitLayoutPanel in a RootLayoutPanel. Alternatively you can provide explicit size, see Recipes here: http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiPanels.html#Recipes Cheers, Luca On 31 Mag, 10:54, Nick Apperley napper...@gmail.com wrote: In

Re: Click Event out of the widget.

2011-05-19 Thread icamts
On widget blur? If your widget has focus. And using NoSelectionModel, handling selection in on click event? Is it suitable to your case? Cheers, Luca On 18 Mag, 14:50, Manvel Saroyan saroy...@gmail.com wrote: Hi, I have a CellTable with SingleSelectionModel - I want to set the current

Re: Built in GWT Widgets that require Constructor Arguments

2011-05-18 Thread icamts
May be you are missing a couple of braces around res, like this: g:Tree resources='{res}' ui:field='tree' look a Thomas' example: g:Tree resources={myResources} / Cheers, Luca On 18 Mag, 14:27, Myth17 nitishupr...@gmail.com wrote: No luck. :( I get [ERROR] [zomato] - Failed to create an

Re: RequestFactory not working when upgrade from 2.2 to 2.3

2011-05-16 Thread icamts
Add gwt-servlet-deps.jar to your project. It comes with gwt sdk distribution. Cheers, Luca On 15 Mag, 14:42, Joshua Kappon shuky.kap...@gmail.com wrote: Thank! I added the json-20090211.jar to my build path and it solved the problem! On May 14, 10:43 pm, Hilco Wijbenga

ListBox doesn't open when inside gwtquery drag and drop plugin's DragPanel in Chrome browser

2011-05-13 Thread icamts
I opened a Chromium Issue (http://code.google.com/p/chromium/issues/ detail?id=82540) because problem faces only in Chrome browser. I'm not sure if there's something going wrong with Chromium, with some GWT *Impl for Chrome, with some gwtquery drag and drop plugin's event closing my select, or if

Re: new browser window without menu toolbars?

2011-05-11 Thread icamts
Hi, 1) if content comes from client may be you'll want to show it in a div... 2) if content comes from server-side pass the url and serve it through a servlet 3) if you really need a new window (and document) to fill by your own may be it can be done writing some native js open method returns

Re: new browser window without menu toolbars?

2011-05-04 Thread icamts
Hi Magnus, try import com.google.gwt.user.client.Window; [...] Window.open(url, _blank, location=0,menubar=0,toolbar=0); argumets are the same of javascript window.open() function Cheers, Luca On 3 Mag, 19:12, Magnus alpineblas...@googlemail.com wrote: Hi, how can I open a new browser

Re: Simple dragdrop

2011-04-28 Thread icamts
Gwtquery (http://code.google.com/p/gwtquery/) offers a dnd plugin. A cell table sample is here http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/CellTableSample/CellTableSample.html and Portlet sample contains a SortableDragAndDropHandler. Not sure about touch events integration