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...
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...
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?
...
Where can I find a UiBinder template for the FlexTable?
I am using Google Web Toolkit (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.
...
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...
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...
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...