Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-10 Thread Adrian Smith
Thanks for all the work you put in to GWT! Much appreciated! Really looking forward to the improved Collections support myself. On Wednesday, January 10, 2024 at 12:30:29 PM UTC+1 Giuseppe La Scaleia wrote: > Great work guys. > > > Giuseppe La Scaleia > CNR - IMAA > geoSDI > Sviluppo Software >

Re: GWT 2.9.0 release

2020-05-14 Thread Adrian Smith
Thanks for the incredible amount of work you put into GWT, and for this release. Just tried it out, enjoyed replacing Lombok "var" with proper Java "var" :-) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop

Re: GWT 2.8.2 and IntelliJ IDEA

2020-03-16 Thread Adrian Smith
Hello, I use IntelliJ although I must admit I start the application on the command-line as opposed to using IntelliJ to do this. I have found the command mvn -Djetty.version=9.4.19.v20190610 war:exploded gwt:devmode work well for me. To debug server-side code, in the GWT Maven plugin in pom.

java.time

2019-07-24 Thread Adrian Smith
Please excuse me if this topic has been discussed before. I did look but I didn't find anything recent. I was looking to use java.time with GWT. I saw it was not supported "out of the box" in 2.8.2. I looked around for libraries and found https://github.com/m-m-m/gwt-time. It was not complete,

Re: super dev mode Jetty version?

2019-07-24 Thread Adrian Smith
> > >- Is it possible to configure my project to use Jetty 9.3.x in super >dev mode? > > In case you are still looking to an answer to this, I found out that you can use the following command-line options to Maven when running super dev mode to influence what version of Jetty is used:

Re: Using Java 11 on the server to implement GWT-RPC services

2019-07-17 Thread Adrian Smith
sion of jetty to classpath. > > Here's my blog post(in Japanese) about this. Maybe you can use some > translation site. > > https://www.gwtcenter.com/execute-gwt282-on-java9-or-later > > Hope this helps. > > On 2019/07/17 17:51, Adrian Smith wrote: > > I

Re: Using Java 11 on the server to implement GWT-RPC services

2019-07-17 Thread Adrian Smith
oad the compiled > classes, and can't because it doesn't understand Java 11 bytecode. > So you'll want to compile the shared and client code to Java 8 bytecode, > and the server-only code to Java 11 bytecode. > > On Wednesday, July 17, 2019 at 10:56:58 AM UTC+2, Adr

Using Java 11 on the server to implement GWT-RPC services

2019-07-17 Thread Adrian Smith
I understand that GWT 2.8.2 supports translation of Java 8 syntax, and not Java 11. But I thought there might be a good chance that could use Java 11 features on the server (e.g. Jetty) that responds to GWT-RPC requests. This works fine in deployment mode: Mark the project as Java 11 in Maven,

GWT2.8.1 errors "Exception: com.google.gwt.core.client.JavaScriptException: (TypeError) : object_0_g$.getXXX_30_g$ is not a function"

2017-05-17 Thread Darren Smith
Hi all since upgrading to GWT2.8.1 I am seeing an error message never before encountered (and I've been developing with GWT for numerous years). "Exception: com.google.gwt.core.client.JavaScriptException: (TypeError) : object_0_g$.getXXX_30_g$ is not a function" Reverting back to GWT2.8 cau

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-10-18 Thread Darren Smith
te: > > Hi Darren, > > We are seeing the same issue, did you find any resolution? > > Regards, > > Ian > > On Thursday, 6 October 2016 08:20:49 UTC+1, Darren Smith wrote: >> >> Hi, >> >> I am developing a that contains within it >

GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-10-06 Thread Darren Smith
. If I comment out in the web.xml file the GWT-RPC servlet defintion, then the vanilla HttpServlet will perform the XML document processing without an exception. Has anyone encountered similar problems? Darren Smith. -- You received this message because you are subscribed to the Google

Re: Java Deserialization Vulnerability

2015-11-23 Thread Gerry Smith
Yeah I'd agree with that! On Mon, Nov 23, 2015 at 8:29 PM, Lars wrote: > @Thomas: Thanks for this information, but I guess the correct property is > rpc.enhancedClasses :-) > @Jakob: Keep in mind, that commons-collections is not the only library > "under attack" ... groovy and spring shares a si

Re: Widget Updating Content Of Another Panel

2015-02-11 Thread Nicholas Smith
x27;appPanel' in different places? an element can have only one > parent, adding an element to a different parent automatically removes it > from its previous parent. > > On 10 February 2015 at 17:44, Nicholas Smith > wrote: > >> My bug was due to having introduced

Re: Widget Updating Content Of Another Panel

2015-02-10 Thread Nicholas Smith
My bug was due to having introduced a second instance of my template, so when calling to update content it as on the second instance, not the one actually being displayed. I tried switching from DockLayoutPanel to HeaderPanel as suggested by Vassilis, but I can't get the content area to be scro

Widget Updating Content Of Another Panel

2015-02-09 Thread Nicholas Smith
I have a page layout that contains a static header / footer, and 2 dynamic portions (an action bar, and a scrollable content area). I want my resulting page to resemble: ---HEADER--- (static) ---action-bar--- (dynamic, updated by whatever is in Content) ---content--- (dynamic, scrollable) ---F

Newbie Question

2013-11-19 Thread Andrew Smith
Hi I recently created a GWT starter application, which contains 3 modules, client, server and shared. It was a simple app with a greeting service, built using the gwt-maven-plugin. All went well, but then when I tried to incorporate mvp, using views and activities, it made me change the the sh

NPAPI

2013-11-10 Thread Millie Smith
When I try to install the Chrome plugin for GWT, I get the following text in a popup: "NPAPI plugin is required by this app". All of the NPAPI installs look complicated. Is there an easy way to get this installed? Also, when I installed the Firefox plugin, Firefox refused to start again without

Re: get IP address

2013-10-01 Thread Greg Smith
Hilco Wijbenga writes: > > On 6 February 2012 14:25, IHateSoda wrote: > > I'm trying to get my IP address (192.168..) but I always get the > > localhost IP (127.0.0.1). > > You are presumably running your appserver (Tomcat, Jetty, ...) as > localhost. If you want the servlet to return som

Re: Can't deploy my project anymore

2013-07-08 Thread Jeff Smith
enefit that if you only >> change server-side code, you can generate a new WAR very quickly since it >> doesn't compile the client side every time. >> >> Hope this helps! >> >> - Jack >> >> >> On Wednesday, June 26, 2013 11:47:01 AM UTC-

Re: Can't deploy my project anymore

2013-06-21 Thread Jeff Smith
I did not figure out a solution (I reverted back to an older version of my project with get 2.5). Perhaps you should create a brand new get 2.51 project and then just copy/paste your java source code files into this new project. Good luck. Jeff On Jun 21, 2013 4:40 AM, "Magallo" wrote: > Have y

Re: Can't deploy my project anymore

2013-05-22 Thread Jeff Smith
I ran into the same problem and could not figure out which configuration setting got hosed. Fortunately for me, I had a backup on another computer and just reverted back to that project and GWT 2.5. That is one of the drawbacks of GWT--there is too much magic going on behind the scenes spread out

WebAppCreator failed

2013-05-08 Thread Nigel Smith
Hi, I'm running Eclipse Juno / WIndows 7 / Java jdk1.7.0_21 / GWT - 2.5.1 / App Engine 1.7.7 and I'm getting the "Invocation of com.google.gwt.user.tools.WebAppCreator failed" error message. A quick browse offered up 3 solutions as below, each of which I have tried to no avail. 1. Remove cla

developers.google.com is down

2012-10-26 Thread Nicholas Smith
Haven't been able to connect for the last 30 minutes, is there an outage? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/IDegxUcVcCQJ. To pos

Re: does any Breedcrumb widget in gwt 2.4?

2012-03-27 Thread Nicholas Smith
As far as I know there's no official widget for breadcrumbs in gwt. On Friday, March 16, 2012 1:52:30 AM UTC-5, tong123123 wrote: > > Hi, > > is there Breedcrumb control provided in GWT 2.4? > I see a link in > > http://code.google.com/p/gwt-examples/source/browse/trunk/Core/src/org/gonevertical/c

Embedding an external site into my GWT app

2012-02-08 Thread Sander Smith
I'm building a GWT application that looks great. At the end of the page I'd like to include a WordPress blog that I'm developing. In order to do that I want to use a com.google.gwt.user.client.ui.Frame so that an IFrame gets created, and the blog just gets seamlessly embedded. I've built this

Re: Can't get correct DOMImpl when chromeframe installed but turned off

2011-09-09 Thread Paul Smith
After taking 2.4 I got caught by this issue also. If chrome frame is installed but not enabled for the page, then gwt uses deferred binding stuff meant for chrome and not the ones meant for ie. It breaks all over the place! Please fix this! You might say "just add the meta tag to make it use ch

Re: Seperating the hosting of the client and server

2011-09-02 Thread Sander Smith
issue. On Sep 1, 12:18 pm, Thomas Broyer wrote: > On Thursday, September 1, 2011 6:07:23 PM UTC+2, Sander Smith wrote: > > > I'm trying to seperate the client side of my GWT app (the JS files) > > from the server side by hosting them in different places. So the > > s

Seperating the hosting of the client and server

2011-09-01 Thread Sander Smith
I'm trying to seperate the client side of my GWT app (the JS files) from the server side by hosting them in different places. So the static JS is at www.host1.com and the Java web app stuff is at www.host2.com. To communicate, I simply pass the fully qualified URL (http:// www.host2.com/...) into s

Re: Using a CellTable with individual Cell selection

2011-08-18 Thread Sander Smith
Is this the only way to do this, cover it up in the CSS file? I can't suppress this behavior somehow? I'm also not sure what you're suggesting, it looks like something got cut off. Which CSS file needs updating, I'm simply using the stock CSS file which has no reference to dataGridSelectedRowCell

Using a CellTable with individual Cell selection

2011-08-17 Thread Sander Smith
I need to create a table of records where each row in the table is selectable. I'm using a CellTable which works very nice, and allows me to select and act on rows. However, there's a cosmetic side-effect that I don't like. When anything in the table is clicked on, it seems like the cell that was

Moving a JavaScript-created object using the DOM

2011-08-17 Thread Sander Smith
I'm trying to embed a Twitter widget into my application using the JavaScript code that Twitter defines for this situation, and am not having much success. The only way I can get things to work is to put this JavaScript code outside of the application in the HTML file. There, it works great but is

swfupload-gwt not visible

2011-07-24 Thread Ann Smith
Hi Has anybody succeeded in using this in a DialogBox? I've been trying to get it work for couple of days and I'm about to give up. I copied code from the project's getting started page, I build my swfupload object in onLoad/show and I can see it attached to the page but for some reason the upload

ArrayOutOfBoundsException in editor 2.3

2011-06-14 Thread Ann Smith
hi before I spend all night debugging maybe someone can share his experience with me. Problem: gwt 2.2 code works fine -> 2.3 in a single method use of editor.edit(proxy,context) throws me ArrayOutOfBoundsException Anyone has had it too? regards -- You received this message because you ar

Immediate Need of SAP MM Need Consultant

2011-06-10 Thread ben smith
/TDD (Master & Transactional data movements) Material Master They want heavy reporting and inventory mgmt ECC 6.0* ____ *Thanks Ben Smith | Technical Recruiter Panzer Solutions LLC 45 Stuart Ave, K Norwalk CT 06850 USA b...@panzersolutions.co*m

Re: Hibernate session in RequestFactory

2011-03-27 Thread Ann Smith
I think filters were designed for this kind of job Have you seen this? http://stackoverflow.com/questions/4988397/gwt-requestfactory-how-to-use-single-entitymanager-per-request On Sun, Mar

Putting bootstrap js in host page

2011-02-10 Thread Paul Smith
I was just wondering if anyone has tried to put the bootstrap js straight into the host page. It seems like it would reduce the number of http requests in a typical GWT app. Typical GWT apps have a host page (probably not set to cache forever), which includes the boostrap js (which typically is

Facing issue in IE while using DecoratorPanel with DockLayout

2010-10-26 Thread jack smith
I want to show round corners in my application using DecoratorPanel. But DecoratorPanel doesn't work well with DockLayoutPanel. I made some changes in CSS to use DecoratorPanel with DockLayoutPanel. It works fine in firefox and chrome but have problem in IE8. It cuts the bottom border in IE8. I thi

Re: IE 7 bug? LayoutPanels cease resizing after first time displayed

2010-09-09 Thread Paul Smith
When you navigate between the screens are you removing the prior panel? If so then you're probably encountering a bug that I found: http://code.google.com/p/google-web-toolkit/issues/detail?id=5245 You could workaround it by hiding the previous panel instead of removing it. Or you can call forcela

Re: how to call forcelayout() in a tablayout panel

2010-08-31 Thread Paul Smith
I had a need for this recently - this is what I used: private native void forceTabLayoutPanelToLayout(TabLayoutPanel tabLayoutPanel) /*-{ var layoutPanel = tablayoutpan...@com.google.gwt.user.client.ui.composite::getWidget() (); layoutpan...@com.google.gwt.user.client.ui.layoutpanel::force

when will 2.1 be released?

2010-06-14 Thread Tony Smith
hi, any idea when 2.1 is expected to be released for production? thx, tony -- 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-tool...@googlegroups.com. To unsubscribe from this group, send ema

Re: Changing CSS on the fly

2010-06-02 Thread Paul Smith
It is possible in straight javascript, but I don't think there's anything in GWT to help out. See http://developer.apple.com/internet/webcontent/styles.html for an example. I used it a few years back for something really similar - changing the style of a bunch of elements by modifying a css rule.

Re: Mixing Projects

2010-04-16 Thread Brian Smith
> > Did I miss a step? More likely my suggestion was incomplete... Can you correct this using the element in the module xml file? I haven't been able to test I'm afraid. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: Mixing Projects

2010-04-16 Thread Brian Smith
Hi John Is there a reason you're using link source over putting projects onto build paths? Here's what I would do: Create three projects. Put the widget you want to use in project A and project B into project C. Set the build path of both project A & B to include project C (properties->java buil

Re: Smart GWT 2.1 Released

2010-03-03 Thread Rob Smith
Which sample doesn't work. I am using Chrome and all the samples are working for me. BTW - Love the new skin and the ability to add widgets to grid cells. On Mar 3, 8:55 am, Roger Studner wrote: > it pains me to say that the samples doesn't work in GOOGLE chrome heh > > Roger > > On Mar 3, 2010,

GWT 1.7.x "missing plugin" issue

2010-02-24 Thread eric smith
Hi, I don't know if it can help, but I had this issue trying to run Hosted Mode from command line with GWT 1.7.0. Then I get this weird message "missing plugin". After some effort I found out that for some reason I had to set the port selection automatic by adding this parameters to the JVM: -port

Re: GWT Chat

2009-11-15 Thread Roy Smith
There's a video on Google IO where the Wave team discuss how they achieved this with long running http. Sorry I can't remember the URL or details. 2009/11/15 Jim > hi, > > I'd like make a chat using GWT 1.7 but gwt doesn't allow the use of > socket ? Have you got any idea for the communicatio

Re: two browser windows

2009-11-13 Thread Roy Smith
GWT *is* Javascript, so if you can do it in JS, just write a GWT native method. Try Googling JSNI 2009/11/13 Angel Marquez > Would you refer a site that does this with js. > > From what I understand you want to drag out a widget, say a text input > field, and have a new window appear, similar t

Re: Conflicts on Install GWT on Ganymede (3.5.1)

2009-11-13 Thread Roy Smith
There was particular release of Eclipse 3.4 (Gannmede) which was so badly busted that nothing would upgrade. The only solution was to downgrade and then upgrade, or reinstall. Obviously if the OP is running Ganymede, then installing 3.5 (Galileo) is the best option. iirc, workspaces are not compati

Re: Using JavaMail in a GWT application

2009-10-01 Thread Jared Smith
a product like Wireshark to look at the traffic on >> the network. To do that, you'll need console access to your GWT >> server...but sniffing the wire is pretty much the only way to see >> what's going on in javax. >> >> Good luck. >> >> On Sep

Using JavaMail in a GWT application

2009-09-29 Thread Jared Smith
I am having a bit of an issue testing my web application. I have written a customized Emailer class that is used to send an email to the specified email address. I am able to get the class to successfully send an email while using a driver class, however, when I attempt to use the Emailer class o

Re: Help with web application if possible.

2009-09-29 Thread Jared Smith
Thanks a bunch that did the trick! The problem now is a bit different. I have written a special java class called Emailer to use the java mail functionality of sending an email. When I just use the class in a driver class I am able to send an email successfully. However, when I reference the cl

gwt compiler... parameterized types with enums causing problems?

2009-06-11 Thread Ian Smith
ELD; }; and then this declaration: public class MyFormErrorSet extends ErrorSet { }; the compiler blows up with an internal error Thoughts? thanks ian smith package whatever.whatever; import java.util.ArrayList; import java.util.Iterator; import java.util.List; public abstract cl

Re: How much slower is PRETTY mode?

2009-04-20 Thread Rob Smith
Why is it that most of Arthurs posts either have incorrect information or one of : "I haven't tried it but I think.." "I don't know the exact numbers but.." "I heard that xxx is good / bad but I haven't tried it.." "I think.." Just search the forums. Half-knowledge more dangerous than ignorance.

Re: Integrating GWT and Hibernate without Gilead?

2009-02-27 Thread Rob Smith
Bruno, Arthur likes to send his whole object model from the server to the client ;) Users should be careful taking advise from Arthur. He *loves* giving advise. The only problem is that they are terrible and on subjects that he has little or no knowledge. Make sure you take a second opinion befor

Re: Java2Script for conversion of Java to javaScript?

2009-02-22 Thread Josson Smith
Hi Bob, I advice you to take a visit on http://webuzz.im/ , a converted JavaScript version of web Gtalk/MSN/Y!Messsenger/AIM from SWT client using Java2Script ( http://j2s.sourceforge.net/ ), to get a first hand user experience about Java2Script applications. And http://www.google.com/search?q=ja

Re: 3rd party widget libraries

2009-01-29 Thread Rob Smith
The GWT 1.6 event API is not an API breaking change, and besides the gwt-ext event mechanism is separate and unaffected by changes in the GWT 1.6 event mechanism. At one point I tried the 1.6 branch with GWT- Ext and things ran fine. On Jan 29, 2:37 pm, Flemming Boller wrote: > Hi > > Do any of

Re: GWTx - anyone with experience?

2009-01-19 Thread Rob Smith
ot; wrote: > Ooops, my mistake. GXT also offers a binding mechanism, I thought he > was talking about that. > > -- > Arthur Kalmenson > > On Fri, Jan 16, 2009 at 9:20 AM, Rob Smith wrote: > > > You're such a broken record :) > > > You see GWT a

Re: GWTx - anyone with experience?

2009-01-16 Thread Rob Smith
You're such a broken record :) You see GWT and 'x' and copy paste your complaint post. The user is referring to GWTx. Please read his original post carefully. http://code.google.com/p/gwtx/ On Jan 16, 8:29 am, "Arthur Kalmenson" wrote: > That's one of the caveat of using GXT, it's rather slow

how to deselect first item in a listbox

2009-01-11 Thread Smith
The first item in a multiple selection list box is selected by default in IE. This does not happen in Mozilla. Is there a workaround for this? thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolk

multiple selection list box setselectedIndex does not work

2009-01-09 Thread Smith
I have a multiple selection list box and when the page loads, I don't want any item to be selected. I gave setselectedIndex(-1) and that didn't work on IE. Is there any other way to do this? Thanks --~--~-~--~~~---~--~~ You received this message because you are sub

How to enable enter key for a button

2009-01-08 Thread Smith
I have a login page and I need to enable the user to hit the enter key after giving the user name and password. It's not in a FormPanel. The login button has a click listener. Also, if the login fails, how do I bring the cursor back to either the user name or password text boxes. --~--~-~-

Re: can we have multiple directories in source path for module inheritance?

2009-01-05 Thread Smith
My specific question was if I can give "." to the current directory or do they all have to be under subdirectories to be specified in ? Can I give On Jan 5, 4:46 pm, Smith wrote: > I have a module that inherits another module. The inherited module > has > >    

can we have multiple directories in source path for module inheritance?

2009-01-05 Thread Smith
I have a module that inherits another module. The inherited module has placed in a directory called sample. It works for all sources inside mydir . Can I specify multiple source paths? I need source from mydir as well as current directory (sample) which contains the module.gwt file. Is

Re: Entrypoint can't access classes in an external jar file

2008-12-19 Thread Smith
your > external classes. And any classes they depend on also have to be part > of a module (repeat as necessary). And all of the aforementioned > classes have to have source code available on the classpath in order > to compile as part of a GWT client. > > > > On Fri, Dec 19,

Re: how can i use external jar in gwt?

2008-12-19 Thread Smith
Hi JR Does that mean we just add a .gwt.xml file to the jar file? In my case, the jar file contains JPA persistent entities. So to me it doesn't make a lot of sense to ad a .gwt.xml file to it. Is that the only option we have? Also, where in the package do I add the .gwt.xml file? It doesn't ha

Entrypoint can't access classes in an external jar file

2008-12-19 Thread Smith
All, I have some JPA entity classes in a JAR file and I need both the GWT RPC implemenation servlet and my entrypoint to have access to these classes. However, my service which is placed in the package/server directory can access these classes but the entrypoint class which is placed in packag

Re: GWT RIA s ?

2008-12-19 Thread Rob Smith
Pointing users to the appropriate mailing list is absolutely the right thing to do. Sumit already does a good job with this. It's when you add your own unsolicited and biased spin when pointing to the forum that I take issue with. Like library X has nothing to do with GWT and I think they are real

Re: GWT RIA s ?

2008-12-19 Thread Rob Smith
to use these libraries, they'll > understand that they're using that toolkit, and not GWT. > > If I see questions about other third party libraries that go > unanswered, I'll point them to the appropriate mailing list (if one > exists). I can't catch and respo

Re: GWT RIA s ?

2008-12-18 Thread Rob Smith
e of the > numerous problems. Anyway, I'm not here to start a flame war, I'm just > trying to warn people before they commit all their resources to these > libraries. > > -- > Arthur Kalmenson > > On Wed, Dec 17, 2008 at 4:36 PM, Rob Smith wrote: > > > D

Re: GWTExt chart on GWT widgets

2008-12-17 Thread Rob Smith
Arthur might be able to help you. On Dec 18, 12:08 am, Sanj wrote: > Hi All, > > I am facing a problem in rendering of GWT-EXT charts on GWT widgets in > IE. When i am trying to render Chart panel on RootPanel then charts do > not render properly in Hosted mode. But if i am adding same panel on

Sending Hibernate JPA persistent entities to the client

2008-12-17 Thread Smith
All, With GWT 1.5, is it possible to send the persistent hibernate entities directly to the client, without creating separate client side objects? I know it's not a good pattern, but just curious if that would work. I have read this didn't work with GWT 1.4 since annotations were not supported,

Re: GWT RIA s ?

2008-12-17 Thread Rob Smith
Did anyone ask you opinion on use of third part libs in this thread. We know what your position is on using 3rd party libs and you have made it clear "numerous" times. Repeating the same thing again and again is just adding noise to this group. Gmail has a wonderful filter option and you can set y

Re: Clickable text

2008-12-15 Thread Smith
NCLICK); > > } > > void onBrowserEvent(Event event) { >     super.onBrowserEvent(event); >     if (event.getTypeInt() == Event.ONCLICK) { >          // do something >     } > > } > > Best > Kevin > > On Mon, Dec 15, 2008 at 11:07 PM, Smith wrote: >

Problem with External tomcat

2008-12-15 Thread Smith
All, My GWT application built using gwt-maven works fine in hosted mode. However, if I run maven install and deploy the war file to external tomcat, it doesn't work. My client calls a GWT RPC service that in turn calls some APIs inside a library. These APIs need a config file. When I look at the

Clickable text

2008-12-15 Thread Smith
All, Is there a way to add some clickable text into a panel? I am aware of Hyperlink, but I don't need history support. All I need is to show another panel when a text is clicked on. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

BeanMapping class

2008-12-04 Thread Smith
All, I wanted to use BeanMapping class to do my conversion between the local model and the remote DTO model and I have three questions: 1) Is that open source? 2)Where can I download it? 3) What other option do we have other than using this class? I don't want to write code for creating all