Enterprise Application Development (Wizard) using GWT

2012-12-07 Thread Lalit Kumar
As part of one of my projects (mutual fund industry) I need to develop a 
5-7 step wizard to purchase a mutual fund. In order to carry out the 
journey I need to interact with web services (JAX-WS) and databases. The 
traditional thinking is use Struts 2 MVC with Spring framework. Following 
are the requirements of the project

1. Select Investment Options (basically product)
2. On 2nd step choose funds, get relevant charges, ask the user to input 
amount to be invested
3. Payment details
4. Playback the details
5. Placed Order details (order reference numbers etc)

*Non Functional Requirements*
1. Rich UI
2. Response time for each page must be less than 3 sec
3. Need to support more than 500 users at the same time.

*Queries*
1. How GWT can help me in this?
2. Can GWT itself provide me rich UI or I need to go to Smart GWT?
3. Like any struts applications do we have any standard way. Obviously I 
would not like to write a restful invocation for each step.

Any kind of help will be usefull

Regards,
Lalit Kumar

-- 
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/-/vWNeXSmphtkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Overriding a css style loclly

2011-05-30 Thread lalit
That's what I am thinking of now. However I think it would be great,
if we can have a feature in GWT where we can override the style which
are applicable in a certain context only let's say in the context of a
ui.xml file. That way the styling would become a lot flexible. I think
it should be possible also as it can be handled by the gwt compiler
while generating the js/html.

On May 31, 12:35 am, Qiang Ma mumay...@gmail.com wrote:
 Why don't you create a different style and do a setStyle on this label?
 .xxxLabel{
    blah.

 }

 uniqueLabel.setStyleName(xxxLabel);

 This seems to fit your needs.

 On Sun, May 29, 2011 at 9:11 PM, lalit lalit.bh...@gmail.com wrote:
  I have a lot of labels in my application.I have overriding the style
  as most of the place, I need the new style and it works fines. the
  overridden style is

  .gwt-Label {
     font-size: 15px;
     font-weight: bold;
     color: #fff;
     float: inherit;
  }

  However at one particular place I need the color of label to be black,
  so I was trying to override the style in that ui.xml locally like

          ui:style field='reportStyle'
           @external gwt-Label;
     .gwt-Label{ color: #000; }
   /ui:style

  However this impacts the style of label at other places also. Is there
  a way to override the standard style in a ui.xm so that it impacts the
  widgets of only in that ui binder.

  thanks in advance,

  --
  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, send email to
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Overriding a css style loclly

2011-05-29 Thread lalit
I have a lot of labels in my application.I have overriding the style
as most of the place, I need the new style and it works fines. the
overridden style is

.gwt-Label {
font-size: 15px;
font-weight: bold;
color: #fff;
float: inherit;
}

However at one particular place I need the color of label to be black,
so I was trying to override the style in that ui.xml locally like

 ui:style field='reportStyle'
  @external gwt-Label;
.gwt-Label{ color: #000; }
  /ui:style

However this impacts the style of label at other places also. Is there
a way to override the standard style in a ui.xm so that it impacts the
widgets of only in that ui binder.

thanks in advance,

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



autoopen does not behaves as intended

2011-04-28 Thread lalit
Hi ,

I have made autoopen as false. My menu bar has a top menu bar and
child menu bar in it. When I enable autoopen, it works fine and opens
on hover. However when I make the autoopen as false, it does not opens
the menu on browser which is fine. However it does not opens even if I
click on the menu item.

Any insight would be helpful. I have made autopen as false in all the
menu bars.

thanks in advance,

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Adapting GWT to Adobe air

2011-03-25 Thread lalit
We are looking to package our application so that it can be run
locally using Adobe air. At the moment if we try to run with the adt
tool of adobe air, it throws security restriction. There are post
around how to circumvent it but none of them is successful(May be I am
still missing some things.) some questions I have got:
- Is anyone able to successfully do that and if there is a tutorial to
follow.
- If we digitally sign the application, will the security restrictions
go away.

thanks,

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Can I set some piece of code to be ignored by GWT compiler

2011-02-25 Thread lalit
I know that certain methods in my class are never going to be used in
client side. They are specific to server. Can I somehow notify the GWT
compiler to ignore these code fragments either at class level or
method level.

thanks in advance

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Logging in shared code

2011-01-04 Thread lalit
Hi,

How can we do logging in the shared code? Some logging need to happen
on server side and some logging will be happening on client side and
there might be a possibility of same log active in both client and
server side.

thanks in advance,

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Integrating Pentaho with GWT

2010-12-29 Thread lalit
Hi,

How can we integrate Pentaho reporting and charting in a GWT based
application.

thanks,

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Native event not getting fires

2010-10-25 Thread lalit
I have a text widget where I want to make enter event to behave like a
tab event. so I capture the Key press event and raise a tab native
event.

However the tab behavior is not reflected in the application. Thee
code for event handler is

public void onKeyPress(KeyPressEvent event) {
int keyCode = event.getNativeEvent().getKeyCode();

if (keyCode == KeyCodes.KEY_ENTER) {

   NativeEvent nativeEvent =
 
Document.get().createKeyPressEvent(false,false,false,false,KeyCodes.KEY_TAB);
   DomEvent.fireNativeEvent(nativeEvent, this, 
this.getElement());
}

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Native event not getting fires

2010-10-25 Thread lalit
When I use the deprecated createKeyPressEvent with more argument, it
fires the tab event but the behavior is not as per the tab key press

The new code changes from the above code in createKeyPress event line
as follows

NativeEvent nativeEvent =
Document.get().createKeyPressEvent(false,false,false,false,KeyCodes.KEY_TAB,KeyCodes.KEY_TAB);

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Firing a tab event

2010-10-19 Thread lalit
Hi,

I am trying to mock a tab event. The requirement is  that whenever an
enter is pressed, the focus should move to next input box, similar to
tab. For that I have written a widget which handles key press handler
and on key press method i catch the enter event and raise a tab event.
However the raised tab event has no effect.

The handler looks like

public void onKeyPress(KeyPressEvent event) {
int keyCode = event.getNativeEvent().getKeyCode();

if (keyCode == KeyCodes.KEY_ENTER) {
event.stopPropagation();
NativeEvent nativeEvent =
Document.get().createKeyPressEvent(false,false,false,false,KeyCodes.KEY_TAB);
DomEvent.fireNativeEvent(nativeEvent, this, 
this.getElement());

}

}

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



UiBinder in a template format like facelet/Tiles

2010-10-13 Thread lalit
Hi,

Is there some way to use UiBinder XML in a template format. A have
pages which are common in header and footer with some action elements.
The center area changes with different type of pages needed at
different places.

I am trying to use a hierarchy where the base panel has the common
actions in place and the extended panel class having the uncommong
details. Something very similar to tiles or facelets.

Is that possible?

thanks in advance,

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Good GWT development tools

2010-10-11 Thread lalit
Our project with time has become bigger. We are finding that the
change-compile-run cycle is becoming bigger and bigger, especially
if we change the server side code.

We are using Spring, Hibernate and Gilead (for taking Entities to the
front layer).

Do any one knows about better tools or processes where we can reduce
the change-compile-run cycle.

thanks in advance,

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Spring 3.0 + GWT 2.0 integration

2010-10-06 Thread lalit
Check this 
http://www.lalitbhatt.com/tiki-index.php?page=Integration+GWT+with+Spring

Also there was a recent thread going on for the same. you might want
to look into that also.

http://groups.google.com/group/google-web-toolkit/browse_thread/thread/fd7257f7cf90338f/8fd2365446b86be7?lnk=gstq=gwt+spring#8fd2365446b86be7

On Oct 6, 2:13 pm, Paul Grenyer paul.gren...@gmail.com wrote:
 Hi

 On Wed, Oct 6, 2010 at 9:36 AM, aces2805 ace...@gmail.com wrote:
  Hi, is there any other way of integrating Spring 3.0 and GWT 2.0 using
  the spring dispatcher, I'm using the MVP pattern by the way. Really
  appreciate any help thanks. Hope I can get some samples and references
  guys ^^

 Yes, see attached.

 --
 Thanks
 Paul

 Paul Grenyer
 e: paul.gren...@gmail.com
 b: paulgrenyer.blogspot.com
 t: pjgrenyer

  Integrating Spring with the Google Web Toolkit - Part I.pdf
 337KViewDownload

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: New GWT 2.0 Book

2010-10-05 Thread lalit
I think it's fair enough for a developer of the framework to write a
book. This gives a more comprehensive insight in the framework. Buying
a book is a choice to be exercised by us . No one forces us.

If it is well written and worth it why not buy it.

As far as documentation goes, I do agree that with GWT that's a
problem. Actually at time I think it's not the lack of documentation
but the comprehensive coverage at some common location. Another
problem with jet speed the framework is evolving. It's difficult to
keep pace for the documentation (I am a developer and I know how hard
it is)

All said and done, I do not see a reason for why to get pissed off for
a developer writing a book.

And whenever we have some tutorial/example to share let's do it.



On Oct 4, 10:06 pm, Paul Stockley pstockl...@gmail.com wrote:
 2.1 Isn't even released yet so why are you pissed off about there
 being no documentation!

 On Oct 4, 11:36 am, Ashton Thomas ash...@acrinta.com wrote:







  At the end of the day, the GWT community will benefit from the book.
  For whatever reasons Chris is writing the book I am certain they are
  justified and reasonable and I am sure he will be able to provide the
  GWT community some valuable insight outside of buying the book.

  yes, books may be a little behind development especially at the rate
  GWT is coming along. So it is understandable that you would prefer to
  have some more agile and publicly available documentation going on.

  So your argument is understandable but this is probably not the worst
  thing ever. A more appropriate response may be to continue to
  highlight the contributions of people and make specific requests to be
  addressed.

  On Oct 4, 11:24 am, Isaac Truett itru...@gmail.com wrote:

   I think if this makes your list of things to get really pissed off about,
   then life must be pretty good.

   Someone who works on GWT gets a writing credit on a book about GWT; that's
   not something to get upset over.

   On Fri, Oct 1, 2010 at 1:38 PM, Tommy Lui tlui1...@gmail.com wrote:
Hi,

Please help me understand why Chris Ramsdale (Google's Developer
Relations team to develop and advocate GWT best practices.) is
writting a book about GWT 2.1 when he works at Google on the GWT team
and there's no official documentation, except for a few waves
available to the developer community.

Is this some way for him to force developers to buy his book?

   http://www.manning.com/bambury/

The book is due to be release in 2011, so I'm sure it's GWT 2.1 not
GWT 2.0 content.

I'm hoping that I'm not the only person really pissed off about this.

I'd really like other peoples opinions on this topic

--
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 email to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs
 cr...@googlegroups.com
.
For more options, visit this group at
   http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Help: Development of large App with GWT

2010-10-05 Thread lalit
With ability to bid on multiple bidding at the same time I think what
you are leveraging is the ability to do multiple AJAX calls to server
simultaneously which is GWT strength but is not unique to GWT. There
are many AJAX engines out there.

I feel where GWT stands out is to able to push a lot of logic
processing code on client side which would be hard to write in plain
Java script.

I would suggest to think of something where you are doing a lot of
processing on client side and providing a fast response to the end
user.

On Oct 4, 10:38 pm, Noor baken...@gmail.com wrote:
 Thanks Mig,

 As I stated above, I am trying to implement a bidding system and above
 I described some its potential features such simultaneously bidding on
 the several items

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Help: Development of large App with GWT

2010-10-04 Thread lalit
GWT strength is the ability to build rich client side code. If you can
show some data analytics/crunching kind of application and show that
how it can be supported in web application also.

For example showing stock market charts with feedback and may be
calculate technical indicators.

Just an idea.

On Oct 4, 3:45 pm, abhiram wuntakal abhir...@gmail.com wrote:
 Hey create a project which by itself acts as a GWT designer (Someone has
 already done a similar thing actually!!, with the DND options and all), Then
 u can have modules for server interaction which by itself can be automated
 so that all u need to do is indicate the table name and u get the data
 automatically!! This will be like a complete package for developing web
 application and u can claim that people who use this project just need to do
 some customizations rather than coding!! This will definitely turn out to be
 a really interesting project!!

   (P.S. : Later u can share the code with the GWT community even so that it
 can make the work of developers really really easy!! :-) )

 Regards,
 Abhiram







 On Mon, Oct 4, 2010 at 2:09 PM, Noor baken...@gmail.com wrote:
  This is persuading but examiners can tell if even i didn't write ant
  javascript, i did write it in java

  --
  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 email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs 
  cr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Behavior difference in debug and normal mode

2010-09-28 Thread lalit
I am getting a large chunk of data in one call.

However I see that the GWT  normal mode in jetty though takes some
time does returns the data to browser, however the debug mode never
returns the data at all.

Any clue or pointer would be helpful.

thanks

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Behavior difference in debug and normal mode

2010-09-28 Thread lalit
Just realised that this behavior is in Chrome. Fire fox returns the
data.

However the time it takes for normal mode to return the data is 4s and
in debug mode it;'s 40 s.

On Sep 28, 5:12 pm, lalit lalit.bh...@gmail.com wrote:
 I am getting a large chunk of data in one call.

 However I see that the GWT  normal mode in jetty though takes some
 time does returns the data to browser, however the debug mode never
 returns the data at all.

 Any clue or pointer would be helpful.

 thanks

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: serialization in GWT

2010-09-28 Thread lalit
Are there some metrics regarding the performance of serialization?

How does GWT performs serializing and deserializing nested object
structures of huge size?

Also what are the common bottlenecks in that?

On Sep 28, 2:13 pm, vibrant muni...@gmail.com wrote:
 Serialization:
 Serialization is the process of transmitting object across the
 network  (client and server) connection in binary form.

 GWT supports object serialization as part of its RPC (Remote
 Procedures Calls) mechanism.

 Serialize Types:

 A type is serialization and can be used in service interface if the
 type:
 1. is primitive i.e char, byte, short, int ,long,boolean, float,
 double.
 2. is String Date, or primitive wrapper such as Char, Byte, Short,
 Int, Long, Boolean, Float, Double.
 3. is an array of serializable types (including other serializable
 arrays)
 4. is serialization user-defined class or
 5. has at least one serializable  subclass.

 GWT RPC mechanism makes it simple to get data between client and
 server over the network.

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT panel for HTML UL/LI lists

2010-09-26 Thread lalit
Cannot this be done with UIBinder in an easy way? Just write the
layout in ui.xml and insert  the widget in the li tags.

On Sep 25, 2:51 am, Markus Kramer tomaton...@googlemail.com wrote:
 Hi, for my current GWT project I wanted to make more use of HTML UL/LI
 elements than the table based layouts that you normally use in GWT
 applications.
 Biggest advantages for me is that other people can make changes to the
 layout/design of the page without having to touch the code itself.

 I couldn't find a class in GWT or anywhere else that helps with that,
 so I wrote my own. I can now create HTML like this:

 ul class=sampleList
   liWidget A/li
   liWidget B/li
 /ul

 with this code:

 UlListPanel ulList = new UlListPanel();
 ulList.addStyleName(sampleList);
 ulList.add(widgetA);
 ulList.add(widgetB);

 For the code go 
 here:http://markusbraindump.blogspot.com/2010/09/gwt-panel-for-html-ulli-l...

 Or did I reinvent the wheel?

 Markus

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to slow down JavaScript execution (in Firefox)?

2010-09-26 Thread lalit
Not sure if this helps but you can ask selenium to wait at the
required places.

this would work only if there are external interactions available at
that point.

On Sep 26, 6:32 am, Hilco Wijbenga hilco.wijbe...@gmail.com wrote:
 Hi all,

 I'm trying to run integration tests and one of the things I'm trying
 to test is that various status messages are displayed in the right
 order. The problem is that everything runs so fast that certain
 messages are not displayed long enough for Selenium to pick up. :-)
 That makes the test fail because it thinks steps were skipped. Another
 example is disabling a button after clicking on it and enabling it
 after some action has been executed. Again, JavaScript runs so fast
 that the disabling of the button is never noticed by Selenium.

 Does anyone know of a way to slow down JavaScript execution? I'm using
 Firefox for the integration tests so feel free to list Firefox
 specific solutions.

 Cheers,
 Hilco

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Spring Roo 2.1 M3, not recommended if you haven't tried.

2010-09-25 Thread lalit
I just finished a project on Roo but we were using Spring also for
front end. What we figured out is that Roo is very good to generate
that initial structure and than better be on your own. We still used
roo to manage the domain entities (generating getters and setters) but
not more than that.

Now I am in a project with GWT and Spring. From my earlier experience
we generated the initial code structure using roo and than we are on
our own.

Also I would second Daniel about UIBinder. It's an easier way of doing
things. and the same goes for annotations also.

On Sep 25, 6:48 pm, Supercobra Thatbytes superco...@gmail.com wrote:
 Kevin,

 My experience with Roo is not much better than yours. I was able to
 get it running after an hour or so. It is an early stage product that
 shows potential. Not ready for prime time yet.

 Regarding UiBinder: If it turned you off 'immediately' as you said,
 you have not created enough widgets in GWT yet, because once you'll
 have done that, you'll see that creating widget UI in XML with
 UiBinder is the simpler and more efficient way.

 Daniel

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Column chart having bars with line

2010-09-23 Thread lalit
I am am able to successfully draw a column chart using visualization.
However I want to draw a line on the same chart. To put a an  example,
the line would show the total projected cost and the bars would show
the actual cost incurred. So the line may not go from the top of bar
and will have its own data point.

Any pointers would be helpful. I am even open for writing a customized
component.

thanks in advance

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Rich Internet Application with GWT

2010-09-22 Thread lalit
I would suggest rather than focussing on complexity of technology,
focus on building a functional and usable system and let the
technology get driven by it. First outline in terms of use cases/
stories what you want to achieve and how to achieve can follow it.

When you say complex bidding system be more specific. Rather focus on
making usable bidding system

On Sep 22, 7:55 pm, Noor baken...@gmail.com wrote:
 Hi to all of you,
 I am a university student. For my dissertation I need to create an
 application using GWT. I want to create a very complex internet
 application. Can u give some suggestions? My idea is a complex bidding
 system. Can u share some ideas with me on this topic??

 Thanks

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Tablayout panel does not renders the content

2010-09-22 Thread lalit
I have a structure similar to following
g:TabLayoutPanel ui:field=rightTabPanel width=100% height=100%
barUnit=EM barHeight=3
 g:tab
   g:headerGraph/g:header
g:FlowPanel ui:field=graphContent/
  /g:tab
  g:tab
   g:headerData/g:header
g:FlowPanel ui:field=dataContent/
  /g:tab
/g:TabLayoutPanel

I have two tabs on of which shows the graph and another one shows
data. However the content inside a tab is not visible. If I put
g:FlowPanel ui:field=graphContent/ outside of tablayoutpanel I can
see the graph, but If I put as shown above the graph is not visible.

Any clue would be helpful.

thanks in advance.

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Spring integration - what is the best method in late 2010?

2010-09-17 Thread lalit
Hi Jason,

I agree that both the approaches are same. But I still have a feeling
that gwtDispatch uses Spring MVC infra to do its job. The code that
you have posted above has WebApplicationContext. Also I looked into
gwtDispatch code and it seems it is using Spring MVC infra. The code I
looked into is here
http://code.google.com/p/gwt-dispatch/source/browse/src/main/java/net/customware/gwt/dispatch/server/spring/SpringStandardDispatchServlet.java

Another thing you mentioned in your mail that you do not have to code
two interfaces which looked interesting. If possible can you elaborate
on that? We would like to incorporate that in our approach also if
possible.

thanks,


On Sep 16, 7:15 pm, Jason Hatton jashat...@gmail.com wrote:
 Lalit we are not using Spring MVC.  We am using gwt-dispatch and have
 extended that project's dispatch servlet to get the Spring integration.  We
 then added a custom annotation to pick up the appropriate dispatch action
 handler for a particular GWT-RPC on the server side.  All of our GWT-RPC
 calls go through this servlet so we avoid the overhead and code bloat of
 having to create the standard GWT-RPC interfaces for every new service call
 we want to implement.  I looked over your example again and they are pretty
 similar.  I like your integration approach with Spring but I prefer service
 call handling because we don't have to code the two separate RPC interfaces,
  i.e. the Service and ServiceAsync for every service we want to implement.
  We just create an new dispatch handler apply an annotation to it and we are
 off and running.



 On Wed, Sep 15, 2010 at 11:33 PM, lalit lalit.bh...@gmail.com wrote:
  Deepak - I have used the following structure
    SpringApplicationContext, SpringGwtRemoteServiceServlet ,
  PersonServiceImpl go into the server side code.
   The interfaces PersonService and PersonServiceAsync  become part of
  GWT client side code.

  Regarding wsdl files consumption see the section on JAX-WS here
 http://www.lalitbhatt.com/tiki-index.php?page=JAX-WSespeciall JAX-WS
  client side section. This approach uses JAX-WS approach.

  For data binding you can use JAXB. The details can be seen here
 http://www.lalitbhatt.com/tiki-index.php?page=JAXB. JAX-WS anyway uses
  it internally.

  Also just a disclaimer, the approach I took is as per Spring4GWT
  project so it's there idea.

  Jason- I looked into your approach and conceptually they look similar
  in terms of that you are redirecting the request to Spring MVC
  infrastructure. IMHO the aprroach I took as per Sping4GWT is better as
  one does not have to carry the SpringMVC baggage.

  --
  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 email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs 
  cr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Any metrices on amount of code/data we can put on client side (browser)

2010-09-16 Thread lalit
Looking for some metrices about how much code and data we can push on
the client side. I understand that this will be a function of client
machine capabilities also. But if there are some specific indicators
in terms of browser capabilities, that would be great. For example how
much megs of code we can push.

thanks in advance

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Spring integration - what is the best method in late 2010?

2010-09-15 Thread lalit
Approach based on Spring4Gwt project

http://www.lalitbhatt.com/tiki-index.php?page=Integration+GWT+with+Spring

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Spring integration - what is the best method in late 2010?

2010-09-15 Thread lalit
Deepak - I have used the following structure
   SpringApplicationContext, SpringGwtRemoteServiceServlet ,
PersonServiceImpl go into the server side code.
  The interfaces PersonService and PersonServiceAsync  become part of
GWT client side code.

Regarding wsdl files consumption see the section on JAX-WS here
http://www.lalitbhatt.com/tiki-index.php?page=JAX-WS especiall JAX-WS
client side section. This approach uses JAX-WS approach.

For data binding you can use JAXB. The details can be seen here
http://www.lalitbhatt.com/tiki-index.php?page=JAXB. JAX-WS anyway uses
it internally.

Also just a disclaimer, the approach I took is as per Spring4GWT
project so it's there idea.

Jason- I looked into your approach and conceptually they look similar
in terms of that you are redirecting the request to Spring MVC
infrastructure. IMHO the aprroach I took as per Sping4GWT is better as
one does not have to carry the SpringMVC baggage.

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



UIBinder

2010-09-03 Thread lalit
Is there a pure HTML way of handling markups in UIBinder, so that we
can use the pure HTML markups and styles as provided by designers.

The problem I am seeing in converting pure markup into ui.xml is
- The styles has to be wrapped in a curly braces.
- The widget has to be converted into the g tags.

I looked into documentation but not finding any conclusions on that.

thanks in advance

-- 
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 email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to pass Session in two different GWT application

2008-10-23 Thread lalit

Hi,

I have three GWT application[ A, B and C] . All these three
application having login screen. My requirment is that if User already
logged in Application 'A' then he should be able to move on
application B and C without making a login for B and C.

Suppose after login for A, A application having two click buttton to
move on B or C.

Please could you help to find out the solution.




--~--~-~--~~~---~--~~
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, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---