TabLayoutPanel with an "settings" icon to the right.

2014-09-26 Thread Suri
Hi All, I'm trying to see if I can create a TabLayoutPanel, such that the tabs would be their default to the left, but I'd like to have a clickable icon or something to the right side of the tab panel. Any idea how I go about it? Thanks -- You received this message because you are subscribed

How to be notified once the browser window closed?

2014-01-22 Thread suri
I am opening a new window in a gwt widget with the help of window.open(url, "", ""); Once the new window is opened i am doing some editing operation. I want to make some code to be executed in the gwt widget once the user closes the newly opened window. Here(in gwt widget) how can i know that th

Re: GWT Plugin for Eclipse 3.8 (Juno 4.2)

2012-12-05 Thread Suri
ed. I had uninstalled the Symantec we were using and tried again but no luck. I've tried the local version of the file, the remote version at http://dl.google.com/eclipse/plugin/4.2 heck even tried 3.8 because some website suggested it. Nothing's helped so far. Any ideas folks? Suri On

Re: GWT Developer Plugin for Firefox 2.0.0.20

2010-06-26 Thread Priya Suri
anted to find out if there is a version available for Firefox 2. Regards, Priya On Fri, Jun 25, 2010 at 2:59 PM, Chris Conroy wrote: > On Fri, Jun 25, 2010 at 10:13 AM, Priya Suri wrote: > > Hi, > > I am trying to install GWT developer Plugin for Firefox 2.0.0.20 but I >

GWT Developer Plugin for Firefox 2.0.0.20

2010-06-25 Thread Priya Suri
Hi, I am trying to install GWT developer Plugin for Firefox 2.0.0.20 but I get an Incompatible Extension Message stating that Google Web Toolkit Developer Plugin for Firefox 1.0.7511 will work only with Firefox versions 3.0 to 3.6. Is there a version available for Firefox 2.0.0.20? How do I get th

Re: Triggering an event upon completion of onModuleLoad

2009-10-12 Thread Suri
Never mind, figured it out with a couple of online examples. Thank you Charlie. That really helps quite a bit. Suri On Oct 12, 4:48 pm, Suri wrote: > Example? :) > > On Oct 12, 4:38 pm, charlie wrote: > > > DefferedCommand ? > > > On Mon, Oct 12, 2009 at 3:33 PM,

Re: Triggering an event upon completion of onModuleLoad

2009-10-12 Thread Suri
Example? :) On Oct 12, 4:38 pm, charlie wrote: > DefferedCommand ? > > On Mon, Oct 12, 2009 at 3:33 PM, Suri wrote: > > > Hi all, > > I have a question for GWT 1.6. I'm currently building a bookmarkable > > page. To take an example of a search module, >

Triggering an event upon completion of onModuleLoad

2009-10-12 Thread Suri
Hi all, I have a question for GWT 1.6. I'm currently building a bookmarkable page. To take an example of a search module, 1) We can go to a search index page and search by providing some criteria. Then we can bookmark the results as a link. 2) Upon loading the bookmarked link, the results would no

Re: Wishlist - Data Oriented Grid

2009-06-15 Thread Suri
strength. They do not have the export functionality yet but other than that, I think almost all your wish list has been covered? :) Suri On Jun 15, 8:20 am, Salvin wrote: > I really feel that Gwt should contain a Data-oriented-grid > > It should be nothing but a simple table with the fo

Re: Exception handling in GWT Service

2008-12-24 Thread Suri
Correction - This line public void load(AsyncCallback>) Is meant to be public void load(AsyncCallback> callback) Thanks On Dec 24, 11:23 am, Suri wrote: > Hey all, > I was looking for a solution to theexceptionhandlingdescribed above > and tried the technique suggested.

Re: Exception handling in GWT Service

2008-12-24 Thread Suri
throw caught; // This is where compilation Fails } catch(MyRPCException e) { Window.alert("DING"); } } } Any ideas what I'm doing wrong? Thanks Suri On Nov 26, 11:08 pm, satya wrote: > There is a S

Re: Incubator: ScrollTable

2008-12-22 Thread Suri
Hi Francesco, I'm using the ScrollTable myself and I was able to make the columns to be of fixed width simply by setting the minimum, preferred and maximum widths of my column(s) to be of the same value. e.g if you're being consistent with the example code provided: private TableDefinition creat

Making a request to another page

2008-12-22 Thread Suri
there was a more appropriate way to do this. Does this mean that there is no way of making a request/call to the server without providing a callback? Thanks Suri --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups &

Re: incubator + ProgressBar

2008-12-16 Thread Suri
Ah. Excellent stuff. Thanks Kevin. I'll see if I can use the widget accordingly. Appreciate the help. Suri On Dec 16, 8:51 am, "Kevin Tarn" wrote: > Understand you now. Loading of your program is not related to ProgressBar. > You can set several check points in your widget

Re: incubator + ProgressBar

2008-12-16 Thread Suri
of static variable where after certain methods in my program have been completed, I update the value of the progress bar? Thanks again Suri On Dec 15, 8:08 pm, "Kevin Tarn" wrote: > You can simply inherit ProgressBar to overwrite method "generateText". This > method is

Re: PagingScrollTable + how to sort locally

2008-12-15 Thread Suri
column that was clicked each time I click on a column to sort? or does it just return the primary column (e.g always returns col 1) Part of my question is really asking, if I need to be doing any coding for extending the ColumnSortList to form my own? Let me know your thoughts. Thanks Suri On Dec 9

incubator + ProgressBar

2008-12-15 Thread Suri
) can i go about figuring out how much % or atleast figure out if the module has loaded completely and so how would I change this value dynamically on the progress bar? 2) Once the load is complete, do i remove the widget or set its visibility to false? Thanks

Re: How to have a layered panel?

2008-12-14 Thread Suri
m using it within a tabbed panel when one tab is active with some static variable that controls the editable nature of either tab. Although of course, the parent panel of the GlassPanel should be AbsolutePanel. Thanks Suri On Dec 11, 6:17 am, "Litty Preeth" wrote: > Hey Make sure that th

PagingScrollTable Gen2 + How to customize CSS for a row - hovering

2008-12-13 Thread Suri
7;m trying to get the hovering CSS to be row wide and not just highlighting a cell. Any ideas are appreciated. Thanks a bunch. Suri --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

Re: How to have a layered panel?

2008-12-08 Thread Suri
d > > transparency. Now just put your widget or popup on top of this panel. > > This way the z index of your translucent panel will be between the > > main screen and your visible widget. > > > You might also have to put a screen resize handler to resize the size > &g

Re: Generic serializable object

2008-12-08 Thread Suri
run time error. Try that and see how it goes. I'm a learner myself :) Suri On Dec 8, 10:15 am, chris_wesdorp <[EMAIL PROTECTED]> wrote: > Hi, > > I tried but did not succeed so maybe someone can help. Using GWT RPC > for CRUD using serializable objects requires at least on

Re: How to have a layered panel?

2008-12-08 Thread Suri
mples... > > On Sun, Dec 7, 2008 at 1:05 PM, olivier FRESSE <[EMAIL PROTECTED]>wrote: > > > CSS is probably the way to go. > > A simple panel with a good css style may do the trick : > > > some samples here : > >http://dev.opera.com/articles/view/css-and-op

Re: Does GWT RPC use HTTP?

2008-12-07 Thread Suri
your webserver will pass it over to the servlet container just like another servlet call. Hope that helps Suri On Dec 7, 7:09 am, Venu <[EMAIL PROTECTED]> wrote: > Hi grp, > > What port does GWT RPC mechanism use? Is it communicating over HTTP? > If not, what port do

How to have a layered panel?

2008-12-06 Thread Suri
Hey all, In GWT how would we create a layered panel/widget that basically acts like a semi-opaque screen for the stuff below it. Sort of looking like the screen is in a disabled mode. Thanks for any ideas. Suri --~--~-~--~~~---~--~~ You received this message

Re: PagingScrollTable + how to sort locally

2008-12-05 Thread Suri
aight forward way of doing this? I was hoping to see if anyone was aware of that. This idea does sound like a likely alternative though. I'll wait a little longer before I finally make a decision. If i do come to know of anything I'll post it here as well to keep you and others informed. Thanks

PagingScrollTable + how to sort locally

2008-12-04 Thread Suri
Hi all, I'm trying to figure out how you can sort locally using the PagingScroll table. Not sure what the syntax is so any help is appreciated. Thanks Suri --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

A question on modularization of components

2008-12-03 Thread Suri
Hi, I wanted to get an idea of how components on a page can be modularized (structured) in the code. For instance, if I have a table doing some work. And then below that table, there is another table that is is dependent on some changes made to the first one. You'd like to have to have implemented

ListBox + FlexTable + How to maintain value in ListBox

2008-12-02 Thread Suri
ue is updated another ListBox in an adjacent cell is populated. The problem here is that after populating the first ListBox, when I select a value from it, the value immediately resets to the first value in the box. Any ideas what might be going on? Thanks

Re: Pagination Widget?

2008-11-25 Thread Suri
seems to display fine again. Thanks Suri On Nov 25, 12:18 pm, Suri <[EMAIL PROTECTED]> wrote: > Hey Isaac, > So far I've been using Mozilla to test my page. I had just tried in IE > 6 and I see that when I hover over a row, the columns to the right of > the first one end

Re: Pagination Widget?

2008-11-25 Thread Suri
table. When I drag to resize the column onto the left, the second column shows up. Has any such behaviour been encountered, any reason or solution for it? Just checking to see if this was a common thing. Thanks Suri On Nov 19, 10:07 am, Suri <[EMAIL PROTECTED]> wrote: > Hi Isaac, >

GWT Compilation and Custom Project Structure Question

2008-11-24 Thread Suri
x27;s used in the task is Is there something wrong in what I'm doing? If so any help is appreciated. 2) Ideally I'd like to have removed the common folder outside the PackageA. Are the instructions for that any different? Thanks Suri --~--~-~--~~

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-21 Thread Suri
Aha. You're right too Olivier. Thanks for the tip. Tottally missed that. Appreciate it. On Nov 21, 3:55 am, "olivier nouguier" <[EMAIL PROTECTED]> wrote: > Hi Suri, >  Thanks for this tip ! >  But IMHO in your case I think that the problem is in the hosted page: &

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-20 Thread Suri
--- ... String testValue = getString("testVar", "0"); // Although this executes correctly and works fine, it acts up later in the code unless the .toString() method is called in the javascript as shown before. ---- Thanks Suri On N

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-20 Thread Suri
Thanks Olivier. That makes sense. I'll have to use the String and validate it at the server side I guess. Suri On Nov 20, 10:08 am, "olivier nouguier" <[EMAIL PROTECTED]> wrote: > There is no long datatype in javascript ! > > http://www.google.com/search?q=GWT+lon

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-20 Thread Suri
better. Thanks Suri On Nov 20, 3:43 am, "olivier nouguier" <[EMAIL PROTECTED]> wrote: > public native String getSomeValue() /*- { >    return $wnd.someValue.}*-/; > > But be aware of "undef" !!! > should be: > public native String getSomeValue()

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-19 Thread Suri
Hi there, I'm not sure how you would do that. Please explain. Thanks Suri On Nov 19, 3:03 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Suri, > I'm pretty sure you can just create the input and "adopt" the element > in GWT. > > On Nov 19

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-19 Thread Suri
e String getSomeValue() /*- { return someValue; } -*/ } Thanks. On Nov 19, 11:40 am, Suri <[EMAIL PROTECTED]> wrote: > Hi, > This must've been asked a million times and I tri

Sharing data between pre-existing data in a JSP and the GWT module

2008-11-19 Thread Suri
te?) Thanks for any input Suri --~--~-~--~~~---~--~~ 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 g

Re: Pagination Widget?

2008-11-19 Thread Suri
service call and then using that to organize the correct set of records at the server side) 2) Be able to figure out how sort/paginate at the client-side only And then more to come. Phew. I'll ask more questions as I hit more walls. Thanks again. On Nov 18, 12:05 pm, Suri <[EMAIL PROTECTED

Re: Pagination Widget?

2008-11-18 Thread Suri
called, Eclipse tells me it's called > in 8 places in the Incubator code, including CachedTableModel:1068, > PagingScrollTable:1187, and TableBulkRenderer:1192. You can set a > breakpoint and trace through those if you're curious. > > On Tue, Nov 18, 2008 at 11:44 AM, Suri

Re: Pagination Widget?

2008-11-18 Thread Suri
on is I guess. So if I wanted to request data remotely, would I be making a call like tableModel.requestRows(..) in the PagingScrollTableDemo class? Is this something that basically was there but was not being used in the current demo? Thanks again. I've been feeling pretty dumb about this. Su

Re: Pagination Widget?

2008-11-18 Thread Suri
same successfully compiled using my own example, but now when trying to understand the PagingScrollTableDemo, I am getting lost as to what call is specifically to begin the data retrieval and loading into the table. Thanks for the patience. Suri On Nov 18, 10:40 am, "Isaac Truett" &l

Re: Pagination Widget?

2008-11-18 Thread Suri
Hey Isaac, Or could you explain a little more about how to use the TableModel? Thanks Suri On Nov 17, 1:25 pm, Suri <[EMAIL PROTECTED]> wrote: > Hey Isaac, > Thanks for that information. Based on that let me know what I have > below is correct > > public class TestTableMod

Re: Pagination Widget?

2008-11-17 Thread Suri
me, then how would I end up creating a table when my bean has other objects in it as opposed to only primitive data. Hope that gives you an idea of where my confusion is, since its at about 3 places i think :) Thanks again Suri On Nov 17, 10:09 am, "Isaac Truett" &l

Re: Pagination Widget?

2008-11-17 Thread Suri
he Data is retrieved remotely in the PagingScrollTable. I see a reference to a DataSourceModel but I'm not sure how/when it gets invoked and what exactly happens that causes the data to get loaded into the table? Thanks Suri On Nov 11, 9:29 am, Suri <[EMAIL PROTECTED]> wrote: > Aha. I

Re: Pagination Widget?

2008-11-11 Thread Suri
:). Thanks again for your patience Isaac. I'm sure I'll be more bothersome now that I can start playing with the PagingScrollTable a bit. Suri On Nov 10, 5:27 pm, "Isaac Truett" <[EMAIL PROTECTED]> wrote: > Okay, I see the references to "projects" in the in

Re: Pagination Widget?

2008-11-10 Thread Suri
Sorry not Ken, Issac :) I was reading some article about a guy called Ken. My bad !!! On Nov 10, 5:02 pm, Suri <[EMAIL PROTECTED]> wrote: > Hi Ken, > I was following that and then as shown in the link there for setting > up for eclipse: > "  1.Follow the instructions here

Re: Pagination Widget?

2008-11-10 Thread Suri
ant? Thanks for the patience. Suri On Nov 10, 4:48 pm, "Isaac Truett" <[EMAIL PROTECTED]> wrote: > > I hope I'm not wrong in my observations? > > No, you're absolutely right. The gen2 widgets are new and did not > exist in the last Incubator release. >

Re: Pagination Widget?

2008-11-10 Thread Suri
x27;m having to download to get the incubator compiled. For now, lets say I did actually continue with the september version of the jar, I was ideally hoping to use the gen2 code because I think that's where the improved PagingScrollTable lies correct? Suri On Nov 10, 3:37 pm, "Isaac Truett&q

Re: Pagination Widget?

2008-11-10 Thread Suri
ator source and building all together? Thanks for any input. Suri On Nov 5, 10:17 am, "Isaac Truett" <[EMAIL PROTECTED]> wrote: > Suri, > > There's a demo in the Incubator that you could look at. The code for > it can be viewed online or you can download and setup

Re: Pagination Widget?

2008-11-05 Thread Suri
Hi Issac, Since I'm still at a design level choosing my options, can I get a sample code for the PagingScrollTable to be able to evaluate its use for my purpose? I tried looking at the wiki for the incubator and all there was was a definition for some bean. Thanks Suri On Nov 5, 2:

Re: Pagination Widget?

2008-11-03 Thread Suri
to standard GWT code. So, that isn't really an attractive idea. Alex, What were the problems you found with PagingScrollTable? Just curious to know since I'm trying to get an idea of what I might need/ not need. Thanks Suri On Nov 3, 4:46 am, "alex.d" <[EMAIL PROTECTED]&g

Re: Pagination Widget?

2008-10-31 Thread Suri
Hi Issac, I had looked at that initially but got discouraged by the comments below on the page. Have you used it? Is it any good? Thanks Suri On Oct 31, 9:25 am, "Isaac Truett" <[EMAIL PROTECTED]> wrote: > The GWT Incubator has a PagingScrollTable. > > http://cod

Pagination Widget?

2008-10-31 Thread Suri
Is there a widget available for pagination/sorting? Other than the ext code. --~--~-~--~~~---~--~~ 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@googl

GWT-ext or ext-GWT?

2008-10-27 Thread Suri
eedback on the drawbacks and strengths of each and have something helpful for everyone like me trying to decide which is a good fit. Any ideas? Sorry if I seem abstract, I just thought the more general the better. Thanks Suri --~--~-~--~~~---~--~~ You received th

Re: RPC + Serializable objects

2008-10-26 Thread Suri
d at the struts-config so that the Action-Delegate-DAO structural integrity is maintained. i.e Browser <---> GWT (Client) <---> GWT (Server - RPC) <> SomeAction Thanks for any info. Suri On Oct 25, 12:05 pm, Ravi M <[EMAIL PROTECTED]> wrote: > Suri > > I strongl

Re: Retrieving session information set by the Struts servlet in my RemoteServlet

2008-10-23 Thread Suri
r future work. Again, sorry, if I came across as rude. Any ideas on the original question though? Suri On Oct 23, 8:15 am, walden <[EMAIL PROTECTED]> wrote: > Wow.  I'm reading through the messages and out of nowhere I suddenly > see "Walden hates". > > Allow me

Retrieving session information set by the Struts servlet in my RemoteServlet

2008-10-22 Thread Suri
Hey all, The Struts 1.1 app that I already have running currently validates a user's information from the session and based on that view/modify privileges are determined. Since now I'm trying to implement a GWT module within this application, I'd ideally like for the GWT code to be able to somehow

Re: RPC Collections Syntax

2008-10-22 Thread Suri
Hey Walden, Thanks a million for the info. The RPC call was successfully invoked and returned as desired. That I forgot to initialize my array list for B before adding items to it is a different story on my stupidity which took an 30 min to figure out. Thanks again. Suri On Oct 22, 1:44 pm

RPC Collections Syntax

2008-10-22 Thread Suri
Hi all, I was trying to search through the forums to find the correct syntax for having a collection of items sent over RPC. Could someone please enlighten me on this magic? I'm using GWT 1.5 and what I want to do is pass over a List where T is a bean containing properties as well as containing a

GWT - Secure / Unsecure pages

2008-10-20 Thread Suri
. Has anyone had any trouble/solutions to implementing a similar idea of secure <-> unsecure pages with the GWT javascript. I just want to make sure this wouldn't be a showstopper. Thanks Suri --~--~-~--~~~---~--~~ You received this message because yo

RPC + Serializable objects

2008-10-16 Thread Suri
Hi, I'm trying to write a service that will return objects to be used at the client side. I understand that I'll need to create transfer objects essentially implementing the isSerializable interface so that GWT can correctly compile and use them. Since, I'm aware that only primitive types or wrapp

Re: RPC + Serializable objects

2008-10-16 Thread Suri
es. Thanks Suri On Oct 16, 5:07 pm, "Ian Petersen" <[EMAIL PROTECTED]> wrote: > On Thu, Oct 16, 2008 at 3:00 PM, Suri <[EMAIL PROTECTED]> wrote: > > In my current application to which I'm trying to > > integrate GWT, we use XmlBeans for passing data along. I

Re: RPC + Serializable objects

2008-10-16 Thread Suri
would referencing the classpath to the src code for the beans be sufficient? Thanks again. On Oct 16, 2:47 pm, sim123 <[EMAIL PROTECTED]> wrote: > Yes. > > On Oct 16, 11:26 am, Suri <[EMAIL PROTECTED]> wrote: > > > Hi, > > I'm trying to write a service that will retur

GWT + JSON + Server-side code....... RPC ???

2008-10-14 Thread Suri
alizable types that it would pass across and so on. I use XmlBeans and figured I could just as well use the bean (or a collection of beans) and pass it to the client using RPC calls where it would be processed. Is that even possible? Thanks Suri --~--~-~--~~~---~--~~ You

Re: Struts 1.x + GWT

2008-10-10 Thread Suri
n Oct 10, 9:30 am, Suri <[EMAIL PROTECTED]> wrote: > Hey Walden, > All I have in the HTML right now is the reference to the entrypoint > which is meant to show a Label with a "hello world" like message. The > same page loads when its accessed directly but doesn'

Re: Struts 1.x + GWT

2008-10-10 Thread Suri
me know if that info suffices? Thanks Suri On Oct 10, 9:08 am, walden <[EMAIL PROTECTED]> wrote: > Suri, > > How do you know the GWT entry point is loading or not loading? > > Walden > > On Oct 9, 5:07 pm, Suri <[EMAIL PROTECTED]> wrote: > > > hi Walden, &

Re: Struts 1.x + GWT

2008-10-09 Thread Suri
iated. Thanks Suri On Oct 9, 2:45 pm, walden <[EMAIL PROTECTED]> wrote: > I don't use Struts, but GWT script in JSP files works fine.  Give some > more details... > > On Oct 9, 1:46 pm, Suri <[EMAIL PROTECTED]> wrote: > > > Hi, > > Has anyone been ab

Struts 1.x + GWT

2008-10-09 Thread Suri
Hi, Has anyone been able to successfully integrate GWT into an existing Struts 1.x application? I'm trying a real simple case of calling an Action which proceeds to forward me to the JSP using GWT and want to know if anyone has success being able to get the javascript to run once the controller fo

GWT + Struts 1 + ActionForward?

2008-10-08 Thread Suri
ss the page directly, http://localhost:8080/gwt/testpack.aaa.bbb.RandomTest/RandomTest.html The page gets generated correctly with the javascript being invoked as desired. Any ideas on what might wrong here? Thanks Suri --~--~-~--~~~---~--~~ You received this mes

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread Suri
ected exception while processing element 'inherits' com.google.gwt.core.ext.UnableToCompleteException: (see previous log entries) Is the classpath being set wrongly? On Oct 2, 9:21 am, Suri <[EMAIL PROTECTED]> wrote: > Ah, gotcha. Thanks Walden. I had the initial idea of having the '.' > But

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread Suri
a bit ahead except I'm not sure what the problem is now. On Oct 2, 9:21 am, Suri <[EMAIL PROTECTED]> wrote: > Ah, gotcha. Thanks Walden. I had the initial idea of having the '.' > But then refrained thinking I could point to the single class. I mis- > understood the

Re: Newbie question - adding GWT to my existing application

2008-10-02 Thread Suri
Ah, gotcha. Thanks Walden. I had the initial idea of having the '.' But then refrained thinking I could point to the single class. I mis- understood the first reply then. Thanks for the reply to the second question as well. I'll go ahead and see how this works out. Appreciate the p

Re: Newbie question - adding GWT to my existing application

2008-10-01 Thread Suri
use most of the time we'd be downloading and using binaries right. Thanks Suri - Hide quoted text - - Show quoted text - On Sep 29, 8:47 am, walden <[EMAIL PROTECTED]> wrote: > Suri, > > If the current Java code is in the same project where you are adding > GWT on the client

Newbie question - adding GWT to my existing application

2008-09-27 Thread Suri
me in a half baked situation which still doesn't help my GWT program compile. I'd really appreciate some help and maybe a few fundamentals on what needs to be happening. Thanks Suri --~--~-~--~~~---~--~~ You received this message because you are subscri