flextable

GWT: Creating a scrollable FlexTable in a full-screen TabPanel

I'd like to create a TabPanel that occupies the entire browser client area, and inside that put a FlexTable that scrolls if necessary. However, I'm having trouble acheiving this. I've tried: public void onModuleLoad() { TabPanel test = new TabPanel(); test.setSize("100%", "100%"); FlexTable flex = new FlexTable(); for (int i = 0; i...

how to relate a flextable row with a database row in gwt

hi all, i'm creating a simple project to try gwt, but i'm a real noob :) i've a table in my db, each row in this table has a unique id. i want my application to read this table and display it's contents in a flextable, omitting the column containing the unique id in the db, 'cause the user is not interested in that id. after that, i want...

GWT MouseOver performance

I'm writing an application in GWT. It went really well, until I ran it in IE. I made an application that uses a FlexTable, and each cell of the table was to be highlighted. I wrote the MouseOver handler, but in the Internet Explorer it works incredibly slow. Is there anything I can do about it? ...

How can I add rows to a Google Web Toolkit flextable in the UiBinder?

Where can I find a UiBinder template for the FlexTable? I am using Google Web Toolkit (GWT). ...

Flex Table in GWT

i want a table in gwt, which is used to update the database.. since the table is a updater of database, i need add, edit, remove and save commands.. The project is being created for internal purpose of the company, so I look for a solution that does not require commercial licensing for such uses. ...

UiBinder FlexTable style

Hi, I want to add different styles to different rows, Which is the best way? I'm trying this (it doesnt works, no error but no changes): TWO INTERFACES: public interface StatiscticsTableResources extends ClientBundle { public static final StatiscticsTableResources INSTANCE = GWT.create(StatiscticsTableResources.class); @Source("S...

GWT hashed css style names not properly added

Hi, I have a bizarre experience with GWT styles. I'm using UiBinder as well as some programmatic access to style my GWT widgets: <ui:UiBinder xmlns:ui="..." xmlns:g="..."> <ui:style src="bindings.css"/> <g:VerticalPanel > <g:Label addStyleNames="{style.stationTitle}" ui:field="stationName"></g:L...

GWT FlexTable Button Problem

Hi All, I am retrieving a List<String> strings from my database and i would like to display it in a Flex Table.Also with every row in the flex table i want a delete button.The delete button on click should remove the row from the flex table. so i write code some thing similar to for(int i =0 ;i < strings.size();i++) { flexTable.setW...