ext-gwt

How to split a panel in EXT-GWT?

I'm using ext-gwt and can't figure out how to split a panel so that I have 2 widgets, one on each side of the resizeable splitter, with the height of both widgets being 100% and their widths being variable. In essence, what I want is something like: ----------------------------------------- | Widget1 | Widget2 | | ...

How to pop up Flex Panel by clicking on a GWT(or GXT) component?

I have a web-application whose UI is implemented in GXT (ext GWT). Now I want to switch to Flex but as the application is so large that I cannot afford to start migrating the whole application at once. So I have decided to migrate slowly. So what I want is to bring up a Flex panel on the click of a GXT's button. Basically the idea is ...

How to programmatically set the split position of BorderLayout in GXT?

I have a border layout set on a widget using Ext-GWT. Is there a way where I can set the 'split' position automatically? Reason being, if the user resizes a control on a page (not necessarily the parent of the one the split widget is in), I'd like to set the split value to a certain percentage value (like 30%). How can this be done? ...

How to let a GXT grid take up all available width?

I have a grid in GXT, something like this: List<ColumnConfig> configs = new ArrayList<ColumnConfig>(); ColumnConfig config = new ColumnConfig(); config.setId("type"); config.setHeader("Type"); config.setWidth(50); configs.add(config); config = new ColumnConfig(); config.setId("text"); config.setHeader...

How to set item renderer for ListView in ext-gwt?

I have a ListView in ext-gwt and I'm adding some custom data to it. How can I set an item renderer on the ListView? As of right now, whenever an item is added, there's just a small line representing each entry in the view. Here's my basic code: import com.extjs.gxt.ui.client.store.ListStore; import com.extjs.gxt.ui.client.widget.Lis...