google-web-toolkit@googlegroups.com

2011-10-19 Thread sridevi macherla
Yes.  Thomas.

REgards
Sri

On Wed, Oct 19, 2011 at 3:08 PM, Thomas Broyer  wrote:

> Are you looking for the PlaceHistoryMapper ?
>
> (I'm sorry, I don't understand your question)
>
> --
> 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/-/_8kop-c9gwUJ.
> 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.



google-web-toolkit@googlegroups.com

2011-10-18 Thread sridevi macherla
Hi,

I want to know the URL pattern in Activities & Places.  I mean i am
wondering how to parse the string.

1. http://abc:8080/start.html?welcome

Here welcome is new place.

2. http://abc:8080/start.html?welcome:&obj1=21&obj2=30

This was a new place with parameterized, but the tokenizer is separated with
:

So how to parse this, any idea or thoughts and my assumptions are holding
correct.

Thanks
Sri

-- 
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: Places & Activities any suggestion?

2011-10-18 Thread sridevi macherla
Ya i have ran the application see my problem when i click on the hyperlink
in one of the page i need to navigate to another page with those parameters
in URL , please guide me how to achieve this...



On Tue, Oct 18, 2011 at 1:05 PM, -sowdri-  wrote:

> Hi Rohan,
>
> I guess you are trying to user PlaceController in isolation.
>
> >> PlaceController control = new PlaceController(eventBus);
>
> This is not supposed to work. Have you referred the documentation on
> Activities and Places? Have you run the sample application given in the
> below link?
>
> http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html
>
> // taken from the official docs
>
> // Start PlaceHistoryHandler with our PlaceHistoryMapper
> AppPlaceHistoryMapper historyMapper= 
> GWT.create(AppPlaceHistoryMapper.class);
> PlaceHistoryHandler historyHandler = new 
> PlaceHistoryHandler(historyMapper);
> historyHandler.register(placeController, eventBus, defaultPlace);
>
> RootPanel.get().add(appWidget);
> // Goes to the place represented on URL else default place
> historyHandler.handleCurrentHistory();
>
>
> Hope this helps!
>
> --
> 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/-/nfMchiRKXUMJ.
>
> 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.



Re: PlaceHistoryHandler for URL with multiple args

2011-10-17 Thread sridevi macherla
Thanks Sowdri,  But my question relates to how to append these parameters in
URL.  Place name will be defulat.

-   "key1=value1&key2=value2&key3=value3"


Thanks
Sri
On Mon, Oct 17, 2011 at 2:38 PM, -sowdri-  wrote:

> http://localhost:8080/#place-name:key1=value1&key2=value2&key3=value3 (as
> many nvpairs as you require)
>
> Once you hit this url, the place tokenizer will take care of parsing the
> url and you can directly access the values of the params, using
> place.hasParameter() and place.getParameter() as mentioned in the previous
> post.
>
> Thanks,
>
> --
> 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/-/XfMdWMxwp20J.
>
> 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.



Re: How to deploy using modules

2011-10-17 Thread sridevi macherla
You can try with Activities and Places.

Using Activities you can load the corresponding other Moudle.gwt.xml and
i dont have sample to have demonstration.

But this can be feasible, one of my colleage did a POC.

Regards
Sri...

2011/10/14 Néstor Boscán 

> Hi
>
> I have a client that wishes to create a big GWT project that is modularized
> where in one page you can see the panels of different modules. They want to
> deploy by module not deploying the entire war everytime there is a change.
> In GWT I could create 1 jar per module and create a war that integrates
> everything and deploy it the first time. If I change something in one module
> I would have to replace the jar, the entire .js and restart the server. Any
> ideas on this?
>
> Regards,
>
> Néstor Boscán
>
> --
> 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.



Re: PlaceHistoryHandler for URL with multiple args

2011-10-17 Thread sridevi macherla
Hi Sowdri,

Thanks a lot this example help me lot but if we see the example concentrates
how to parse the params and spilt.

One basic question how do we append params in the url

http://localhost:8080/#

for this URL how can i append params with activities and places, where as in
case of earlier we have Fragements or HistoryTokens.

Can you please clarify or help  as i am having tough time with A&P.

Thanks
Swaroop


On Thu, Oct 13, 2011 at 11:00 AM, -sowdri-  wrote:

> // place and placetokenizer for your reference
>
> public class AgencyPlace extends AbstractBasePlace {
>
> public AgencyPlace(String token) {
> super(token);
> }
>
> @Prefix("agency-place")
> public static class Tokenizer implements PlaceTokenizer {
>
> @Override
> public AgencyPlace getPlace(String token) {
> return new AgencyPlace(token);
> }
>
> @Override
> public String getToken(AgencyPlace place) {
> return place.getUrl();
> }
> }
> }
>
>  --
> 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/-/hjAnTz5FYk0J.
>
> 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.



Re: PlaceHistoryHandler for URL with multiple args

2011-10-12 Thread sridevi macherla
Hi Thomas,

Thanks for putting this, but how do u register the tokens specific can you
given up a n entire example along with Activities and
Place

eg: http://localhost:/book:id=1&id=2
http://localhost/search?author:name=50&publisher=MIT


Meaning in the above the example you suggested how to parse the token, but
how do you register this token for each place.

how to achieve different parameters for each of the place, pls suggest ur
thoughts, Thanks in advance
Sri.

On Thu, Oct 13, 2011 at 7:01 AM, Ashton Thomas  wrote:

> Adding an example to this piece:
>
>
> MyPlace extends AppPlace {
>   int param1;
>
>   public MyPlace(String token){
> this.param1 = getInt("pid", token); //if url is #my-place?pid=12&tid=4
>  int var = getInt("tid", token)
> ..
>   }
> ...
> }
>
> Probably a better way of doing all of this but wanted to update this
> example to link to in another gwt question
>
> --
> 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/-/USBmGMFC3DQJ.
>
> 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.



Re: Activities and Places

2011-10-12 Thread sridevi macherla
Thanks...

On Thu, Oct 13, 2011 at 7:02 AM, Ashton Thomas  wrote:

> Thank you for posting the same question twice:
>
> try this link:
> https://groups.google.com/d/topic/google-web-toolkit/PzlyZ3Gjazg/discussion
>
> --
> 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/-/F5bEX5D3z5IJ.
> 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.



GWT - MegaMenu

2011-10-12 Thread sridevi macherla
Hi,

I am trying to implement MegaMenu using GWT, any samples/examples are
available.

Thanks
Sri

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



Activities and Places

2011-10-12 Thread sridevi macherla
Hi,

I am working on Activities and Places for one of our App.  I am not sure how
to add the functionality for eg:

1. http://lhost/?page=App1  (this can  be done with Place and Actiivity) and
I have done it

2. http://lhost/?page=App1 ¶m1="abc"¶m="2"

How to append the params in Activities and Places and all the params are
dynamic in place, please help me by providing a soluation or sample.

thanks in advance
Sri

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



how to add custom token in URL (using Activities and Places )

2011-10-12 Thread sridevi macherla
Hi,

I am working on Activities and Places for one of our App.  I am not sure how
to add the functionality for eg:

1. http://lhost/?page=App1  (this can  be done with Place and Actiivity) and
I have done it

2. http://lhost/?page=App1 ¶m1="abc"¶m="2"

How to append the params in Activities and Places and all the params are
dynamic in place, please help me by providing a soluation or sample.

tha nks in advance
Sri

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



Openings for GWT (6-8 yrs) of experience

2011-09-25 Thread sridevi macherla
Hi,

There are multiple for openings GWT (6-8 yrs) of experience

Thanks
Sridevi

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



Pros & Cons for RequestFactory Vs GWT RPC mechanism

2011-08-23 Thread sridevi macherla
Hi,

I an new to GWT and exploring the interaction of UI and Server.  I would
like to know Pros and Cons

1. RequestFactory

2. GWT RPC

Which one can scale in terms of performance and reusability perspective.

Thanks
Sridevi

-- 
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: Problem with GXT not running on Linux machines

2011-04-20 Thread sridevi macherla
Hi Phani,

The problem I am facing is that I am trying for lookup for Java objects
class to get the BeanModel class and now I am getting different javascript
errors when we
are executing on Linux machines.  Nt sure why i am getting even i tried to
compile in Pretty version as well but no use.

BeanModelLookup.get().getFactory(SomeJava.getClass());


Thanks
Sri
On Wed, Apr 20, 2011 at 12:45 PM, phani kumar wrote:

> Hi Sri, Can you please be little clear about your problem? Application is
> not getting built or its not loading the application? please specify the
> module descriptors you are using?
>
> On Wed, Apr 20, 2011 at 12:42 PM, sridevi macherla <
> sridevimache...@gmail.com> wrote:
>
>> Hi,
>>
>> I am facing an issue with GXT no getting executing especially with
>> BeanModelFactory, Module itself is failing to load,  Can someone please help
>> me in this regard.
>>
>> Thanks
>> Sri
>>
>> --
>> 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.
>>
>
>
>
> --
>
> Kind Regards,
>
> *Phani Kumar K***
>
> *Senior Software Engineer***
>  *
> --
> *
>  *Encora Technologies Pvt. Ltd.  |  M. G. Road |  Bangalore  |  Mob :
> +91-9916435979  |  Off (D) : +91-80-6695-3683 ** **| E-Mail :
> phani.kakarapar...@encorainc.com 
> <http://www.encorainc.com/>**
> *
>
> --
> 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.



Problem with GXT not running on Linux machines

2011-04-20 Thread sridevi macherla
Hi,

I am facing an issue with GXT no getting executing especially with
BeanModelFactory, Module itself is failing to load,  Can someone please help
me in this regard.

Thanks
Sri

-- 
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: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
 Is there any mechanism to generate browser sepecific example I have 3
browser, but currenlty user is browsing in Firefox, so the rest of
permutation can be ignored meaning dynamic binding of browser specific way
so that way the javascript can be reduced to a larger extent, but please
suggest me.

On Fri, Mar 4, 2011 at 10:46 PM, sridevi macherla  wrote:

> Larsen,
>
> Can't we use any other options available, like the Generators.
>
> Thanks
> Sri
>
>
> On Fri, Mar 4, 2011 at 9:53 PM, Jeff Larsen  wrote:
>
>> 11MB you're probably gonna want to start looking into codesplitting
>> various parts of the app. That is probably the only way you're going to get
>> that beast down to a reasonable size.
>>
>> --
>> 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.



Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Larsen,

Can't we use any other options available, like the Generators.

Thanks
Sri

On Fri, Mar 4, 2011 at 9:53 PM, Jeff Larsen  wrote:

> 11MB you're probably gonna want to start looking into codesplitting
> various parts of the app. That is probably the only way you're going to get
> that beast down to a reasonable size.
>
> --
> 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.



Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Hi,

Everyone, need a help I have a huge application almost entire application is
totally interlinked with most of the pages.  And finally the javascript that
is being generated in prod mode is around 11 MB and the IE/firefox  is not
able to load this huge javascript file.  Someone please suggest any fine
tunigs for GWT compiler currently i am using obsf option

Thanks
Sri

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



Combobox in GridCell

2010-11-24 Thread sridevi macherla
Hi,

Hope everything is fine with you,  I have a issue with combo box in Editor
Grid.  In each row the value of the combo box changes based on the id.  If
you dont mind can you provide me a  sample working example or how do we
change or bind the store for each row and how do we hold the selected
element from combo box of each row.

Thanks
Swaroop

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



to render Fusion chart in GridCellRenderer

2010-07-13 Thread sridevi macherla
> Hi,




> Can someone provide me an sample code for rendering Fusion chart in
> GridCellRenderer along with column fields,



>   Thanks Sri
>

-- 
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 render Fusion chart in GridCellRenderer

2010-07-12 Thread sridevi macherla
Hi,   Can someone provide me an sample code for rendering Fusion chart in
GridCellRenderer along with column fields,  Thanks Sri

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



UI Requirement for 4+ years on Java ( Can send me their resumes)

2010-06-03 Thread sridevi macherla
Hi,

UI Requirement for 4+ years on Java/GXT ( Can send me their resumes)


Thanks and Regards
Sri

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



ListView with Text and images?

2010-05-12 Thread sridevi macherla
Hi,

How to add listView with Text and images?  which has liststore...

somone please help me.

Thanks
Sri

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



Google GXT ListView, please help me

2010-04-30 Thread sridevi macherla
Hi,


Can anyone please provide an example for "Grid as List" using ListView (GXT
Component)?  Please help me in this regard

thanks
Swaroop

-- 
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: Suggestion needed in design a shops website

2010-04-28 Thread sridevi macherla
Hi Sanjeev,

Thanks thats exactly i am looking for the same, but i am looking the same in
GXT /GWT as we are working on GXT  pleasekindly help me

Thanks
Sri

On Wed, Apr 28, 2010 at 1:28 PM, Sanjeev Kulkarni wrote:

> http://www.smartclient.com/smartgwt/showcase/#featured_complete_app
>
> This is exactly what u needed!
>
> On Apr 28, 12:24 pm, Sanjeev Kulkarni  wrote:
> > Try using SmartGWT if you want to make your web page more attractive.
> > Here is a linkhttp://www.smartclient.com/smartgwt/showcase/#main
> >
> > On Apr 28, 10:10 am, chaitanya kumar  wrote:
> >
> >
> >
> > > Use scroll table inseide absolute panel in that you use radio button
> > > or check box to select tha items..
> >
> > > On Wed, Apr 28, 2010 at 12:52 AM, sridevimacherla
> >
> > >  wrote:
> > > > Hi,
> >
> > > > thanks for your reply, but i am asking in terms of GWT like which
> panels,
> > > > layout and design pattern to be used.
> >
> > > > Thanks
> > > > Sri
> >
> > > > On Wed, Apr 28, 2010 at 10:05 AM, chaitanya kumar <
> chetan2...@gmail.com>
> > > > wrote:
> >
> > > >> Hi Sridevi,
> >
> > > >> First u need design a database such that it should have dependencies
> > > >> with each other.
> > > >> For list of items u have one table and a primary or foriegn key
> > > >> associated to the top grid table so that you can easily get the
> items
> > > >> selected in the list...
> > > >> Every table needs one related to the previous table primary key so
> > > >> that  \u can get the related items..
> >
> > > >> On Tue, Apr 27, 2010 at 12:55 PM, sridevi macherla
> > > >>  wrote:
> > > >> > Hi All,
> > > >> > Suggestion needed in design a shops website, which design pattern
> to be
> > > >> > used.  Attached is a highlevel overview of the shops page.
> > > >> > 1. The top side of the view displays a toolbar typically a
> collections
> > > >> > of
> > > >> > button.
> > > >> > 2. The left side is list of all items.  Based on this item
> selected ,
> > > >> > the
> > > >> > top Grid is populated with all the vendors based items.
> > > >> > 3. The "Top Grid" displays a table with selectable rows.  Once a
> row is
> > > >> > selected the bottom grid displays relevant information and right
> side
> > > >> > lists
> > > >> > all the items relevant or similar once ...
> > > >> > 4. The bottom Grid displays a details for the item selected in top
> grid.
> > > >> > 5. The right side lists all the related items.
> > > >> > Please suggest a workflow of the view or the design pattern that
> can be
> > > >> > best
> > > >> > suited and a optimized one for this kind of page. pls help
> >
> > > >> > Thanks
> > > >> > Sri
> >
> > > >> > --
> > > >> > 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.
> >
> > > >> --
> > > >> 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.
> >
> > > > --
> > > > 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.
> >

Re: How to create a BreadCrumb in GWT

2010-04-27 Thread sridevi macherla
Hi ,

Typically the breadCrumb would be in somewhat similar to

"ABC" >"DEF" > "GHI"  Typically API has nt provided this functionality i
believe AFAIK.

Thanks
Sri




On Tue, Apr 27, 2010 at 8:48 PM, Tsukasa  wrote:

> My first intention would be an BreadCrumbBar Widget containing
> BreadCrumbItems Wigets which would encapsulate a Label and an image in
> some Panel. But I'd prefer looking trough the API if there is not
> already something like that.
>
> Letting BreadCrumbBar implement HasWidgets would easily enalbe
> declarative definition of such a menu. If you need Code example just
> say so and there could be something fast (without any nice layouting)
> available in no time.
>
> On 27 Apr., 14:40, sridevi macherla  wrote:
> > Hi,
> >
> > Can someone please help me with an example on how to create a breadcrumb
> for
> > example have a look Windows 7 explorer.
> >
> > Please help me in this regard.
> >
> > Thanks
> > Sri...
> >
> > --
> > 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 athttp://
> 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.
>
>

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



Suggestion needed in design a shops website

2010-04-27 Thread sridevi macherla
Hi All,

Suggestion needed in design a shops website, which design pattern to be
used.  Attached is a highlevel overview of the shops page.

1. The top side of the view displays a toolbar typically a collections of
button.

2. The left side is list of all items.  Based on this item selected , the
top Grid is populated with all the vendors based items.

3. The "Top Grid" displays a table with selectable rows.  Once a row is
selected the bottom grid displays relevant information and right side lists
all the items relevant or similar once ...

4. The bottom Grid displays a details for the item selected in top grid.

5. The right side lists all the related items.

Please suggest a workflow of the view or the design pattern that can be best
suited and a optimized one for this kind of page. pls help


Thanks
Sri

-- 
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 create a BreadCrumb in GWT

2010-04-27 Thread sridevi macherla
Hi,

Can someone please help me with an example on how to create a breadcrumb for
example have a look Windows 7 explorer.

Please help me in this regard.

Thanks
Sri...

-- 
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 me in understanding Binding Concept

2010-04-20 Thread sridevi macherla
Hi Nathan,

I am new to binding concept.  I want to know in general concept what exaclty
binding does.

How it works in GWT and what are different types of binding available in GWT

Thanks
Sri

On Mon, Apr 19, 2010 at 8:25 PM, Nathan Wells  wrote:

> Are you referring to Deferred Binding (http://code.google.com/
> webtoolkit/doc/1.6/FAQ_Client.html#Deferred_Binding), or Beans Binding
> (https://beansbinding.dev.java.net/)
>
> They are two very different concepts.
>
> On Apr 19, 4:26 am, sridevi macherla 
> wrote:
> > Hi All,
> >
> > Can some one please help me in understanding the concept of Binding and
> how
> > is it related to GWT.
> >
> > Please provide me some links in this regard. and why is it required  what
> > are differnt types of binding.
> >
> > Thanks
> > Sri
> >
> > --
> > 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 athttp://
> 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.
>
>

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



Help me in understanding Binding Concept

2010-04-19 Thread sridevi macherla
Hi All,

Can some one please help me in understanding the concept of Binding and how
is it related to GWT.

Please provide me some links in this regard. and why is it required  what
are differnt types of binding.

Thanks
Sri

-- 
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 get rounded corners for FieldSet

2010-04-16 Thread sridevi macherla
Hi,

How to get RoundedCorners through FieldSet.class?

Thanks
Sri

-- 
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: Few Openings in UI

2010-03-29 Thread sridevi macherla
Hi Manish,

This openiings for Java 4- 8 years of experience and GWT would be much more
advantage.

for Netapp bangalore.

bye

On Mon, Mar 29, 2010 at 10:54 AM, Manish Kumar wrote:

>  Hi Sri
>
>
>
> Could I please know a bit more detailed information on the requirement and
> about the  company?
>
>
>
> Regards
>
> Manish
>
>
>
> *From:* google-web-toolkit@googlegroups.com [mailto:
> google-web-tool...@googlegroups.com] *On Behalf Of *sridevi macherla
> *Sent:* Monday, March 29, 2010 10:26 AM
> *To:* undisclosed-recipients:
>
> *Subject:* Few Openings in UI
>
>
>
> Hi,
>
>
> Few openings in User Interface on Java/J2EE in my organization, anyone
> willing to relocate to bangalore and are interested.  Can send me their
> resumes at the earliest.
>
> Profile:
> Exp 4+
> UI: Java/J2EE/Servlets/JSP ( Core Java should be strong).
> Location : Bangalore.
>
> Thanks
> Sri
>
> --
> 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.
>
> --
> 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.
>

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



Can someone brief out about MVP

2010-03-28 Thread sridevi macherla
Hi,

Can someone brief out about Model View Presenter architecture...

Thanks

Sri

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



Few Openings in UI

2010-03-28 Thread sridevi macherla
Hi,

Few openings in User Interface on Java/J2EE in my organization, anyone
willing to relocate to bangalore and are interested.  Can send me their
resumes at the earliest.

Profile:
Exp 4+
UI: Java/J2EE/Servlets/JSP ( Core Java should be strong).
Location : Bangalore.

Thanks
Sri

-- 
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: Anyaware of Hadoop/HBase/BigTables

2010-03-26 Thread sridevi macherla
Hi Karthik,

I would like to know how to implement or the usage of BigTable/Hbase?  which
one would be best fit to hold the data around 5 TB in compressed manner.

currently ia m evulating the frameworks and would like to know what are the
other frameworks and which one will be best suited if anyone used it.

And also any docs are available on any of these?

Thanks
Sri

On Fri, Mar 26, 2010 at 12:45 PM, naga vinod kumar  wrote:

>
> Are there any opensource projects with respect to AppEngine or hadoop..?
>
>
>  --
> 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.
>

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



Anyaware of Hadoop/HBase/BigTables

2010-03-25 Thread sridevi macherla
Hi,

Anyone aware of Hadoop/HBase/BigTables, did anyone working on this modules.
please let me know.

Thanks
Sri

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



Hi Need a favour

2010-03-04 Thread sridevi macherla
Hi ,

Anyone working with Google Hyderabad, can you please let me know.

Thanks
Sri

-- 
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: Fwd: Can anyone explain RPC

2010-02-23 Thread sridevi macherla
Hi Martin,

Thank you a lot.

Regards
Sri

On Tue, Feb 23, 2010 at 3:25 PM, Martin Trummer wrote:

>
> http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideServerCommunication.html
>
> On 23 Feb., 07:11, sridevi macherla  wrote:
> > Hi All,
> >
> > I am new to GWT and I am working on RPC i couldn ot understand what is
> > exaclty RPC and how it relates to GWT what GWT is trying to achieve from
> the
> > RPC.
> >
> > Could someone pls help me in understanding RPC concept, how is it
> > implemented in RPC.
> >
> > Thanks and Regards
> > Sri
>
> --
> 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.
>
>

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



Fwd: Can anyone explain RPC

2010-02-22 Thread sridevi macherla
Hi All,

I am new to GWT and I am working on RPC i couldn ot understand what is
exaclty RPC and how it relates to GWT what GWT is trying to achieve from the
RPC.

Could someone pls help me in understanding RPC concept, how is it
implemented in RPC.

Thanks and Regards
Sri

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



Can anyone explain RPC

2010-02-22 Thread sridevi macherla
Hi All,

I am new to GWT and I am working on RPC i couldn ot understand what is
exaclty RPC and how it relates to GWT what GWT is trying to achieve from the
RPC.

Could someone pls help me in understanding RPC concept, how is it
implemented in RPC.

Thanks and Regards
Sri

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