Re: Creating a wizard - Series of steps with GWT

2009-09-18 Thread karan sardana
yeah ..it looks likecomp is the thing I was looking for

On Thu, Sep 17, 2009 at 10:41 PM, Jeff  wrote:

>
> On Sep 15, 10:31 pm, Karan Sardana  wrote:
> > Scenario is -  The user needs to enter and submit a lot of
> > information, & the mechanism to collect such information is often
> > organized into many screens with next/previous/finish buttons.
> >
> > Is there any way in which I can create this with GWT?
>
> Try GWT COMP ( http://www.cafesip.org/projects/common/gwtcomp/index.html
> ) .. it looks like they have a Wizard component of sorts (
>
> http://www.cafesip.org/projects/common/gwtcomp/docs/api/org/cafesip/gwtcomp/client/ui/WizardPanel.html
> )
>
> Jeff
> >
>

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-17 Thread Jeff

On Sep 15, 10:31 pm, Karan Sardana  wrote:
> Scenario is -  The user needs to enter and submit a lot of
> information, & the mechanism to collect such information is often
> organized into many screens with next/previous/finish buttons.
>
> Is there any way in which I can create this with GWT?

Try GWT COMP ( http://www.cafesip.org/projects/common/gwtcomp/index.html
) .. it looks like they have a Wizard component of sorts (
http://www.cafesip.org/projects/common/gwtcomp/docs/api/org/cafesip/gwtcomp/client/ui/WizardPanel.html
)

Jeff
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-16 Thread Trevis

GIN is a DI framework that works with GWT

http://groups.google.com/group/google-web-toolkit/browse_thread/thread/f6f13ebc2c59a64e#

The fact that the client code is compiled into JS before execution
makes GWT UI's a unique beast. GWT has a lot of Java's functionality
but you cant include libraries that haven't been compiled to JS.

Trevis

On Sep 16, 12:53 pm, Aju Mathai  wrote:
> Hi,
>
> I want to know if I can use spring in my GWT code to use the
> dependency injection framework? I am not talking about GWT gui
> interaction with backend spring app.The reason I am asking is the GWT
> code gets compiled to JavaScript and this is what gets executed in
> browser. If I am using spring code in that, then would it work or for
> that matter any other library like log4j, etc.?By doing this i could
> also control the access to components based on the user permissions.
>
> Or the GUI code have to be pure GWT API only?
>
> For example,
>
> public class MyTable {
>    private Button myButton;
>   �...@autowired
>    public MyTable(Button aMyButton) {
>       myButton = aMyButton;
>    }}
>
> Can you gimme some pointers whether this can be done . Some sample
> code egs will help me.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-16 Thread Rakesh

Steps:
- Create a Composite widget called Wizard
- This widget will have a DeckPanel and back/next buttons in a main
VerticalPanel.
- Add your screens(different widgets) into the base DeckPanel.
- If you have lot of data that is shared across the screens, wrap it
up in a value object.
- Share this value object across screens.
- Each screen is a composite widget that is aware of how to render
itself with the passed data.

you can make the wizard generic by accepting list of screen widgets
(Widget[]) and adding them all to the deckpanel; on back/next move the
visible deck as required.

It is very simple! Little playing around with gwt and you will do it.
good luck...

Rakesh Wagh

On Sep 15, 9:31 pm, Karan Sardana  wrote:
> Scenario is -  The user needs to enter and submit a lot of
> information, & the mechanism to collect such information is often
> organized into many screens with next/previous/finish buttons.
>
> Is there any way in which I can create this with GWT?
>
> Thanks,
> Karan
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-16 Thread Sean

I have actually done this. And as people have said, I have a Parent
Frame that essentially holds all the data. And depending on what needs
to be created, "children" frame request and send data to the parent.
No child talks to eachother, they all talk to their parent. You can
even go fancy and add a Bread Crumb Trail at the top. That works
really well and is very intuitive.

On Sep 16, 9:52 am, mikedshaffer  wrote:
> You should also look at GWT-Ext.  It has some wizard framework type
> stuff.  I haven't used this part, but GWT-Ext as a whole is 
> strong.http://www.gwt-ext.com/demo/#cardLayout
>
> or as Paul recommends, get some inspiration and create just what you
> need.  GWT is a sweet spot for just that
>
> Later,
>
> Shaffer
>
> On Sep 16, 3:57 am, Paul MERLIN  wrote:
>
> > Take a look at some wizard apis and get inspired.
>
> > The netbeans wizard api (java) is interesting but a little complicated if
> > you don't need dynamic branching. QWizard from Qt has a good design from my
> > POV, but it's C++.
>
> > IOW, read code, then write code ;)
>
> > Regards
>
> > /Paul
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-16 Thread mikedshaffer

You should also look at GWT-Ext.  It has some wizard framework type
stuff.  I haven't used this part, but GWT-Ext as a whole is strong.
http://www.gwt-ext.com/demo/#cardLayout

or as Paul recommends, get some inspiration and create just what you
need.  GWT is a sweet spot for just that

Later,

Shaffer

On Sep 16, 3:57 am, Paul MERLIN  wrote:
> Take a look at some wizard apis and get inspired.
>
> The netbeans wizard api (java) is interesting but a little complicated if
> you don't need dynamic branching. QWizard from Qt has a good design from my
> POV, but it's C++.
>
> IOW, read code, then write code ;)
>
> Regards
>
> /Paul
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-16 Thread Paul MERLIN

Take a look at some wizard apis and get inspired.

The netbeans wizard api (java) is interesting but a little complicated if 
you don't need dynamic branching. QWizard from Qt has a good design from my 
POV, but it's C++.

IOW, read code, then write code ;)

Regards

/Paul




--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-15 Thread karan sardana
Good idea, but I need to create a kind of framework, so that, it could be
used independently of the number/complexity of screens/panels.

 Screens should be able to gain access to all the data without having to
bother about all the other screens.


On Wed, Sep 16, 2009 at 2:07 PM, Zak  wrote:

>
> You could make one panel that contained all the "screens" as hidden
> panels, and just show the correct one based on the button the user
> pushed (next/prev).
>
> On Sep 15, 11:31 pm, Karan Sardana  wrote:
> > Let me add something to this -
> >
> > We would need the screens to interact with each other i.e. pass on
> > data back & forth; so, essentially, we could say, each of the screens
> > would have the complete data access.
> >
> > On Sep 16, 12:53 pm, karan sardana  wrote:
> >
> > > how can I do that?
> >
> > > On Wed, Sep 16, 2009 at 12:45 PM, Isaac Truett 
> wrote:
> >
> > > > Yes.
> >
> > > > On Tue, Sep 15, 2009 at 10:31 PM, Karan Sardana <
> karansard...@gmail.com>
> > > > wrote:
> >
> > > > > Scenario is -  The user needs to enter and submit a lot of
> > > > > information, & the mechanism to collect such information is often
> > > > > organized into many screens with next/previous/finish buttons.
> >
> > > > > Is there any way in which I can create this with GWT?
> >
> > > > > Thanks,
> > > > > Karan
> >
>

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-15 Thread Zak

You could make one panel that contained all the "screens" as hidden
panels, and just show the correct one based on the button the user
pushed (next/prev).

On Sep 15, 11:31 pm, Karan Sardana  wrote:
> Let me add something to this -
>
> We would need the screens to interact with each other i.e. pass on
> data back & forth; so, essentially, we could say, each of the screens
> would have the complete data access.
>
> On Sep 16, 12:53 pm, karan sardana  wrote:
>
> > how can I do that?
>
> > On Wed, Sep 16, 2009 at 12:45 PM, Isaac Truett  wrote:
>
> > > Yes.
>
> > > On Tue, Sep 15, 2009 at 10:31 PM, Karan Sardana 
> > > wrote:
>
> > > > Scenario is -  The user needs to enter and submit a lot of
> > > > information, & the mechanism to collect such information is often
> > > > organized into many screens with next/previous/finish buttons.
>
> > > > Is there any way in which I can create this with GWT?
>
> > > > Thanks,
> > > > Karan
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-15 Thread Karan Sardana

Let me add something to this -

We would need the screens to interact with each other i.e. pass on
data back & forth; so, essentially, we could say, each of the screens
would have the complete data access.

On Sep 16, 12:53 pm, karan sardana  wrote:
> how can I do that?
>
> On Wed, Sep 16, 2009 at 12:45 PM, Isaac Truett  wrote:
>
> > Yes.
>
> > On Tue, Sep 15, 2009 at 10:31 PM, Karan Sardana 
> > wrote:
>
> > > Scenario is -  The user needs to enter and submit a lot of
> > > information, & the mechanism to collect such information is often
> > > organized into many screens with next/previous/finish buttons.
>
> > > Is there any way in which I can create this with GWT?
>
> > > Thanks,
> > > Karan
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-15 Thread karan sardana
how can I do that?

On Wed, Sep 16, 2009 at 12:45 PM, Isaac Truett  wrote:

>
> Yes.
>
>
> On Tue, Sep 15, 2009 at 10:31 PM, Karan Sardana 
> wrote:
> >
> > Scenario is -  The user needs to enter and submit a lot of
> > information, & the mechanism to collect such information is often
> > organized into many screens with next/previous/finish buttons.
> >
> > Is there any way in which I can create this with GWT?
> >
> > Thanks,
> > Karan
> > >
> >
>
> >
>

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Creating a wizard - Series of steps with GWT

2009-09-15 Thread Isaac Truett

Yes.


On Tue, Sep 15, 2009 at 10:31 PM, Karan Sardana  wrote:
>
> Scenario is -  The user needs to enter and submit a lot of
> information, & the mechanism to collect such information is often
> organized into many screens with next/previous/finish buttons.
>
> Is there any way in which I can create this with GWT?
>
> Thanks,
> Karan
> >
>

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Creating a wizard - Series of steps with GWT

2009-09-15 Thread Karan Sardana

Scenario is -  The user needs to enter and submit a lot of
information, & the mechanism to collect such information is often
organized into many screens with next/previous/finish buttons.

Is there any way in which I can create this with GWT?

Thanks,
Karan
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---