Re: How to remove tabindex=0 from the cell table html

2022-09-09 Thread Thomas Broyer
What kind of Cell is this? Can you show part of the code that sets up the table? Did you set KeyboardSelectionPolicy to DISABLED? On Friday, September 9, 2022 at 1:48:45 AM UTC+2 nidhi@gmail.com wrote: > I am working on adding keyboard accessibility to my product. When I am > tabbin

How to remove tabindex=0 from the cell table html

2022-09-08 Thread nidhizener
I am working on adding keyboard accessibility to my product. When I am tabbing from a widget say a button, outside of the cell table to the another button that is after the table my tabbing sequence includes the first element on the celltable into the sequence. This element is just a data and

Re: determine what table rows and columns are *actually* visible? (for scrollIntoView purposes.)

2020-05-14 Thread Thomas Broyer
You can get the actual element using getRowElement() and compute everything from there, based on the element's offsetParent, offsetTop and offsetLeft. BTW, depending on the browsers you need to support, you might be able to "just" use scrollIntoView with an options dictionary to center the cel

determine what table rows and columns are *actually* visible? (for scrollIntoView purposes.)

2020-05-13 Thread Linus Kamb
I have a DataGrid with a pager with a page size of 50 inside a ScrollPanel. When I ask the grid for the visible range, it give me a range of 50 rows, the size of the page. But what I can actually see at any given time inside the ScrollPanel is often considerably fewer rows than the page size

initialize the object using flex Table contents

2019-04-11 Thread Nanditha Nandu
Hi, Im new to GWT I have a fields in Custom class as, getName(), setName, getCity(), setCity() etc. Im using Flex table to read the values from the user: FlexTable t = new FlexTable(); t.setText(0, 0, "Name"); t.setText(0, 1, "City"); t

Re: Radio Button in Cell Table or Data grid.

2018-06-28 Thread BM
#x27;t have an event/callback/whatever on the "previously selected > radio" when you select another one. > > On Thursday, June 28, 2018 at 6:07:25 PM UTC+2, BM wrote: >> >> Basically to implement custom RadioGroupCell for Cell Table. This is not >> having a

Re: Radio Button in Cell Table or Data grid.

2018-06-28 Thread BM
other one. > > On Thursday, June 28, 2018 at 6:07:25 PM UTC+2, BM wrote: >> >> Basically to implement custom RadioGroupCell for Cell Table. This is not >> having a group of Radio buttons within a single cell. >> >> So what I want is a cell table which has a cell

Re: Radio Button in Cell Table or Data grid.

2018-06-28 Thread Thomas Broyer
tion, then I'm afraid it'll be a bit harder, as you won't have an event/callback/whatever on the "previously selected radio" when you select another one. On Thursday, June 28, 2018 at 6:07:25 PM UTC+2, BM wrote: > > Basically to implement custom RadioGroupCell for Cel

Radio Button in Cell Table or Data grid.

2018-06-28 Thread BM
Basically to implement custom RadioGroupCell for Cell Table. This is not having a group of Radio buttons within a single cell. So what I want is a cell table which has a cell Column called "Active" and defined with one Radio button in that cell. Unlike checkboxes or custom cell o

Re: Using UIField HTML to create a dynamic table

2018-06-19 Thread Thomas Broyer
As can be seen in your screenshot, the request goes to /myaction/myActionService. The myActionService part comes from the @RemoteServiceRelativePath("myActionService"), and the /myaction part comes from the module name; or in this case most likely a rename-to="myaction" in your module (which is

Re: Using UIField HTML to create a dynamic table

2018-06-19 Thread Joyce
Do you have an idea how I can fix that problem? I set my path to @RemoteServiceRelativePath("myActionService") and the url in my web.xml is the following: " /com.google.gwt.myaction.client.client.MyAction/myaction". Is there an other way how to set the url? Or how can I tell GWT to use a differe

Re: Using UIField HTML to create a dynamic table

2018-06-18 Thread Jens
> > > This means GWT has made a request to your server but the servlet is not registered at the expected location, thus the ser

Re: Using UIField HTML to create a dynamic table

2018-06-18 Thread Joyce
Thank you for your help! I changed my configuration in my MyAction class and now I get this error: My code on server side in the

Re: Using UIField HTML to create a dynamic table

2018-06-17 Thread Jens
The errors says you have a ClassCastException in line 14 in MyAction.java. So you should start looking at MyAction. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an em

Re: I want Datetimepicker in cell table how can i do that

2017-07-24 Thread Sachin Chaudhari
Hi harsh thanks for reply but I want time too in it. On Sunday, July 23, 2017 at 10:58:21 PM UTC+5:30, harshyadav wrote: > > Hi, > > Please take a look at the GWT Showcase for an example usage: > > http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCellSampler > > --Harsh > > On Sunda

Re: I want Datetimepicker in cell table how can i do that

2017-07-23 Thread harshyadav
Hi, Please take a look at the GWT Showcase for an example usage: http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCellSampler --Harsh On Sunday, July 23, 2017 at 3:17:26 AM UTC-4, Sachin Chaudhari wrote: > > Date time picker is already there but how can i want DateTimePicker > -

I want Datetimepicker in cell table how can i do that

2017-07-23 Thread Sachin Chaudhari
Date time picker is already there but how can i want DateTimePicker -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com.

GWT parse xml to server and on client get data from server in table

2017-05-04 Thread LifeSecrets
GWT parse xml to server and on client get data from server in table - help me pls -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolki

GWTMaterialDesign Data Table 1.0-SNAPSHOT is available.

2016-07-20 Thread mark kevin ringor
Proud to announce that the GMD Table <https://github.com/GwtMaterialDesign/gwt-material-table> is now available for community use! It has been set up as a separate library for the time being (could eventually be moved into the GMD <https://github.com/GwtMaterialDesign/gwt-material

how to validate editable text in the cell table

2016-05-23 Thread abdul
I have cell table which contains the editable textinputcell, see the below image which is of editable textinputcell [image: enter image description here] <http://i.stack.imgur.com/i2ZaN.png> i want to validate the columns if its number of colleges then user can enter only number(intege

Re: Sorting cell table columns populated from gwt rpc not working

2016-05-13 Thread Olar Andrei
Hello, Thank you. It work perfectly now. Have a nice day, Andrei vineri, 13 mai 2016, 21:12:40 UTC+3, Olar Andrei a scris: > > Hello, I'm pretty new to GWT > > > I have a problem trying to sort specific columns from a cell table, whcih > is populated from the DB, u

Re: Sorting cell table columns populated from gwt rpc not working

2016-05-13 Thread Stefan Bylund
Try to replace this line: ListHandler listHandler = new ListHandler(result); with the following line: ListHandler listHandler = new ListHandler(dataProvider.getList()); I would also create the ListHandler, set its comparators and adding it to the table outside of the async callback when

Sorting cell table columns populated from gwt rpc not working

2016-05-13 Thread Olar Andrei
Hello, I'm pretty new to GWT I have a problem trying to sort specific columns from a cell table, whcih is populated from the DB, using RPC. Basically I'm trying to sort the family name column alphabetically, and it's just not working. Table gets fully populated, but sortin

Cell Table keyboard navigation doesn't work in Firefox

2016-01-28 Thread N Troncoso
The CellTable has a keyboard mode to allow moving around with arrow keys. In Chrome, when moving to an input cell, the cell content is selected (hightlighted), but you can still moving to other cells until you start typeing. In Firefox, the cell content does not highlight. You have to press ent

Can not filter out correct output from page 2 in table if filter result is smaller than page size.

2015-12-04 Thread Chao Wang
Hi all, When I use a filter in CellTable, I can not get correct paging index and data output in table when I input desired prefix in filter textbox from e.g. page 2 or later if filtered data length is smaller that page size: for example: my page size is 8 before doing any filter I have a,b,c

Re: How to Update Cell Table Footer Dynamically

2015-07-09 Thread Mohammed Sameen
I solved it..http://stackoverflow.com/questions/31285655/how-to-update-cell-table-footer-dynamically/31312427#31312427 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails fro

Re: How to Update Cell Table Footer Dynamically

2015-07-08 Thread Mohammed Sameen
Donald,in first step celltable will be get created ,data will come in response(Asyn) which will take some time to load.Once i received the data that time the celltable is created with header and footer.then i will push the data to celltable which will reload and showed in table this time i

Re: How to Update Cell Table Footer Dynamically

2015-07-08 Thread Mohammed Sameen
Donald,in first step celltable will be get created with data,data will come in response(Asyn) which will take some time to load.Once i received the data that time the celltable is created with header and footer.then i will push the data to celltable which will reload and showed in table this

Re: How to Update Cell Table Footer Dynamically

2015-07-08 Thread Donald Mteka
Hello Mohammed, Do you mean this method com.google.gwt.user.cellview.client.AbstractCellTable.addColumn(Column, Header, Header) does not meet your requiirement? (i.e dynamically updating the column footer) Or do you mean you just want a footer and not a header? If so, you could provide an empty hea

Re: How to Update Cell Table Footer Dynamically

2015-07-08 Thread Mohammed Sameen
Thanks Donald for your reply,As i already mention While creating column field i can use this addColumn but data is loading after this celltable creation,in that case i can't use addColumn.I just want to update the column footer. -- You received this message because you are subscribed to the Go

Re: How to Update Cell Table Footer Dynamically

2015-07-08 Thread Donald Mteka
am looking for,Is there any way to set footer to cell table > dynamically.Any help? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To unsubscribe from this group and stop receiving emails from it, send an

How to Update Cell Table Footer Dynamically

2015-07-08 Thread Mohammed Sameen
er to cell table dynamically.Any help? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post

Custom coloring of countries in Google Maps using Fusion Table

2015-04-11 Thread mohit
http://stackoverflow.com/questions/29577659/custom-coloring-of-countries-in-google-maps-gwt -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-too

Re: How to Apply Styling to particular Cell table Row ?

2015-04-07 Thread Juan Pablo Gardella
Abdul wrote: >> >> I Would like to apply background color to particular cell table row >> element based on some condition, I found one API method >> *getRowElement(rowNo).getStyle().setBackgroundColor* >> >>* public void setRowStyleCell(final int ro

Re: How to Apply Styling to particular Cell table Row ?

2015-04-07 Thread Abdul
Any Suggestion on this? On Monday, April 6, 2015 at 3:50:37 PM UTC+5:30, Abdul wrote: > > I Would like to apply background color to particular cell table row > element based on some condition, I found one API method > *getRowElement(rowNo).getStyle().setBackgroundColor* > >

How to Apply Styling to particular Cell table Row ?

2015-04-06 Thread Abdullah
I Would like to apply background color to particular cell table row element based on some condition, I found one API method *getRowElement(rowNo).getStyle().setBackgroundColor* * public void setRowStyleCell(final int rowNo){* *getRowElement(rowNo).getStyle().setBackgroundColor(style

Re: Injecting JavaScript(JSNI) to Cell Table DOM

2015-04-03 Thread Abdullah
Hi Frank, Thanks for your suggestion.. I added this in Scheduler Scheduler.get().scheduleDeferred(new ScheduledCommand() { @Override public void execute() { initTooltip(); } }); This Works for me.. > can you try: > $wnd.$($doc).ready( > > function(){ > $wnd.jQuery("[rel=tooltipTop]").toolti

Re: Injecting JavaScript(JSNI) to Cell Table DOM

2015-04-02 Thread Frank Taffelt
can you try: $wnd.$($doc).ready( function(){ $wnd.jQuery("[rel=tooltipTop]").tooltip({ placement: 'top'}); }); or skip the ready block your dom is already there... On Wednesday, April 1, 2015 at 6:22:36 PM UTC+2, Abdullah wrote: > > Hi, > In my applicat

Injecting JavaScript(JSNI) to Cell Table DOM

2015-04-01 Thread Abdullah
Hi, In my application i am using GWT Cell Table, for some of the Column Header i want to add tooltip.Column Header is created by using SafeHtml and Injecting JS to cell table header using JSNI. But that time the DOM is not creating and JavaScript is not attaching to the column Header for

Re: FLEX TABLE

2015-03-25 Thread Anu Varghese
DEar Pooja, Please refer table.getRowFormatter().setVisible(rowNum, false); On Wed, Mar 25, 2015 at 4:11 PM, Pooja Revankar wrote: > hi, > > I wana know how to remove or hide disabled options from flex table. > > i m just newbie in GWT feild.. plz help.. > > regards,

FLEX TABLE

2015-03-25 Thread Pooja Revankar
hi, I wana know how to remove or hide disabled options from flex table. i m just newbie in GWT feild.. plz help.. regards, pooja -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop

Re: How to implement select all checkbox header for cell table

2015-02-05 Thread Jonathan Franchesco Torres Baca
d is intended only for its addressee. Any review, dissemination, distribution or copying of this is prohibited. If you have received this mail in error please delete the original message and e-mail us. 2015-02-04 15:36 GMT-05:00 BM : > So I followed the code given in these threads : > > https

How to implement select all checkbox header for cell table

2015-02-04 Thread BM
So I followed the code given in these threads : https://groups.google.com/forum/#!searchin/google-web-toolkit/select$20all$20in$20celltable$20header/google-web-toolkit/IY8rfYOzRl0/guGZBgcZ9Z8J http://pgt.de/2012/05/09/checkbox-in-cell-table-data-grid-header/ Apparently when I implemented this

Re: DataGrid inside InfoWindow doesn't show table data

2015-01-15 Thread Kevin Workman
> > Furthermore, you put the DataGrid inside a scrollpanel. You can do that > but then you have to give it an explicit size. DataGrid has its own > scrollpanel so you can probably also get rid of the explicitly created one. > > > Op maandag 12 januari 2015 16:49:54 UTC+1 schreef Ke

Re: DataGrid inside InfoWindow doesn't show table data

2015-01-13 Thread Martijn Wijns
get rid of the explicitly created one. Op maandag 12 januari 2015 16:49:54 UTC+1 schreef Kevin Workman: > > I posted this on StackOverflow here > <http://stackoverflow.com/questions/27847411/datagrid-inside-infowindow-doesnt-show-table-data>, > > but nobody is biting, so

DataGrid inside InfoWindow doesn't show table data

2015-01-12 Thread Kevin Workman
I posted this on StackOverflow here <http://stackoverflow.com/questions/27847411/datagrid-inside-infowindow-doesnt-show-table-data>, but nobody is biting, so I'm cross-posting here. I'm using GWT along with the GoogleMaps GWT API (v3.8 <https://code.google.com/p/gwt-google-

Re: Why Table Layout in GWT?

2014-12-12 Thread Gilberto
Ok, I won't start another "table vs. tableless layout" war. There are a lot of resources about it on the web. My point here is simple: if the developer wants to use table layout, for whatever reason, at least the table should behave as expected according to the W3C recomendation

Re: Why Table Layout in GWT?

2014-12-12 Thread Joel Handwell
Is deprecation considered to be scheduled on those table layout widgets? On Tuesday, December 9, 2014 4:35:59 AM UTC-5, Thomas Broyer wrote: > > > > On Tuesday, December 9, 2014 8:20:41 AM UTC+1, Mohammed Sameen wrote: >> >> Hi, >> Why *table *layout is us

Re: Why Table Layout in GWT?

2014-12-09 Thread Ltearno
Sometimes table layout is just the only option... If you are really annoyed seeing elements, you can use a div with a display attribute to table for example... ( ) Le mardi 9 décembre 2014 10:35:59 UTC+1, Thomas Broyer a écrit : > > > > On Tuesday, December 9, 2014 8:20

Re: Why Table Layout in GWT?

2014-12-09 Thread Thomas Broyer
On Tuesday, December 9, 2014 8:20:41 AM UTC+1, Mohammed Sameen wrote: > > Hi, > Why *table *layout is used in GWT?Why not *div *layout? > Only old widgets use "table layout", and they do so because at the time they were written (years ago) it was the only reliable way

Why Table Layout in GWT?

2014-12-08 Thread Mohammed Sameen
Hi, Why *table *layout is used in GWT?Why not *div *layout? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolki

Problem with dynamic table

2014-12-02 Thread Carsten Spieker
- circumstances, the Internet Explorer 11 causes problems with input fields in the table. Focussed input fields do not show the cursor and editing the content has no effect, sometimes the edited text is even written somewhere into the DOM. With GWT 2.5.1 the problem was much more present than with GWT 2.7

How to listen a content changed event on a div/table using GWT?

2014-06-25 Thread Paladin Wonder
I write a gwt client to append one row data on a specific table, but if the page display is part-updated with AJAX, the row I added disappears, how can I add a listener to catch the event of div updated? public void onModuleLoad() { TableElement info_table = TableElement.as

empty table widget size and reuse

2014-05-14 Thread Steve C
I'd like to have an empty table widget in a DataGrid, which would cover the entire width and height of the table area. Basically, I'd like to just have a vertically and horizontally centered label. Right now I can only get one that occupies the minimum area it needs based on it'

Re: Cell Table Styling

2014-04-01 Thread Alberto Mancini
Hi, try to place the css file in the same package where TableResources is; com.rpc.client if i understand well. Hope it helps. Alberto On Tue, Apr 1, 2014 at 11:50 AM, Zbyněk Kočí wrote: > Im using NetBeans > 00:43:37,382 [DEBUG] Rebinding > com.rpc.client.mainEntryPoint.TableResources >

Re: Cell Table Styling

2014-04-01 Thread Zbyněk Kočí
Im using NetBeans 00:43:37,382 [DEBUG] Rebinding com.rpc.client.mainEntryPoint.TableResources 00:43:37,393 [DEBUG] Invoking generator com.google.gwt.resources.rebind.context.InlineClientBundleGenerator 00:43:37,394 [DEBUG] Preparing method cellTableStyle 00:43:37,

Re: Cell Table Styling

2014-04-01 Thread Thomas Broyer
Look at the Development Mode window (or the equivalent view in Eclipse if that's what you're using), the answer must be there. (feel free to copy/paste the whole log if you need help understanding it) On Tuesday, April 1, 2014 11:16:09 AM UTC+2, Zbyněk Kočí wrote: > > Log: > onModuleLoad() threw

Re: Cell Table Styling

2014-04-01 Thread Zbyněk Kočí
Log: onModuleLoad() threw an exception Exception while loading module *com.rpc.client.mainEntryPoint*. See Development Mode for details. java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Nati

Re: Cell Table Styling

2014-04-01 Thread Thomas Broyer
On Tuesday, April 1, 2014 11:02:53 AM UTC+2, Zbyněk Kočí wrote: > > Hello, every single hint from you all for apply own style for this is > about the same and causes an error: > "*Caused by: java.lang.RuntimeException: Deferred binding failed for > 'com.rpc.client.mainEntryPoint$TableResources

Re: Cell Table Styling

2014-04-01 Thread Zbyněk Kočí
Table.Style.DEFAULT_CSS, > "CellTableStyle.css" }) > CellTable.Style cellTableStyle(); > } > > CellTable table = new CellTable(15, GWT. > create(TableResources.class)); > > //CellTableStyle.css > > .cellTableCell { > height: 35px; > cursor: pointe

Re: GWT Cell Table toggling readonly/editable cell

2014-03-20 Thread BM
Thanks Tom for the quick reply. Hmm. I don't know if it defeats the purpose of using cell table approach because we have to redraw it again. Or is it not? What about custom EditTextCell and intercept the OnBrowserEvent and check for a boolean flag which would get set based on Edit butt

GWT Cell Table toggling readonly/editable cell

2014-03-20 Thread Thomas Broyer
Can't you use a Cell that delegates to either a TextCell or EditableTextCell depending on a flag? And then your toggle button switches the flag and redraws the table. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To u

GWT Cell Table toggling readonly/editable cell

2014-03-20 Thread BM
I have a cell table and here is my requirement. I want to show all rows and columns in cell table in read-only mode when the user first arrives. If the user wants to update a cell, they click Edit button on top of the Screen which would change all the cells inside the cell table to Edit mode

Re: CellTable - ListDataProvider - Table not updating on subsequent calls

2013-12-23 Thread Alfredo Quiroga-Villamil
issing or >>> potentially doing wrong please let me know. >>> >>> Elements: >>> >>> - A CellTable >>> - A ListDataProvider >>> - RequestFactory >>> - A "refresh" button >>> >>> Scenario: >>> >>

Re: CellTable - ListDataProvider - Table not updating on subsequent calls

2013-12-22 Thread Javed
g the obvious so if someone knows what I am missing or >> potentially doing wrong please let me know. >> >> Elements: >> >> - A CellTable >> - A ListDataProvider >> - RequestFactory >> - A "refresh" button >> >> Scenario: >>

Re: CellTable - ListDataProvider - Table not updating on subsequent calls

2013-12-21 Thread Alfredo Quiroga
sing the obvious so if someone knows what I am missing or >> potentially doing wrong please let me know. >> >> Elements: >> >> - A CellTable >> - A ListDataProvider >> - RequestFactory >> - A "refresh" button >> >> Sce

Re: CellTable - ListDataProvider - Table not updating on subsequent calls

2013-12-21 Thread Javed Sumra
ws what I am missing or > potentially doing wrong please let me know. > > Elements: > > - A CellTable > - A ListDataProvider > - RequestFactory > - A "refresh" button > > Scenario: > > - The CellTable is populated via RequestFactory. > - On th

Strange issue with GWT sorting columns of a cell table

2013-10-27 Thread Fanny Wong
Hi everyone, I'm currently trying to implement column sorting in a cell table for my data, however my data doesn't sort and the sort arrow only moves when I click on a row after clicking on a column header. Not sure what I did wrong since most of what I have follows closely

Re: Load on demand - table \ grid

2013-10-03 Thread Jens
Sounds like you want to check out DataGrid + AsyncDataProvider + SimplePager. http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwDataGrid -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this gro

Load on demand - table \ grid

2013-10-03 Thread Nir Avital
Hi, We're examining GWT for our next generation project. We would like to create a simple table \ grid that will represent a database table. What we want to do is to populate this table\grid with our database data. Our tables are very big (~2 Million rows) and therefore our requirements

Re: Problem with SuggextBox as table cell

2013-09-27 Thread Timothy Gonzalez
jorge vasquez writes: > > > Hi Christian Pelster ,I watched your code , because I need implement some similar and I could solved your problem , you should modify the method updateViewData >  some like this: > >  private String updateViewData(final Context context, final Element parent, fina

Best cell widget/table to populate columns?

2013-06-19 Thread Tim Oshea
I am creating a GWT app that will use a table to display some data. I am not sure which cell widget/table to use to populate data vertically in column. Basically I want to populate data going down instead of going across. Simple example: Category A | Category B

Build tree table with GWT CellTableBuilder

2013-05-22 Thread jaga
Hi, I managed this. I followed the example given on the latest GWT showcase for the custom data grid http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellTable Key is new TableRowBuilder. You can inject rows into the table. Use a Click event on a cell to trigger the injection

Build tree table with GWT CellTableBuilder

2013-05-22 Thread Ben
Is it possible to build a tree table like this<http://www.sencha.com/examples/#ExamplePlace:basictreegrid>with the new CellTableBuilder of "vanilla" GWT? <https://lh5.googleusercontent.com/-oHWT1_E1_LY/UZzQ8WUvYlI/AAM/I8q4wxhkTt4/s1600/oqDJW.png> The GWT

Re: GWT 2.1 CELL TABLE

2013-03-02 Thread David Phan
Check the content of your .css file. It could cause Deferred Binding problem. I ran into the same issue. After I re-copied CellTable.css into my .css and reran everything was fine. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: GWT 2.1 cell table paging bug?

2013-02-13 Thread JahSon
If you want the table height to remain consistent, couldn't you wrap the table in a containing element (e.g. div) of a fixed height? That way, if you display the pager directly underneath the table for example, it will always stay in the same spot and just the table itself will shrin

Re: GWT 2.1 cell table paging bug?

2013-02-13 Thread JahSon
If you want the table height to remain consistent, couldn't you wrap the table in a containing element (e.g. div) of a fixed height? That way, if you display the pager directly underneath the table for example, it will always stay in the same spot and just the table itself will shrin

Re: GWT 2.1 cell table paging bug?

2013-02-13 Thread JahSon
If you want the table height to remain consistent, couldn't you wrap the table in a containing element (e.g. div) of a fixed height? That way, if you display the pager directly underneath the table for example, it will always stay in the same spot and just the table itself will shrin

Re: GWT 2.1 cell table paging bug?

2013-02-13 Thread JahSon
actually happen is that the table should maintain the full > height as if it has all the rows, but display only the few remaining > rows on the last page. > > Basically, the table should have the same height regardless of the > number of rows and the pager component should remain

jsp, google charts, table has no columns

2013-01-30 Thread streethawk707
Hi All Im getting the "table has no columns" all the time. Please let me know where I went wrong. Below are my codes. JSP: pie.jsp (This is to pull data from DB/DS. Currently Im trying with hardcode values as below.) <%@page contentType="application/json; charset=UTF-8

Re: cannot break word in table td

2013-01-21 Thread tong123123
I found the solution, before I set the FlexTable > table-layout:fixed > then in td, set > white-space:normal; > word-wrap:break-word; > in column, I set > flexTable.getColumnFormatter().setWidth(0, "150px"); > flexTable.getcolumnFormatter().setWidth(1, "2

How to drag and drop multiple rows from cell table

2013-01-01 Thread Revital
I need to drag and drop multiple selected rows from a cell table (that contains specific objects). I’m trying to use DragAndDropCellTable but I can drag only one cell this way. Anyone knows how can I drag few rows? I’m catching the drop using DroppableWidget and I want the

How to drag and drop multiple rows from cell table

2013-01-01 Thread Revital
Hi, I need to drag and drop multiple selected rows from a cell table (that contains specific objects). I’m trying to use DragAndDropCellTable but I can drag only one cell this way. Anyone knows how can I drag few rows? I’m catching the drop using DroppableWidget and I want the

Re: Problem with SuggextBox as table cell

2012-12-18 Thread jorge vasquez
Hi Ande , sorry i forgot put this method but i can explain you, the method implementarEstilos(suggestBox); set a styleName to the object suggestBox , and the popupStyleName is a constant with the name that you put to suggestBox popup (because is the unique way how we can found the popup hidden

Re: Problem with SuggextBox as table cell

2012-12-12 Thread Ande
Hi Jorge Vasquez, I tried to follow your solution, but I can not figure out what this method does: implementarEstilos(suggestBox); > Also I have no idea where you retrieve the popupStyleName in this line: if(popupStyleName.equals(classNameLastChild)) { > greetings Ande -- You

How to add a check-all checkbox for cell table?

2012-11-12 Thread Thomas Frisch
I have a Cell Table of which the last column is a checkbox. I would like to add a Check-All-Box as a footer that when clicked selects every checkbox for every row. Somehow it won't work here is what I got so far: private Header initFooterUnSelectAll(){ ValueUpdater updater

Re: Problem with SuggextBox as table cell

2012-11-06 Thread jorge vasquez
Hi Christian Pelster ,I watched your code , because I need implement some similar and I could solved your problem , you should modify the method updateViewData some like this: private String updateViewData(final Context context, final Element parent, final ViewData viewData, final b

Custom Cell in Table

2012-10-24 Thread furious_panda
Hi all, I'm new in GWT and I want to create* a table with custom cell.* I want to do a custom cell similar to the gwt examples : http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList The difference is each row, I have for example 5 columns, and each cell must be a custom cel

Re: default table button style outside a table

2012-10-03 Thread Raymond Cidad
tton outside that, it uses another style. > > How can I use that same style outside the table? > > I'm using UiBinder ui.xml and putting all my css there. > > thanks > > > -- You received this message because you are subscribed to the Google Groups "Google We

default table button style outside a table

2012-10-03 Thread Raymond Cidad
hey there, When you use a button inside a cellTable, it gets a style from the default cellTable style. When you use a button outside that, it uses another style. How can I use that same style outside the table? I'm using UiBinder ui.xml and putting all my css there. thanks --

Re: GWT tree table data grid?

2012-10-02 Thread Nuno Gonçalves
I'm also searching for this. On Thursday, January 26, 2012 10:11:06 PM UTC, CRISTI Stamate wrote: > > Can anyone tell me if exist in GWT the tree table data gid component? > > I mean by tree table data grid a component that is: > - data grid like in GWT 2.4 (fixed h

Re: How to dynamically resize the table width after adding/removing columns?

2012-09-20 Thread Andrei
If you want the width of the DataGrid to change, set width of all columns in pixels, and use setWidth() on your DataGrid after each change. If you want the width to be constant (a better option from the UI perspective, in my opinion), set the width of your DataGrid once and set width of at least

Re: How to dynamically resize the table width after adding/removing columns?

2012-09-20 Thread James
I have the same request. Can somebody answer this question? James On Wednesday, June 27, 2012 5:32:08 PM UTC-4, javadev79 wrote: > > How do I ensure the datagrid expands to the total columns width or shrinks > to the minimum table width on adding/removing columns? > > Using refr

Table with horizontal header

2012-09-12 Thread Andrei
If you don't mind the first column scrolling out of the view, then just add style to the first column. Any other solution is many times more complicated: a FlowPanel with special CSS settings that houses two DataGrids side by side with fixed row heights (or special logic to sync heights of all

Table with horizontal header

2012-09-12 Thread Poalo Pacussi
Hi folks, as far as I read the documentation and read some blogposts, I could not find a hint on built-in support for a horizontal header (header cells on the left side of the table). Am I mistaken? If not what would you suggest to be the easiest/correct way to implement such a feature? First

Re: Clear Cell table data

2012-09-03 Thread Kara Marie Rawson
. This provider is bound to the cell table (datagrid and cell table are the same thing for the most part.) kara On Tue, Aug 28, 2012 at 10:28 AM, lucky wrote: > Can any one help me on this? > > On Monday, 11 June 2012 21:13:45 UTC+5:30, lucky wrote: >> >> How to clear cellta

Re: Clear Cell table data

2012-08-30 Thread Thad
I create an empty ArrayList of my data and assign it to my CellTable: data = new ArrayList(); ... hexArea.setRowCount(data.size(), true); hexArea.setRowData(0, data); There may well be better ways (there is *so much* to understand about cell views). On Tuesday, August 28, 2012 1

Re: Clear Cell table data

2012-08-28 Thread lucky
Can any one help me on this? On Monday, 11 June 2012 21:13:45 UTC+5:30, lucky wrote: > > How to clear celltable data when i click on the Button 'Clear'? > > i tried with cellTable.setRowCount(0); > and > private void clearTable() { > if (dataProvider.getDataDisplays() != null && > dataPro

Problem with SuggextBox as table cell

2012-08-24 Thread Christian Pelster
Hi all, I'm currently evaluating the possibility to use a SuggestBox as a table cell. As a proof of concept I copied the code from EditTextCell and added the creation of the SuggestBox to the edit method (please ignore the map holding all SuggestBox instances, this is just for debu

CellTable - ListDataProvider - Table not updating on subsequent calls

2012-08-04 Thread Alfredo Quiroga-Villamil
llTable is populated via RequestFactory. - On the first load, all data is shown in the table (all rows are populated) - I have a button (refresh). - The Table can be edited, so as an example I edit the first row, first cell and simply change the text to something else. - I click on the refresh button

  1   2   3   4   5   6   >