data table widget

2009-03-26 Thread justin
Is there a UI widget for gwt similar to Cocoa's NSTableView? Basically, you get a table of a predefined number of rows and columns. Scrolling is built-in. As the user scrolls, a method is called to request data for the table cells that are visible at that moment. Thank you, j

how to read a GWT table data using selenium

2009-03-22 Thread sharad
hi , i am automating a web application testing; where i have some GWT tables on the browser; i am using selenium to automate the testing process. since its is dynamic table, the contents are generated on the fly. wow to read the values of the table using selenium? thanks, sharad

Re: Find target table-cell after onMouseDown

2009-03-16 Thread Tony Strauss
Perhaps I'm not understanding the context of the question correctly, but can you use a TableListener instead of a MouseListener? http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/TableListener.html HTMLTable (the parent of Grid and FlexTable) has an addTableLi

Find target table-cell after onMouseDown

2009-03-16 Thread Michael
Hi there, I have a Composite which wraps a FlexTable and to which I've added a MouseListener. Without adding individual Widget subclasses to each cell (they're currently just text), is there a way of finding out which cell was clicked on? Cheers Michael --~--~-~--~~~

Re: Add a new row in a table dynamically

2009-02-13 Thread Damien Picard
Hi, Where your existing HTML table is displayed in your GWT apps ? in a HTML Panel, an iframe, or other ? Regards, Damien 2009/2/13 krissh > > Hi, > I wanted to know if it is possible to add a new row to a existing > html table dynamically using GWT. I am fairly new to

Add a new row in a table dynamically

2009-02-13 Thread krissh
Hi, I wanted to know if it is possible to add a new row to a existing html table dynamically using GWT. I am fairly new to GWT and was wondering if its possible. I checked the forum and couldn't find anything on this. If anyone has a solution for this please let me

Re: GWT Incubator: table example broken link

2009-02-12 Thread Sumit Chandel
Hi Fred, Thanks for reporting the broken link. It's now been fixed to point to the ScrollTableDemo. Cheers, -Sumit Chandel On Mon, Feb 9, 2009 at 5:32 AM, Arthur Kalmenson wrote: > > I recommend just grabbing the source and running the example yourself. > It works fine. > > -- > Arthur Kalmenson

Re: Moving Rows in a Table

2009-02-12 Thread Ruku
Any Ideas on this? Thanks. On Feb 10, 1:56 pm, Ruku wrote: > Hi, > > I am looking for a table like or table widget where I canmovecolumns > up and down on a button click. Is there a widget I could use to get > that functionality? > > PS: I am currently using FlexTable to

Moving Rows in a Table

2009-02-10 Thread Ruku
Hi, I am looking for a table like or table widget where I can move columns up and down on a button click. Is there a widget I could use to get that functionality? PS: I am currently using FlexTable to add components to the row and adding move up and move down buttons and adding listeners and

Re: sort table

2009-02-10 Thread sloughran
I don't have the code anymore (HD went kablooey) but I made something along those lines. It wasn't a trivial problem, but essentially, you add a Cell Listener to each col's title, and if you click that cell you find the sorted order of that Column. THen you make a temp table, an

Re: GWT Incubator: table example broken link

2009-02-09 Thread Arthur Kalmenson
I recommend just grabbing the source and running the example yourself. It works fine. -- Arthur Kalmenson On Sat, Feb 7, 2009 at 3:05 AM, Fred Janon wrote: > On this page: > > http://code.google.com/docreader/#p=google-web-toolkit-incubator&s=google-web-toolkit-incubator&t=ScrollTable > > the

sort table

2009-02-09 Thread Peterman
Hi to all I newer with GWT, and I would like create a table with sort funcionality: pick a cell and sort each row, for example. I read about widgets of GWT, but the table he give me it's very simple. Later I tried with GWT incubator, with the ScrollPane widget, but It doesn't work

GWT Incubator: table example broken link

2009-02-07 Thread Fred Janon
On this page: http://code.google.com/docreader/#p=google-web-toolkit-incubator&s=google-web-toolkit-incubator&t=ScrollTable the link Example: http://google-web-toolkit-incubator.googlecode.com/svn/trunk/demo/ScrollTable/index.html is broken (404) Would someone fix it and report? Thanks Fred

how to set the size of a dialog box with respect to the flex table inside it?

2009-02-06 Thread malen
Hi! I'm quite new with gwt and I have a simple yet annoying problem. I want to show a dialog box that contains a flex table that adjusts according to the columns and rows of data. I tried getting the offset height and width of flex table but it gives me a value of 0. I also tried to se

Table id

2009-01-30 Thread Venkat
Hi All, I need a help. I have created a table by dynamic and i need to refer the table id in the DOM element. I have pasted the code below. Please help me. it works fine if I create the table in the html file. table = (""); if (plugin()) { st

howto: slide-out behavior for table rows?

2009-01-29 Thread Denis Ergashbaev
His again :) I maybe looking for easy solutions, but could not hold myself from posting. Do the standard DWR components support effects like fade-ins/outs and slide-ins/outs? The task would be to have one component (a table or tabbed pane with table inside) to add/remove rows with pretty row

Why table based layouts have border-collapse: collapse?

2009-01-28 Thread Slava Nadvorny
Why table based layouts have border-collapse: collapse? They look different on IE and FF because of this. Border-collapse does not work on IE6/7 (basically on IE7 this does not override cellspacing, and IE6 completely ignore is). But it works on FF2/3 and on FF tables completely ignore

Re: How to add Listeners in flex table

2009-01-25 Thread Arthur Kalmenson
You'd put those listeners on the buttons that are causing this add/delete functionality, not on the flex table itself. -- Arthur Kalmenson On Sun, Jan 25, 2009 at 6:42 AM, manish wrote: > > Hi All, >Is there a way to add Custom Listeners in a flex table. Basically > I am

How to add Listeners in flex table

2009-01-25 Thread manish
Hi All, Is there a way to add Custom Listeners in a flex table. Basically I am interested in the events like the Row added and row deleted. Thanks Manish --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "G

Re: flex table throwing IndexOutOfBounds Exception in firefox when trying to customize it to fewer columns

2009-01-24 Thread jchimene
Hi, Compile using "-style DETAILED" switch & debug using FireBug. On Jan 23, 11:14 am, ruby1 wrote: > Hi, > > In my GWT app, i tried to show different columns for different users > on a flex table > so in my eclipse ide  both in web/hosted mode i dont see any

flex table throwing IndexOutOfBounds Exception in firefox when trying to customize it to fewer columns

2009-01-23 Thread ruby1
Hi, In my GWT app, i tried to show different columns for different users on a flex table so in my eclipse ide both in web/hosted mode i dont see any errors. but when i try to access it from localhost , FF3 throws IndexOutOfBoundsException, IE6 complains thrown exception not caught, and it

Re: How to make scrollable flex table with header row fixed

2009-01-09 Thread alex.d
Just use two tables - one for the header and another one in a scrollpanel for the data. Both in the verticalPanel. On 9 Jan., 12:23, Manish Gupta wrote: > Anybody implemented scrollable Flex table. Please send your inputs > what will be the strategy to develop such a com

Re: Help needed for Scrollable Table with Header fixed

2009-01-09 Thread ajay jetti
check out the incubator project , it might give u an idea of how to go about wrting something like scrollable table --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to

How to make scrollable flex table with header row fixed

2009-01-09 Thread Manish Gupta
Anybody implemented scrollable Flex table. Please send your inputs what will be the strategy to develop such a component --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To po

Help needed for Scrollable Table with Header fixed

2009-01-09 Thread Manish Gupta
Hi, Did anybody implemented Scrollable table with header fixed. we are already having one GWT table developed for our application but now we need to enhance this table in order to have scrolling functionality with fixed header. quick reply will be highly appreciated. Any example code will really

Re: How to get the width of a cell in a HTML table/Grid

2009-01-08 Thread Joe Cole
See: UIObject.getOffsetWidth: return DOM.getElementPropertyInt(getElement(), "offsetWidth"); Just get your td element (do it yourself from the table or yourwidget.getParent().getElement()) and use: return DOM.getElementPropertyInt(element, "offsetWidth"); On Jan 9, 12:5

How to get the width of a cell in a HTML table/Grid

2009-01-08 Thread sssmack
The width of a widget contained it a cell can be gotten, but how is the width of a cell or column gotten? Let's say all cells of a Grid contain text. How is the width of a column or cell gotten? Thanks --~--~-~--~~~---~--~~ You received this message because you a

complex widgets in scroll table cells

2009-01-07 Thread Ginny
(but are not) -- thin gray lines on the bottom and right of both the HTML and the button. Is there a better way to do this? ScrollTable table; HorizontalPanel p = new HorizontalPanel(); p.add(new HTML("foo")); p.add(new Button("press here")); tab

Re: How to apply Css for different Insatence with different css in same table(FlexTable)

2009-01-06 Thread Arthur Kalmenson
You use the .setStylePrimaryName(String) or .addStyleDependentName(String) that's available in any UIObject. -- Arthur Kalmenson On Fri, Jan 2, 2009 at 1:47 AM, Venkatesh wrote: > > Hi to all, > I want to apply Css like Flextable, verticalpanel,... with different > Instance... with different

How to apply Css for different Insatence with different css in same table(FlexTable)

2009-01-01 Thread Venkatesh
Hi to all, I want to apply Css like Flextable, verticalpanel,... with different Instance... with different css. please help me of theat. regards, venkat,. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web

Re: Selection of cells in Flex Table

2008-12-19 Thread Kevin Tarn
You need to call FlexTable.addTableListener, and so your operations in onCellClicked. Kevin On Fri, Dec 19, 2008 at 9:13 PM, Fameeda wrote: > > Hi, > > We have a flex table and require user to be able to select cells in > it. Multiple cells are also to be selected. Once selected

Selection of cells in Flex Table

2008-12-19 Thread Fameeda
Hi, We have a flex table and require user to be able to select cells in it. Multiple cells are also to be selected. Once selected we need to do some operation on selected cells like merging them. Is it possible to select cells either by mouse/keyboard. Can someone please guide on how we can

Re: 2 column flex table with another table inside

2008-12-18 Thread mwaschkowski
Well, I suppose I could try setting the padding of the inner table to be the negative of the cell padding (ie. -5px) but not sure if negative padding is a valid cross browser css? On Dec 16, 3:15 pm, "Kevin Tarn" wrote: > Did you ever try to use getCellFormatter().setStyleName

Re: 2 column flex table with another table inside

2008-12-16 Thread Kevin Tarn
> > > > I ran into some difficulty with alignment today with a 2 column table: > > > > Col 1 | Col 2 > > x | y > > x | inner table > > x | y > > > > What I found is I wanted to have the inner table set to cell padding > >

Re: 2 column flex table with another table inside

2008-12-16 Thread mwaschkowski
No ideas? Am I the only one that ran into this kind of situation? On Dec 13, 9:01 am, mwaschkowski wrote: > Hi, > > I ran into some difficulty with alignment today with a 2 column table: > > Col 1 | Col 2 > x       | y > x       | inner table > x       | y > > Wh

2 column flex table with another table inside

2008-12-13 Thread mwaschkowski
Hi, I ran into some difficulty with alignment today with a 2 column table: Col 1 | Col 2 x | y x | inner table x | y What I found is I wanted to have the inner table set to cell padding 5, but the resulting table ended up with a 5px space on left side of inner table looking

Re: Expandable rows in GWT ext table grid

2008-12-10 Thread Arthur Kalmenson
AM, Cris <[EMAIL PROTECTED]> wrote: > > Hi > Can any help me in how to create an expandable rows using gwt ext. > (i.e. on click on an icon the entire table row should be expanded ). > > Thanks in advance > Krish > > > --~--~-~--~~~--

Expandable rows in GWT ext table grid

2008-12-08 Thread Cris
Hi Can any help me in how to create an expandable rows using gwt ext. (i.e. on click on an icon the entire table row should be expanded ). Thanks in advance Krish --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: How to add expandable table row using gwt-ext

2008-12-08 Thread Sumit Chandel
, -Sumit Chandel On Thu, Dec 4, 2008 at 7:39 PM, Cris <[EMAIL PROTECTED]> wrote: > > Hi, > I am using Gwt-ext to build my table. But I need to implement the > table in such a way that the row can be expandable when I click on "+" > symbol. > > Please provide me

Re: How to add checkbox as header in table

2008-12-06 Thread Arthur Kalmenson
ec 4, 2008 at 11:32 AM, Cris <[EMAIL PROTECTED]> wrote: > > Hi, > I am using GWT-ext to create grid. I need to create an table with > multiple columns. One of the column should have checkbox as header. > > For ex: Defined 'FieldDefs' and 'ColumnDefs&

How to add expandable table row using gwt-ext

2008-12-04 Thread Cris
Hi, I am using Gwt-ext to build my table. But I need to implement the table in such a way that the row can be expandable when I click on "+" symbol. Please provide me example to this Thanks in advance. Cris --~--~-~--~~~---~--~~ You received this messa

How to add checkbox as header in table

2008-12-04 Thread Cris
Hi, I am using GWT-ext to create grid. I need to create an table with multiple columns. One of the column should have checkbox as header. For ex: Defined 'FieldDefs' and 'ColumnDefs' as below FieldDef[] fieldDefs = new FieldDef[]{ new StringFieldDef("company&q

Re: Add a new row in a table dynamically!!!

2008-11-26 Thread gregor
can occupy more than one row or column like a collage. Grid is a straight "four by two" type effort, and for, say, adding an extra row of table style data would probably be the simplest choice. regards gregor On Nov 26, 6:08 pm, jamer <[EMAIL PROTECTED]> wrote: > You can use t

Re: Add a new row in a table dynamically!!!

2008-11-26 Thread jamer
You can use the widget FlexTable and their row can be HTML Javier Mejías --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegrou

Add a new row in a table dynamically!!!

2008-11-26 Thread Rakesh
Hi, I wanted to know if it is possible to add a new row to a existing html table dynamically using GWT. I am fairly new to GWT and was wondering if its possible. I checked the forum and couldn't find anything on this. If anyone has a solution for this please let me know. Thanks, R

Re: Scrolling an HTML Table

2008-11-16 Thread kozura
Judging from your other message this is for an IM-like application? Why not use a ScrollPanel, and every time you add text call its ScrollToBottom() method. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web

Scrolling an HTML Table

2008-11-16 Thread Sandile
To whom that it may concern, I have a problem. I have an HTML panel that I need to always be automatically scrolling to its bottom. I have it on autoscroll of course but, I need it to scroll down every opportunity that it can - if you know what I mean. I just want to know if I can do this without

Re: How can i create dynamically growing table panel

2008-11-11 Thread ajay jetti
A flextable should do the job for you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group

How can i create dynamically growing table panel

2008-11-11 Thread zujee
Hi all, I would like to create a table which will grow according to the data of a dialog with fixed height.Say if i have a less amout of data it wil show in 1 column, and add columns to that table if data increses. thanks and regards zujee --~--~-~--~~~---~--~~ You

Getting the table from the FieldSet

2008-10-23 Thread Gwt ongole
Hi I am tring to get the Widget from the Field set. Is it possible for getting Widget From the field set i add the table to the field set like FieldSet f=new FieldSet() f.add ( Flextable object) But i did n't get the table from the filed set is it possible to get the flex table or any W

Re: How to check existence a table in database

2008-10-18 Thread gregor
Oct 18, 8:19 am, avd <[EMAIL PROTECTED]> wrote: > Hello Sir, > Thank you for giving me reply my privious problem thats very helpful > for me. > my problem is How to check that a table is exist in database or not > and if a table is not exist in database then how to create

Re: How to check existence a table in database

2008-10-18 Thread Lothar Kimmeringer
avd schrieb: > my problem is How to check that a table is exist in database or not > and if a table is not exist in database jdbcConnection.getMetaData().getTables(...) see e.g. http://java.sun.com/j2se/1.5.0/docs/api/java/sql/DatabaseMetaData.html#getTables(java.lang.String,%20java.lang.

How to check existence a table in database

2008-10-18 Thread avd
Hello Sir, Thank you for giving me reply my privious problem thats very helpful for me. my problem is How to check that a table is exist in database or not and if a table is not exist in database then how to create a new table? With regards Avdhesh

Re: dynamic table

2008-09-07 Thread Eric Ayers
m: > SchoolCalendarService > /calendar > > to: > SchoolCalendarService > /com.google.gwt.sample.dynatable.DynaTable/calendar pattern> > > rgds > > > On Sep 3, 4:00 am, Brian <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Yeah it's still happen

Re: dynamic table

2008-09-06 Thread YoeZ
aTable/calendar rgds On Sep 3, 4:00 am, Brian <[EMAIL PROTECTED]> wrote: > Hi, > >   Yeah it's still happening.  I just click on the "Dynamic Table" link > on that GWT Example page (http://code.google.com/webtoolkit/examples/) > and the application loads, but I get

Re: dynamic table

2008-09-02 Thread Brian
Hi, Yeah it's still happening. I just click on the "Dynamic Table" link on that GWT Example page (http://code.google.com/webtoolkit/examples/) and the application loads, but I get a nice popup saying: "The DynaTable example uses a Remote Procedure Call (RPC) to request

SV: dynamic table

2008-09-02 Thread Hermod
22:01 Til: Google-Web-Toolkit@googlegroups.com Emne: Re: dynamic table If this error is still occurring and you have more details, please let me know. The problem could be restricted to a certain region or network. We've checked around internally and haven't found any smoking guns. On Tue,

SV: dynamic table

2008-09-02 Thread Hermod
eb-Toolkit@googlegroups.com Emne: Re: dynamic table If this error is still occurring and you have more details, please let me know. The problem could be restricted to a certain region or network. We've checked around internally and haven't found any smoking guns. On Tue, Sep 2, 2008 at 2:58 PM, Bri

Re: dynamic table

2008-09-02 Thread Eric Ayers
: > > What he's saying is the online RPC example demo'ing GWT doesn't > work. > This has nothing to do with building and running the example locally. > > Go here: http://code.google.com/webtoolkit/examples/ > > and click the Dynamic Table example. It gives an R

Re: dynamic table

2008-09-02 Thread Brian
What he's saying is the online RPC example demo'ing GWT doesn't work. This has nothing to do with building and running the example locally. Go here: http://code.google.com/webtoolkit/examples/ and click the Dynamic Table example. It gives an RPC error. Mail and Showcase exam

Re: Where can I use the TableRowElement?Which table has a method call:getRowElement,or something like that?

2008-09-02 Thread MN
i think you look for this: http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/TableListener.html On 2 Sep., 15:59, MN <[EMAIL PROTECTED]> wrote: > i dont understand your question. "So where can I use it?" > > better explain for us: what you still have and with

Re: Where can I use the TableRowElement?Which table has a method call:getRowElement,or something like that?

2008-09-02 Thread MN
i dont understand your question. "So where can I use it?" better explain for us: what you still have and with which detail you have a problem. maybe post some example code so we can try out it or give you a detailed suggestion depending on your example code. On 2 Sep., 11:20, Alex Luya <[EMAIL P

Where can I use the TableRowElement?Which table has a method call:getRowElement,or something like that?

2008-09-02 Thread Alex Luya
Sometime,my operation is based on row,for an example, when I click a row which represent a record of database and want to open a window to show details of this record.So where can I use it? --~--~-~--~~~---~--~~ You received this message because you are subscribed t

<    1   2   3   4   5   6