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
2 answers

GWT: Flextable having fixed column size

I need a FlexTable in GWT where I can add items at run time. The FlexTable is inside a ScrollPanel, so that when horizontal content exceeds display area a scroll bar appears. The problem is when there are 2-3 columns they are spaced widely but as…
JDT
  • 109
  • 1
  • 2
  • 10
0
votes
1 answer

Instant table filtering in GWT

I would like to do a kind of table (maybe FlexTable) and be able to apply a filter (any String)and instantly remove rows which don't contain that String. I have checked similar questions, but they are very old (3-4 years ago). You can see an example…
jav_000
  • 173
  • 6
  • 13
0
votes
1 answer

Wrapping FlowPanel across FlexTable doesnt work

I am newbee to GWT, I have separate class which I use for only displaying LIST,when I say list I basically am using FLEXTABLE to show my data...3 FLEXTABLE places side by side. So, the problem I am facing here is...If I wrap all these FLEXTABLE with…
Santosh
  • 875
  • 5
  • 14
  • 33
0
votes
2 answers

GWT extract all value from a row in a flextable

i have a flextable with many row and 5 colums, i need to extract all value from a specific row when i select one. The value must appears on a window. How can i do?
0
votes
0 answers

GWT FlexTable detect resize as Google Calendar

i've got a very simple calendar (3 weeks fixed). In every day i need one or more link. How can i simulate a Google Calendar view? I have mainly 2 problems when adding a link: i'm not able to fix column width (after an insert of a link as…
DecaXD
  • 11
  • 3
0
votes
1 answer

Double click handler to flextable in GWT 2.3

I want to add double click handler to FlexTable in GWT. I used below code : flexTable.addDoubleClickHandler(new DoubleClickHandler() { @Override public void onDoubleClick(DoubleClickEvent event) { …
Tushar Ahirrao
  • 12,669
  • 17
  • 64
  • 96
0
votes
3 answers

Styling INDIVIDUAL cells in GAS FlexTable ...impossible?

It appears there is no way to style individual cells (to, say, change the background color of a header row, for example) within a GAS FlexTable. Is that correct? The only methods I see here are .setStyleAttribute() and .setStyleAttributes() both of…
Let Me Tink About It
  • 15,156
  • 21
  • 98
  • 207
0
votes
1 answer

the value from Tag of flextable blank

I'm beginner in google apps script. I wanna get value from Tag of flextable on the other function. i was initiate the Tag with setTag("init") on doGet() function before, but when i called getTag(), there's nothing (blank) here's my code var…
user1547432
  • 13
  • 1
  • 4
0
votes
3 answers

Remove row from flexTable in GWT

I am learning GWT In in first row of flexTable i have added combobox, combobox , text box , AddButton , Remove button. On click event of addButton 2 row is added to the flexTable withe same component as first. ( combobox, combobox , text box ,…
GameBuilder
  • 1,169
  • 4
  • 31
  • 62
0
votes
1 answer

Set column width to zero in GWT GRID or FLEX TABLE

I am trying to set the column width to zero in a GWT-GRID in order to make it hidden. I tried grid.GetColumnFormatter().setWidth(0, "0px"); But nothing happened.Is there any other way?
-1
votes
1 answer

Using Ifelse Condition Without Using Else

I have a Flextable df and the following condition: df = setFlexTableBackgroundColors(df, i = 1, j = 5:15, colors = ifelse(test$object == 0,"white")) However it gives me the following error message: Error in ifelse(test$object == 0, "white")…
Friday
  • 11
  • 2
-1
votes
2 answers

GWT CellTable Set Column to HTML

I want to put a FlexTable into a CellTable, so in my String getValue() I created the FlexTable and returned ft.toString(), where ft is my FlexTable. However, When I do table.addColumn(flex_table_string, "Header"), GWT does not render the HTML but…
Digital Hazard
  • 137
  • 1
  • 3
  • 9
1 2 3
37
38