GwtBootstrap3 v0.8 Released!!

2014-08-12 Thread Joshua Godi
Hey guys, Just wanted to announce that we released a big update to GwtBootstrap3. You can find the zip and release notes here: https://github.com/gwtbootstrap3/gwtbootstrap3/releases. Thanks, Joshua -- You received this message because you are subscribed to the Google Groups "Google Web Tool

Re: HTMLPanel - How does it work?

2014-04-27 Thread Joshua Godi
Awesome, thanks for the info! I will just stick to allowing for children only. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr

Re: HTMLPanel - How does it work?

2014-04-26 Thread Joshua Godi
Thanks for the reply. I do want to be able to have (1) widget children, (2) text, (3) html allowed to be written inside this widget. That way it's as flexible as it needs to be. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscr

Re: HTMLPanel - How does it work?

2014-04-26 Thread Joshua Godi
or the case where you need a mix of plain HTML > and widgets. It is for example used extensively in UiBinder. > It allows you to wrap an existing Element in the provided HTML in an > actual widget. > > > > On Sat, Apr 26, 2014 at 12:45 AM, Joshua Godi > > wrote: > &

HTMLPanel - How does it work?

2014-04-25 Thread Joshua Godi
I was curious if anyone could explain how the HTMLPanel works? I am trying to create a custom Heading widget for my GWT Project that extends HTMLPanel but since the heading element can be h1, h2, ..., h6, I am having a hard time getting this to work for HTMLPanel, since it calls into the HTMLPa

Re: extending GWT with framework?

2014-03-17 Thread Joshua Godi
You can take a look at GWTBootstrap3. It is a library that brings the Bootstrap framework (http://getbootstrap.com/) to GWT. Library Link: https://github.com/gwtbootstrap3/gwtbootstrap3 Demo Link: http://gwtbootstrap3.github.io/gwtbootstrap3-demo/ It will make your application fully responsive a

Re: GWT Wrapper for Twitter Bootstrap v3!

2014-02-18 Thread Joshua Godi
Just have to use the setters that are there for non-UiBinder. // Create overall container FluidContainer container = new FluidContainer(); // Create the row for the columns Row row = new Row(); // Create the columns Column first = n

Intellij 13 + GWT 2.6 + SuperDevMode + RPC?

2014-02-16 Thread Joshua Godi
Has anyone had any luck getting SuperDevMode to work fine with Intellij 13 and GWT 2.6 with GWT.RPC/Gin? I can get projects that don't involve GWT.RPC/Gin to work just fine, but when adding that I get errors on all services. -- You received this message because you are subscribed to the Googl

Re: Introduce SmartGWT for collapse/expand panel for with existing project

2014-02-16 Thread Joshua Godi
Try this: http://gwtbootstrap3.github.io/gwtbootstrap3-demo/#collapse -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@google

Re: GWT Wrapper for Twitter Bootstrap v3!

2014-01-21 Thread Joshua Godi
Version 0.5 was just released. We are so close to having 100% support for Twitter Bootstrap v3. There are also many different Bootstrap Plugins that we have wrapped too! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from

GWT Wrapper for Twitter Bootstrap v3!

2013-12-22 Thread Joshua Godi
I just wanted to let the GWT world know about this GWT wrapper for Twitter Bootstrap v3. Almost feature complete too. Check it out: https://github.com/gwtbootstrap3/gwtbootstrap3. Thanks, Joshua Godi -- You received this message because you are subscribed to the Google Groups "Googl

Re: How to use interface CssResource in Utility class (GWT/ GWTP)?

2013-11-26 Thread Joshua Godi
In your MyResource put a public static final MyResource RESOURCES = GWT.create(MyResource.class); and then use that resource in your Util class by MyResource.RESOURCES.css.style(); If you are using GWTP then I recommend a ResourceInjector that you can call in your BootstrapperImpl that will t

Re: GWT - Send a message from the server to the client?

2013-10-31 Thread Joshua Godi
Do you have any examples that you have done? Been having a hard time trying to just use the event bus portion. On Tuesday, October 29, 2013 2:16:01 PM UTC-5, Andrea Boscolo wrote: > > I'd use http://errai.github.io/ and its bus. > > On Monday, October 28, 2013 10:01:27 PM U

GWT - Send a message from the server to the client?

2013-10-28 Thread Joshua Godi
Good afternoon, I was curious how I would properly send a message from the server to the client? Here is my scenario: Client A - Modifies User1 from the GUI and pushes the data to the server Client B - Is looking at User1 and needs to be notified that there are changes that have been made So t

Re: How to use EventBus for non-Presenter class in GWTP?

2013-10-17 Thread Joshua Godi
Just inject the EventBus into your DialogBox. On Thursday, October 17, 2013 11:49:35 AM UTC-5, Tom wrote: > > I am using GWTP platform & eClipse to build webapp. In Eclipse, when > creating a Presenter, it will create 3 files (ex: SearchPresenter.java, > SearchView.java, & SearchView.ui.xml): >

Re: How to use different CSS/Code for different browsers/devices/os?

2013-09-17 Thread Joshua Godi
Why not try using responsive css with media queries? You can change the dimensions/background-url for the images and such. Here is a good source for standard media queries: http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ On Saturday, September 14, 2013 8:40:46 AM UTC-5, E

Re: HELP: HyperLink, Image and Text in one Cell of CellTable

2013-07-17 Thread Joshua Godi
The way I accomplish this is with a AbstractCell built from a SafeHtmlTemplate that sinks the click event. Have a template the feeds into the cell, the code will resemble something like: /** * The HTML templates used to render the cell. */ public interface Templates extends SafeH

Re: CellTable Column Overlap

2013-05-01 Thread Joshua Godi
Have you tried setting the listbox width? Looks like you might have a default width on your list boxes. On Wednesday, May 1, 2013 5:33:11 AM UTC-5, Odili Charles wrote: > > Hi community, kindly take a look at this celltable code : > http://fpaste.org/9746/36740350/ Am surprised it produces over

Re: if change css, need restart the server?

2012-12-21 Thread Joshua Godi
Sometimes two refreshes will pick up CSS changes for me. But a word of advice, convert your CSS to use ClientBundle, that way it GWT will make it available on compile, so just a simple refresh will fix it. There are many tutorials on how to use ClientBundle properly. On Friday, December 21, 201

DataGrid with a Frozen Column?

2012-12-05 Thread Joshua Godi
Is it possible to have a frozen column inside a DataGrid? I would like the first column to always show no matter if the user scrolls right or not. Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web

DataGrid - Click to select row, click again to deselect row

2012-11-09 Thread Joshua Godi
Is there an easy way to create a data grid, where when the user selects a row to select it. Then, when the user selects the same row again, the row will deselect? I have been trying to use a NoSelectionModel and keeping the last selected, but you aren't able to use selectionModel.setSelected(ob

Re: Scrolling on iPad

2012-11-08 Thread Joshua Godi
I am seeing this issue as well, would like to know a solution if there is one. On Friday, November 2, 2012 2:14:49 AM UTC-5, Mike Dee wrote: > > I have an app with a DataGrid on it and a vertical Scrollbar. Works as > expected - when more data is available then fits within grid, vertical > scr

Re: data tables with headers, footers and widgets in cells

2012-08-06 Thread Joshua Godi
The DataGrid will be able to do everything that you want, here is the link for the GWT Showcase of it: http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid As you can see, you can have widgets inside of the cells. For a better example of different widgets inside the cells you can lo

Re: data tables with headers, footers and widgets in cells

2012-08-06 Thread Joshua Godi
The DataGrid will do everything that you need it to do: http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid. You can have cells that contain widgets. On Monday, August 6, 2012 10:40:33 AM UTC-5, Matthew Pocock wrote: > > Hi, > > I'm developing an app that needs to display some info

How to create a grouped column with the Data Grid?

2012-07-25 Thread Joshua Godi
I have been researching this for the last few days, what I want to do is create a column group with the DataGrid with the group displaying in the header and sorting / footer still working for each of the grouped columns. Is there anyway to accomplish this with the DataGrid? Can you help point m