Tagged Questions
The flextable tag has no wiki summary.
3
votes
2answers
5k views
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).
2
votes
2answers
123 views
GWT FlexTable performance and optimization
I'm working on GWT project where we are using FlexTable to display some data. I know that we should probably be using CellTable as it has better performance, but FlexTable is easier to style (style ...
1
vote
3answers
84 views
getCell(row,col) in GWT HTMLTable
There is no such method in HTMLTable:
Cell c = getCell(row,col);
What is the most effective way of getting a cell in an HTML/Flex Table, given the row and column?
1
vote
1answer
416 views
Tables and paging
would be grateful for any ideas.
Requirement
(A) a table containing
A.1 text columns
A.2 one column for HTML content
A.3 one column to house a radio button group
(B) the ability to page through ...
1
vote
1answer
233 views
GWT hashed css style names not properly added
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="...">
...
1
vote
1answer
2k views
UiBinder FlexTable style
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 ...
1
vote
2answers
294 views
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 ...
1
vote
1answer
722 views
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 ...
0
votes
1answer
33 views
How to set GWT Flextable first row (i.e heading) declaratively using UiBinder?
I want my table to have the following static column headings: "Name", "Surname", "DOB",
but I want to declare them in *.ui.xml (rather than in code).
Right now, I'm doing it via code like this:
...
0
votes
2answers
33 views
Issues with GWT Flextable
I recently created a flextable using GWT 2.4 using this code:
@uiBinder Flextable flextable;
In the constructor I call setupFlexTable() after I do
initWidget(uiBinder.createAndBindUi(this));
and ...
0
votes
1answer
271 views
How to setup flextable with uiBinder for GWT 2.4
I'm trying to setup a flextable with uiBinder. I'm using GWT 2.4 and I know how to do a flextable, but not with uiBinder. I found the question was asked, but no examples on how to do this.
So if I ...
0
votes
1answer
71 views
Repeating command in gwt
I use flex table to show the data fetched from db. When table contains a large amount of columns it takes much time to render the flextable(I've tested it on table with 80 columns and 38 rows) and ...
0
votes
1answer
216 views
GWT - implement ClickHandler event on a row of a FlexTable
So my software is displaying a flextable (the data is grabbed and displayed from a database) with users allowing to click on a checkbox to select a data.
//users is the flextable object.
userCheck = ...
0
votes
1answer
54 views
Having a a large heading in coloumn headings using GWT
Im having trouble with writing coloumn names using a FlexTable in GWT my code is as follows:
public class TemplateWebInterface implements EntryPoint
{
final protected FlexTable ...
0
votes
1answer
157 views
Can't Get Multiple Charts (Google Visualization) on Multiple Tabs (GWT TabPanel)
I need to display an unknown quantity of tabs each with an unknown quantity of graphs (Google Visualizations). I have created "Tab" and "Graph" classes and Tab contains an ArrayList.
TabWrappers ...
0
votes
1answer
355 views
GWT - flextable - adding focus listenter
I'm working on a editable flextable. When a cell is clicked, it turns into a textbox within that perticular cell. The textbox contains the text of the original cell clicked. Since the ...
0
votes
1answer
471 views
GWT - TreeTable?
I'm looking for a way to extend GWT FlexTable or CellTable to a "TreeTable". I want a table with expandable rows, and I want to be able to get the data from the sever when it's needed. So I don't want ...
0
votes
1answer
359 views
change font size of a flextable in gwt
I was wondering if anyone knew how to change the font size of a flextable in GWT? I've tried numerous attempts and looked online everywhere but no solution seems to work. I have a flexTable in GWT, ...
0
votes
0answers
343 views
GWT FlexTable cell distance
How can I control the distance of the cells in a flextable? I have defined a fixed width and height, and all the elements of the flextable are equally divided over this area. But I want them to be ...
0
votes
1answer
1k views
Styling GWT FlexTable only with CSS
How do I style a GWT FlexTable using only CSS? The API mentions nothing about which CSS classes are available.
Aren't there any classes and do I have to set them myself?
I would for instance like to ...
0
votes
2answers
687 views
GWT - Big tables load slow on IE7/8
I got a table which has no pagination, hence all records need to be displayed in one big flow with scrollbar. Using Flex table for the same.
Firefox has no big issues in loading the page, it loads ...
0
votes
1answer
468 views
GWT Flex Table Problem
I am creating a flex table dynamically with the following code.
for (int CurrentRow=1;CurrentRow<2;CurrentRow++)
{
Label lblGettingName = new Label("Getting ...
0
votes
1answer
331 views
GWT FlexTable Button Problem
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 ...
0
votes
1answer
687 views
how to relate a flextable row with a database row in gwt
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 ...
0
votes
4answers
7k views
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 ...