Re: PopupPanel space on parent Panel

2011-01-05 Thread Nirmal Patel
and uncovered by glass) In the past; I have done this by writing up own custom popups and adding them absolutely to parent panels. Is there a GWT inbuilt way? Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: deploy new server version - how to inform clients?

2011-01-04 Thread Nirmal Patel
You need to handle IncompatibleRemoteServiceException Read here: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html#DevGuideHandlingExceptions Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: please Help me GWT Listbox

2011-01-04 Thread Nirmal Patel
Not sure if I understand your requirement; but are you looking to allow the user select multiple options from a list?? If so, there is a GWT widget: ListBox ( http://gwt.google.com/samples/Showcase/Showcase.html#!CwListBox) -- You received this message because you are subscribed to the Google

Re: UIBinder component in multiple packages

2011-01-04 Thread Nirmal Patel
Your UiBinder files are used at compile time to generate actual widget classes. You will need to add your common pkg as source for the GWT Compiler in your gwt.xml source path='path_of_common'/ Regards, Nirmal -- You received this message because you are subscribed to the Google Groups

Re: TimeSpinner in GWT.

2010-12-30 Thread Nirmal Patel
Check this one in the incubator: http://code.google.com/p/google-web-toolkit-incubator/wiki/Spinner -- 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

Re: Confused about Servlet mapping and Url Pattern, RPC not working when Deployed

2010-12-29 Thread Nirmal Patel
. Regards, Nirmal -- 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

Re: gwt scheduler example

2010-12-29 Thread Nirmal Patel
The task to be scheduled: private final class MyScheduledCommand implements ScheduledCommand { public void execute() { //Task to be scheduled .. } } Usage: Scheduler.get().scheduleDeferred(new MyScheduledCommand()); -- You received this message

Re: gwt scheduler example

2010-12-29 Thread Nirmal Patel
private final class MyRepeatedCommand implements RepeatingCommand { public void execute() {} } Scheduler.get().scheduleFixedPeriod(new MyRepeatedCommand(), delayMs) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Can I generate a call to GWT.create(...) within generated code

2010-12-29 Thread Nirmal Patel
(}); sw.commit(logger); return packageName+.+classNameWIData; } else { return packageName+.+classNameWIData; } } } Regards, Nirmal -- 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

Re: I18N - How to set locale per code?

2010-12-29 Thread Nirmal Patel
Look in I18N.gwt.xml if (locale == null) { * // Look for the locale on the web page* locale = __gwt_getMetaProperty(locale) } if (locale == null) { // Look for an override computed by other means in the selection script locale = $wnd['__gwt_Locale'];

Re: Click event for custom cell renderer (HyperlinkCell) for CellTable isn't firing.

2010-12-28 Thread Nirmal Patel
(select 1.6) Regards, Nirmal -- 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

Re: Confused about Servlet mapping and Url Pattern, RPC not working when Deployed

2010-12-28 Thread Nirmal Patel
of deploying RPC: http://code.google.com/webtoolkit/doc/trunk/DevGuideServerCommunication.html#DevGuideRPCDeployment.. (if you havent read it already) Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group

Re: image sprite in uibinder not working

2010-12-27 Thread Nirmal Patel
You can disable inline data urls by following: set-property name=ClientBundle.enableInlining value=false Even I havent used it personally; think inlining best serves nby saving a http request to get your image. Regards, Nirmal -- You received this message because you are subscribed

Re: GWT Classpath to add new libraries

2010-12-23 Thread Nirmal Patel
You can create a folder lib under your project's root and place the jar there. If you are using eclipse, Project - Build Path - Configure Build Path. Add the above lib under Libraries. Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web

Re: Must recompile to see changes

2010-12-22 Thread Nirmal Patel
the plugin is installed; you should be able to see your application running in the browser. Any changes you make in code henceforth will be visible in dev-mode by refreshing the browser. Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Confused about Servlet mapping and Url Pattern, RPC not working when Deployed

2010-12-22 Thread Nirmal Patel
for that. Regards, Nirmal -- 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

Re: StackLayoutPanel Behaving Strangely

2010-12-15 Thread Nirmal
When using a *LayoutPanel inside a non-LayoutPanel; you need to explicitly set size of the LayoutPanel. Regards, Nirmal -- 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

Re: Toast Notification

2010-12-14 Thread Nirmal
Isn't the NotificationMole similar?? Regards, Nirmal -- 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

Sample application for Editor Framework

2010-12-14 Thread Nirmal
I am looking for resources and code samples to learn the GWT2.1 Editor Framework. Any suggestions apart from the DevGuide: http://code.google.com/webtoolkit/doc/latest/DevGuideUiEditors.html Thanks in advance, Nirmal -- You received this message because you are subscribed to the Google

Re: show loading message in GWT

2010-12-14 Thread Nirmal
Loading.gif can be added as Image) and have the added advantage of masking the background with setGlassEnabled(true) Regards, Nirmal -- 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

Re: show loading message in GWT

2010-12-14 Thread Nirmal
} resource={res.symbolsLoadingIcon}/g:Image Regards, Nirmal -- 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

Re: TabLayoutPanel does not listen to width

2010-12-02 Thread Nirmal
When you nest a LayoutPanel within something NON-LayoutPanel (like Flowpanel); you need to explicitly set both - the height width of the LayoutPanel. Read Using a LayoutPanel without RootLayoutPanel of http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html Regards, Nirmal On Dec 2

Re: How to use constants in uibinder

2010-12-01 Thread Nirmal
gwt:TabLayoutPanel addStyleNames={style.tabPanel} barHeight=28 ui:field=tabPanel Regards, Nirmal On Dec 1, 8:34 pm, Paul Stockley pstockl...@gmail.com wrote: Rather than say the following gwt:TabLayoutPanel addStyleNames={style.tabPanel} width=480px height=250px barHeight=28 ui:field

Re: Error using style with UiBinder

2010-12-01 Thread Nirmal
I think you are missing the mappings in your web.xml Regards, Nirmal On Dec 1, 9:08 pm, Chris Conroy con...@google.com wrote: This is a server side classloader failing to find the class es.ifca.altaweb.server.AltawebServiceImpl. I don't think UIBinder is your problem here. On Wed, Dec

Re: .cache.html file size got double after upgrading to GWT 2.1 from 1.7

2010-12-01 Thread Nirmal
One reason for increase in size of .cache.html files could be the use of inline data: urls... for ClientBundles. Regards, Nirmal On Nov 30, 11:37 pm, Jewel toje...@gmail.com wrote: I tried GXT 2.2.1 which is for GWT 2.0 (not for GWT 2.1) but I also tried compiling it with GWT 2.0, which also

Problem showing NotificationMole

2010-11-30 Thread Nirmal
... / span /div /div/div/div/div Am I missing something here?? Regards, Nirmal -- 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

Re: Problem showing NotificationMole

2010-11-30 Thread Nirmal
); notifier.getElement().getFirstChildElement().getStyle().setWidth(200, Unit.PX); } But this is what the notificationMole.show() should be doing??? Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Which package to keep custom generator

2010-11-15 Thread Nirmal
/ And use as: MyDataInterface InstData = GWT.create(MyDataConfig01.class); MyDataConfig01 extends MyDataInterface { //Makes use of annotations to markup configurations } Regards, Nirmal On Nov 12, 8:28 pm, Thomas Broyer t.bro...@gmail.com wrote: On 12 nov, 08:27, hezjing hezj...@gmail.com wrote

Re: UiBinding at run time

2010-11-15 Thread Nirmal
Your demo is quite impressive... Looking forward to you publishing your source... Regards, Nirmal On Nov 15, 3:45 am, TedM tedkar...@msn.com wrote: So this is a common problem.  Cool. Did you try the demo?  What did you think? I personally think this idea would be a great addition to GWT

Re: GWT Modules

2010-11-10 Thread Nirmal
In Eclipse, goto your project Properties; Select Google - Web Toolkit You can manage the applicable EntryPoint classes for your project from here. Regards, Nirmal On Nov 9, 2:18 am, John Gentilin gent...@gmail.com wrote: I found my problem, my RemoteCommandProxy class which is used

Re: Widget libraries that work with uiBinder/GWT 2.0

2010-09-21 Thread Nirmal
GWT Mosaic On Sep 19, 5:57 am, RichardY richardy@gmail.com wrote: Do any exist?  From what I know, SmartGWT and Ext-GWT are still incompatible with uiBinder.  It'd be good to know if any other libraries are. -- You received this message because you are subscribed to the Google Groups

[incubator] Adding GlassPanel to arbitary Widgets

2010-08-06 Thread Nirmal
I need to show a faded background over my widget[a DisclosurePanel] when an error message pops up. The GlassPanel from the Incubator can only be added to AbsolutePanels. Anyway to add GlassPanel over arbitary Widgets (specifically DisclosurePanel)?? Regards, Nirmal -- You received

Re: Sorting in flex table

2010-07-28 Thread Nirmal
You could use ScrollTable from the GWT Incubator. http://code.google.com/p/google-web-toolkit-incubator/wiki/ScrollTable On Jul 28, 9:57 pm, lineman78 linema...@gmail.com wrote: I have extended this for my solution: http://sites.google.com/site/psthapar/simplesortabletable On Jul 28, 3:37 

Re: Caution: SmartGwt loadup size is big

2010-07-22 Thread Nirmal
Any experiences on performance/download size with GWT Mosaic?? Regards, Nirmal On Jul 22, 9:15 am, Shawn Brown big.coffee.lo...@gmail.com wrote: Is GXT any different in this aspect? Does it support code-splitting? (Unless it is only an alias of one of those you mentioned.) Yes it does

Best Validation Framework

2010-07-22 Thread Nirmal
should have specific or same values) 3) Conditional validation (if value in field1 is x then value in field2 should be y) I have come across the following options: 1) GWT Validation (http://code.google.com/p/gwt-validation/) 2) GWT-VL (http://gwt-vl.sourceforge.net/) Regards, Nirmal -- You received

Re: DockLayoutPanel MVP and events

2010-07-15 Thread Nirmal
Thanks Thomas, your explanation puts the new Activity/Place into perspective. I have a question; how does the PlaceChange Event gets fired?? Regards, Nirmal On Jul 14, 8:07 pm, Thomas Broyer t.bro...@gmail.com wrote: On 8 juil, 10:39, xworker blomqvist.andr...@gmail.com wrote: Hi Very

HowTo maintain a dynamic list of widgets to be shown on page

2010-07-07 Thread Nirmal
) The applicable widget list should be maintained dynamically. So that the list of widgets to be shown for given set of URL parameters can be altered without having to redeploy the application. Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web

Re: GXT Button Id

2010-06-30 Thread Nirmal
With selenium; you could use CSS locator css=button:contains(('Send') Regards, Nirmal On Jun 29, 9:09 pm, Paul Grenyer paul.gren...@gmail.com wrote: Hi Just curious, are you testing your GUI with Selenium ? If yes, does it work with GWT ? We're using something called Twist which is based

Re: how to make javascripts,static images and css cacheable...

2010-06-29 Thread Nirmal
Hi Aditya, This article gives you the approaches for improving performance of GWT Apps: http://www.infoq.com/articles/gwt-high-ajax Regards, Nirmal On Jun 29, 5:25 pm, Aditya 007aditya.b...@gmail.com wrote: hello, I m using GWT on client side which includes lots of code and lots

ImageBundles and UnitTests

2010-06-21 Thread Nirmal
in future? Regards, Nirmal -- 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

GWT-RPC vs HTTP Call - which is better??

2010-06-01 Thread Nirmal
in performance improvement. I would like to know about pros/cons of each... Also any suggestions on tools to measure performance of Async calls... Regards, Nirmal -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Using Multiple GWT versions simultaneously

2009-08-19 Thread Nirmal
for the new modules? Are there any other approaches I could use to begin GWT1.7 for my new code without having to worry about my old code (on GWT1.4)? Regards, Nirmal --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups