Questions tagged [flextable]

A flexible table that creates cells on demand. It can be jagged (that is, each row can contain a different number of cells) and individual cells can be set to span multiple rows or columns.

Java Class FlexTable

java.lang.Object
  com.google.gwt.user.client.ui.UIObject
    com.google.gwt.user.client.ui.Widget
      com.google.gwt.user.client.ui.Panel
        com.google.gwt.user.client.ui.HTMLTable
          com.google.gwt.user.client.ui.FlexTable

http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/ui/FlexTable.html

569 questions
0
votes
1 answer

Google script flextable span columns

I am trying to make an input box which spans the 3 columns of the table. From looking online it seems like I need to use the setStyleAttribute but I am not sure and cannot decipher the documentation. I know from here that A flexible table that…
user1543042
  • 3,422
  • 1
  • 17
  • 31
0
votes
1 answer

Drag and Drop Cells in FlexTable in GWT

I want to implement a native drag and drop of widgets of a FlexTable without using any third party library in GWT.Im looking for something similar to this http://tech.pro/tutorial/688/javascript-tutorial-drag-drop-lists this is in javascript i want…
0
votes
1 answer

Google Web Toolkit - Flextable with VerticalPanel

[Flextable1][Flextable2] [Flextable3][Flextable4] Inside every flextable: put vertical panel inside every verticalpanel: consists of label and link shown as diagram below: I want to use for loop in the flextable but i don't know where to start…
0
votes
2 answers

Google Web Toolkit - Flextable CSS

[a] [b] [c] flextable1.setWidget(0, 0, new Label("a")); flexTable1.setWidget(0, 1, new Label("b")); flexTable1.setWidget(0, 2, new Label("c")); I want set the orange background color only for column a. How to set? Please help me. Thanks.
0
votes
2 answers

Gwt flex table getRowCount() method not returning current value

I am using a GWTFlexTable and have one issue: I am deleting any row after that when I do try to add new row it is giving rowcount value including removed row because of this while iterating last row giving IndexOutOfBoundsException. for(…
Amit Sinha
  • 11
  • 5
0
votes
1 answer

Populate Google Apps flexTable with filtered Spreadsheet Data and returning changes to spreadsheet

I am writing an application that pulls task data (for a task management system) from rows in a Google Spreadsheet with conditions matching a query. I then send this data into a flexTable next to a checkbox with an onClickHandler as well as a…
user2970721
  • 146
  • 10
0
votes
2 answers

Add Disclosure panel in flex table

I created new flex table and added disclosure panel with in flex table. but it showing only disclosure panel. FlexTable flexTable = new FlexTable(); flexTable.setCellSpacing(5); flexTable.setWidget(0, 0, w1); flexTable.setWidget(0, 1,…
Prasanth Np
  • 175
  • 6
0
votes
2 answers

How Do You Horizontally Center the Contents in a Google Apps Script Flextable?

I am building my very first Google Scripts Web App. I am using a FlexTable in a Google Apps Script to display my content. I have been merrily using the following to set a variety of CSS styles for my content in the…
irthinker
  • 13
  • 6
0
votes
1 answer

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 flextable, omitting the column containing the…
user247105
0
votes
1 answer

Gwt: display Table faster

I have the problem, that my program is too slow in displaying a flexTable. I've searched how to display the table faster and I think with a cell table it might be faster. The problem now is, there are different objects displayed in the table and I…
Sarajog
  • 164
  • 16
0
votes
2 answers

No Scrollbars in GWT Flextable

I am creating a flextable and adding cells in it dynamically. Flextable is inside scrollpanel but scrollbars never come vertically. They always come horizontally/ Flextable is added…
JDT
  • 109
  • 1
  • 2
  • 10
0
votes
1 answer

GWT: how to get FlexTable width?

Hello all) The task looked pretty easy - to get FlexTable's width and set this width to ScrollPanel to get rid of horizontal scrollbar - until I figured out that any method like table.getElement().getClientWidth() returns only 0. Maybe smth wrong…
0
votes
3 answers

GWT - Flex Table Fixed Header Doesn't Match Data Columns

I'm using two flex tables. One for header and one for data. The one for data is wrapped with a scroll panel. The size of my columns is presented with percentage and this is where my problem begins: I set the width of both tables to 100%. The thing…
user1579191
  • 91
  • 2
  • 10
0
votes
2 answers

GWT - Set FlexTable font-size dynamically?

I'm working on a GWT project where the font-sizes need to be set dynamically. I'm attempting to use myFlexTable.getElement().getStyle().setProperty("fontSize", Integer.toString(font_size) + "px"); to set the font-size of the text in myFlexTable.…
golmschenk
  • 11,736
  • 20
  • 78
  • 137
0
votes
1 answer

Detecting which Button was pressed in a flextable

I have a flextable, and in that table I have a column where each row has a button to remove that row. How can I get the index of that row so that I can remove it. I only need to get a index.
Eagle
  • 339
  • 1
  • 3
  • 14
1 2 3
37
38