Re: GWT webapp into an IFRAME

2011-02-02 Thread aditya sanas
hi, yeah ofcourse it will work i have implemented it in my projects but you might require to check browser compatibility for frame size and some minor changes but this works for sure. -- Aditya On Wed, Feb 2, 2011 at 9:20 PM, obesga obe...@gmail.com wrote: Hello I've done a GWT app which is

Re: Db Connectivity

2010-12-09 Thread aditya sanas
Hi, The code you write in java gets converted into javascript this is what GWT does so GWT works on client side so there is some restriction on usage of classes and packages that u refer in GWT code just like *java.sql. or java.io* *these packages are not available on client side* So to use these

Re: Facing some problems after switching to GWT 2.1 from GWT 2.0.4

2010-12-03 Thread aditya sanas
hi dominic, I m receiving key press event in all the browser the thing that i have noticed which doesn't work in GWT 2.1 is - *if(event.getCharCode()==KeyCodes.KEY_ENTER){ * the o/p of event.getCharCode() in GWT 2.1 is nothing not even 0 so i cnt compare it with KeyCodes.KEY_ENTER i had

Re: TabPanel tabs size are not same

2010-11-03 Thread aditya sanas
the verticalpanel inside that each tab must have fixed width and height as tab panel doesn't react in expected manner when we set its size in percentage so setSize of tabPanel and make that vertical panel in each tab of same size with fixed width and height. -- Aditya On Tue, Nov 2, 2010 at

Re: communication between two frames

2010-10-19 Thread aditya sanas
? On 18 Okt., 12:25, aditya sanas 007aditya.b...@gmail.com wrote: yeah you are right my each of the module is compilable each is having entryPoint class associated with it but this is how we use to design a GWT module or is it possible to have GWT module without EntryPoint class associated

Re: communication between two frames

2010-10-18 Thread aditya sanas
yes those are from same host in the same window. I have somewhere about 10 modules in my project out of which 1 is main modules which contains a Frame(GWT). and in this frame i m loading other 9 modules in the same window. So i want main window and frame should communicate with each other. that

Re: communication between two frames

2010-10-18 Thread aditya sanas
. On 18 Okt., 11:20, aditya sanas 007aditya.b...@gmail.com wrote: yes those are from same host in the same window. I have somewhere about 10 modules in my project out of which 1 is main modules which contains a Frame(GWT). and in this frame i m loading other 9 modules in the same window

Re: problem with asynchronism

2010-10-15 Thread aditya sanas
One solution that i can suggest for this is keep that button in disable state until user fill up the form fields. and once all compulsory fields got filled properly make that button enable and will have seperate click handlers in that case. -- Aditya On Fri, Oct 15, 2010 at 3:32 PM, pepgrifell

Re: Refresh and back button not working

2010-10-15 Thread aditya sanas
First of all,does ur login page has different module associated with it...? it is always a better GWT programming to have login module and other modules for post login functioning. It should be seperated. And for handelling back of ur browser u will need to maintain history using History class

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread aditya sanas
Yeah its a great opensource tool launched by Google. Fun using it. makes client side's job easier than before. I think this would be a great answer for all those questions which were raised in the past about GWT's future. Google is thinking about GWT and making it more and more easier to use.

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread aditya sanas
at 12:45 PM, aditya sanas 007aditya.b...@gmail.comwrote: Yeah its a great opensource tool launched by Google. Fun using it. makes client side's job easier than before. I think this would be a great answer for all those questions which were raised in the past about GWT's future. Google

Re: how to transmit an image over rpc?

2010-09-08 Thread aditya sanas
Hello, i think u got it right. u can implement it in away as Thad has suggested. u can even implement it for simple img src as it is also hitting an URL so u can have a servlet and can give a src as download?imgID=demoImage and on the server side in the servlet which is serving a request for

Re: Powered by Google web toolkit

2010-09-04 Thread aditya sanas
why not its a opensource technology so go ahead -- Aditya On Sat, Sep 4, 2010 at 12:29 PM, Deepak Singh deepaksingh...@gmail.comwrote: Hi, Can i show 'Powered by google web toolkit' in an application developed by gwt ? Regards Deepak -- You received this message because you are

Re: Applets in GWT/GAE

2010-09-03 Thread aditya sanas
It isnt that difficult The thing u will require to do is just write ur applet make it run in some other environment eg in netbeans and then have a code base of that and include that codebase under ur war folder and u r free to use ur applet into ur code using gwt. its just that simple. -- Aditya

Re: Browser related issue

2010-08-31 Thread aditya sanas
of Chrome try and debug project what exactly happening while loading modules. do you get any error messages while displaying page in chrome? -- Aditya On Tue, Aug 31, 2010 at 11:30 AM, sathya ayyanar sathyaayyanar1...@gmail.com wrote: On Mon, Aug 30, 2010 at 11:10 AM, aditya sanas 007aditya.b

Re: Use ScrollPanel inside the HorizontalPanel

2010-08-30 Thread aditya sanas
adjust the size of horizontal panel and then according to it adjust the size of scrolling panel... -- Aditya On Sat, Aug 28, 2010 at 9:33 AM, udayanga ranasinghe udayanga.u...@gmail.com wrote: Hi All, I try to put Scrollpanel into HorizontalPanel. The content in the scrollpanel is appear

Re: Dynamically changing an image on update

2010-08-30 Thread aditya sanas
http://code.google.com/p/gwtupload/ http://code.google.com/p/gwtupload/this might help you -- Aditya On Sat, Aug 28, 2010 at 12:56 PM, annuk annut...@hotmail.com wrote: hii i m new to GWT. I m developing an add/update screen with image upload in it. While updating a screen if i upload a new

Re: Use ScrollPanel inside the HorizontalPanel

2010-08-30 Thread aditya sanas
, aditya sanas 007aditya.b...@gmail.comwrote: adjust the size of horizontal panel and then according to it adjust the size of scrolling panel... -- Aditya On Sat, Aug 28, 2010 at 9:33 AM, udayanga ranasinghe udayanga.u...@gmail.com wrote: Hi All, I try to put Scrollpanel

Re: Browser related issue

2010-08-29 Thread aditya sanas
which version of IE are you using...? the problem you are facing here is with the styling of your page not the GWT issue so you have to include IE enabled css to counter this problem. -- Aditya On Mon, Aug 30, 2010 at 10:39 AM, sathya ayyanar sathyaayyanar1...@gmail.com wrote: I am using

Re: click event in dialogbox

2010-08-26 Thread aditya sanas
yeah it is possible. you just need to create Anchor(String ) from GWT and register a onclick event for this anchor as Anchor.addClickHandler(); using this you will be able to bind onclick with the link you desired. -- Aditya On Thu, Aug 26, 2010 at 5:19 AM, emilioF tarr...@gmail.com wrote:

Re: how to handle mouseOver event for FlexTable

2010-08-18 Thread aditya sanas
hi, Okay.I understood how i will get notifications about events. will implement this flextable probably by this weekend as there are some other important task in the to do list has come up. will post if got stuck anywhere in the middle. Thank you for ur hints and suggestions -- Aditya On

Re: How to integrate an open source web app into a GWT application

2010-08-18 Thread aditya sanas
of the 2 frames) ...Could you be more explicit in your suggestion please??Sorry for that :( And thank you!!! On 17 ago, 15:30, aditya sanas 007aditya.b...@gmail.com wrote: Hi, Once you have GWT compiled code you can embed it any kind of web application just you will require

Re: GWT serialization

2010-08-17 Thread aditya sanas
Hi The basic requirement for you is to deal with XML file So we have jxl.jar which provides APIs to interact with tags and elements in xml so using these API's that are generally known as XML parsers that is SAX or DOC parsers. so use by using these parsers you will be able to deal with XML

Re: How to integrate an open source web app into a GWT application

2010-08-17 Thread aditya sanas
Hi, Once you have GWT compiled code you can embed it any kind of web application just you will require to is the copy the content from WAR folder which is created in GWT project to the project folder under your web application. So consider if i m using Apache Tomcat then the content from WAR

Re: Clicking HyperLink Twice or more...

2010-08-12 Thread aditya sanas
Hi, check for click handlers that you are registering for that particular link Ideally it should work fine... meanwhile if you are losing that event handler after first click then and then only this problem could be faced. I never faced such kind of situation with the links I used Anchor from

Re: showing all the elements from SuggestOracle in suggestionBox

2010-08-12 Thread aditya sanas
Hello, yes you are right we dont have direct access to SuggestBox Popups. I have already extended SuggestOracle and have overridden method requestSuggestion(request,callback); code for the following as follows : public class StartsWithSuggestOracle extends SuggestOracle { //... some other

Re: Incubator - GWTCanvas problems with image loading

2010-08-10 Thread aditya sanas
use a full URL, that is. ) -Kevin On Aug 9, 5:23 am, aditya sanas 007aditya.b...@gmail.com wrote: do you get any error message while doing this...? probably that might help you to track exactly where it is searching for googlecode.png. -- Aditya On Mon, Aug 9, 2010 at 2:44 PM

Re: Incubator - GWTCanvas problems with image loading

2010-08-09 Thread aditya sanas
do you get any error message while doing this...? probably that might help you to track exactly where it is searching for googlecode.png. -- Aditya On Mon, Aug 9, 2010 at 2:44 PM, kstokes dada...@gmail.com wrote: I'm using Eclipse on Windows. I have added a GWTCanvas to the demo app and

Re: How to integrate an open source web app into a GWT application

2010-08-09 Thread aditya sanas
hello, @anita : plz be specific with your requirement first of all and give some more information that which type of web app that you wished to integrate with GWT it is possible ofcourse but without giving complete information it is hard to explain wht you want... -- Aditya On Mon, Aug 9,

Re: add mouse handlers for document body?

2010-08-09 Thread aditya sanas
if you are having any parent widget in your body element which embeds other widgets then you can override a method onBrowserEvent(Event event){ sinkEvents(eventType); // here you can specify events that you would like to handle } in this way you can receive events that are ignored by the gwt

Re: i18n translations

2010-08-05 Thread aditya sanas
i can help u for marathi and hindi. -- Aditya On Thu, Aug 5, 2010 at 5:40 AM, igor mejia igorme...@gmail.com wrote: if you can i can help you with spanish 2010/8/4 ale aleee...@gmail.com Hi everybody, I'm finishing to develop a web application with GWT + GAE, and I want to publish in

Re: GWT Rocks!

2010-07-30 Thread aditya sanas
In Marathi -- GWT lai bhari... -- Aditya On Fri, Jul 30, 2010 at 2:32 PM, Ignat Alexeyenko ignatalexeye...@gmail.com wrote: Hi. I'm developing a simple project with GWT (2.0.0) and Spring. Project is in early ALPHA stage. There is a login screen that sends request to a server (web

Re: TabPanel within TabPanel styling

2010-07-26 Thread aditya sanas
try to use setSyleName instead addStyleName -- Aditya On Sun, Jul 25, 2010 at 9:00 PM, mobilekid mobilek...@googlemail.comwrote: My app's layout consists of a TapPanel, which holds another TabPanel. I'd like to have the two TabPanels look differently. Following the GWT tutorial on applying

Re: Opening a file

2010-07-21 Thread aditya sanas
I think this must be a server side issue should not be posted here. -- Aditya On Wed, Jul 21, 2010 at 11:08 AM, rajan kochhar rajan_kochhar2...@yahoo.com wrote: I am trying to read an excel file as follows: public class LMSServiceImpl extends RemoteServiceServlet implements LMSService{

Re: file upload set filter

2010-07-20 Thread aditya sanas
how to embed form input type=file name=pic id=pic accept=image/gif, image/jpeg / /form into gwt file upload...? -- Aditya On Wed, Jul 21, 2010 at 2:00 AM, lineman78 linema...@gmail.com wrote: http://www.w3schools.com/TAGS/att_input_accept.asp On Jul 20, 2:01 pm, Paachu binu...@gmail.com

Re: Error: no html file found

2010-07-14 Thread aditya sanas
check for entries in web.xml if it is containing any mapping for the file which is not in existing... -- Aditya On Wed, Jul 14, 2010 at 5:15 PM, Pragya pragya1...@gmail.com wrote: Hi, I am new to GWT and am trying to build a simple RPC application to add two numbers. There is no other error

Re: Unable to get classes from Cobogw

2010-07-07 Thread aditya sanas
Problem solved guys... i had to include following statement in my module inherits name='org.cobogw.gwt.user.User' / -- Aditya On Wed, Jul 7, 2010 at 11:37 AM, Aditya 007aditya.b...@gmail.com wrote: Hello, I m trying a demo application using jar provided by Cobogw I have downloaded

Re: the button and its infoLabel problem...

2010-07-07 Thread aditya sanas
Is that a RPC call for searching...? Please explain what are you doing actually for searching...? -- Aditya On Wed, Jul 7, 2010 at 1:52 PM, Shelley gsun...@gmail.com wrote: hello all: i came across a strange problem which seems quite simple: i have a button and a label on a panel,

Re: How to get the row number of a flex table

2010-07-05 Thread aditya sanas
you can set buttons ID by the method getElement().setId(); you can set Id as row number and as whenever button get clicked you will have to check its id by getElement().getId() which is row number that we had set. -- Aditya On Mon, Jul 5, 2010 at 8:53 AM, Vik vik@gmail.com wrote: Hie

Re: TabPanel - 100% height for client widget?

2010-07-03 Thread aditya sanas
I think for that you will require to set its border explicitly. that will settle this issue. you can add a dummy panel on tab home1 or home2 and set its height but here if you set height using % then it will not work you will have to set height in pixels or any other like em... i hope this will

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

2010-06-30 Thread aditya sanas
@Andre Nirmal : Thank you very much for such valuable solution. I dont have htaccess file as my application is getting deployed on the google appengine so how to send headers along with html is a big question mark in front of me... i have found one solution for this is that

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread aditya sanas
I m having 11-12 modules with having same inherits following files inherits name=com.google.gwt.user.User / inherits name=com.google.gwt.user.theme.standard.Standard/ inherits name='com.googlecode.gchart.GChart'/ these are common and none other than this. and forth one is for entry point.

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread aditya sanas
@prashant : Can you please specify that file name which i should delete and exactly where it is located...? Thanks. -- Aditya On Mon, Jun 28, 2010 at 4:02 PM, Prashant nextprash...@gmail.com wrote: Delete old run configuration file. -- You received this message because you are subscribed

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread aditya sanas
Problem resolved. I deleted files from Run configurations . -- Aditya On Mon, Jun 28, 2010 at 4:08 PM, aditya sanas 007aditya.b...@gmail.comwrote: @prashant : Can you please specify that file name which i should delete and exactly where it is located...? Thanks. -- Aditya On Mon

Re: Button look and feel

2010-06-26 Thread aditya sanas
or you can have your custom style for that button and attach it using setStyleName(stylename); this will solve your problem. -- Aditya On Sat, Jun 26, 2010 at 2:44 AM, Jim Douglas jdoug...@basis.com wrote: Chris -- PushButton is a styled DIV, but Button is a standard HTML button object.

Re: VerticalPanel background-image

2010-06-25 Thread aditya sanas
I can tell you about the background image to the button as you can set it by changing attached style name to your custom one as .mystyle{ background-image:url('imagePath.jpg'); display : block; } and attach this style to ur buttton using setStyleName(mystyle); this will do for

Re: Question about gwt from a newbie.

2010-06-24 Thread aditya sanas
There is one more way to do this is to have notifiers which I have implemented in my application. suppose you have one interface say Step 1 : interface WidgetStateChangedNotifier{ // this will have method as per you requirement... } Step 2 : implement this interface in Widget A as

Re: create table with the server response

2010-06-19 Thread aditya sanas
you can have asynchronous call and on success of this method u can draw up dialogbox in whichever way u want it. -- Aditya On Wed, Jun 16, 2010 at 5:58 AM, Luan luan.malakow...@gmail.com wrote: I would like to create a table with the server response. Example: Sending a name and age to

Re: Problem with file upload

2010-06-16 Thread aditya sanas
try adding a statement upload.setName(your form name); after creation of object for FileUpload. -- Aditya On Wed, Jun 16, 2010 at 1:24 PM, balachandra maddina chandu2...@gmail.comwrote: Hi There, Im trying a file upload using the below code but on my server side no file items are

Re: AsyncCallback - returning values to enclosing block

2010-06-16 Thread aditya sanas
LOL Thomas.[?] That was great example to determine async calls. anyway what you are saying is right. Its a bad design to have a method which returns something and then make async call which changes the state of some variable. -- Aditya On Wed, Jun 16, 2010 at 6:13 PM, Thomas Broyer

Re: FileUpload for Multiple selection

2010-06-15 Thread aditya sanas
! ;) On Sun, Jun 13, 2010 at 6:24 PM, aditya sanas 007aditya.b...@gmail.comwrote: http://code.google.com/p/gwtupload/ http://code.google.com/p/gwtupload/this will help you probably. -- Aditya On Sun, Jun 13, 2010 at 10:35 PM, Bruno Lopes bruno.lourenco.lo...@gmail.com wrote: How to create

Re: FileUpload for Multiple selection

2010-06-13 Thread aditya sanas
http://code.google.com/p/gwtupload/ http://code.google.com/p/gwtupload/this will help you probably. -- Aditya On Sun, Jun 13, 2010 at 10:35 PM, Bruno Lopes bruno.lourenco.lo...@gmail.com wrote: How to create a Multiple file selection for upload using ? -- You received this message because

Re: CAPS Lock 0n/off

2010-06-12 Thread aditya sanas
Hello, You can either register textbox with onkeyuphandler which will give access to each keycode entered by using that if character entered is from A-Z that you can check as A has value 65... In this way you can achieve what you are trying to do and to show a message you can use anything as per

Re: Can't start with GWT

2010-06-12 Thread aditya sanas
If you wish to run your application in debug mode then only you need to have that extra parameter in your URL e.g. http://localhost:/demoapp?gwt=127.1.0.1somthing like this but you want to run application just start the server and enter the url as http://localhost:/ or your

Re: Flashing cells for FlexTable

2010-06-12 Thread aditya sanas
Hi, you can set particular styling for that cell for specific period of time say for 2 seconds and less than that and just remove this styling after that time. as flexttable has method as getFlexCellFormatter().setStyleName(stylename); remove this style after 2 seconds. so user will be

Re: About GWT poject Deployment

2010-05-30 Thread aditya sanas
fake post should be removed immediately. -- Aditya On Sun, May 30, 2010 at 11:12 AM, Saima Waseem saimawaseem2...@gmail.comwrote: Watch New Indian Movies with discounted Price... Visit New Indian Movie.com! http://www.clicknearn.net/3527.html -- You received this message

Re: is one gwt project for one html only?

2010-05-30 Thread aditya sanas
hi, yeah ofcourse it is absolutely possible to have n number of html pages in ur gwt project. if u wish to have a html page with gwt components then u need to add new module otherwise you have simple html pages as we have in web projects. Cheers -- Aditya On Sun, May 30, 2010 at 9:31 AM, cy

Re: deploy gwt project

2010-05-29 Thread aditya sanas
that is good cheers -- Aditya On Sat, May 29, 2010 at 5:08 PM, leslie web...@me.com wrote: *Resolved*. I got it. I just did some additional work on my hosting server, deleted old files, redeployed etc and it's working now. The only oddity is that the background color is showing up

Re: deploy gwt project

2010-05-28 Thread aditya sanas
As far as i understand when we had deploy our application into apache we had copied *content from war not war folder. * and no need to create war file using that command i.e. if ur apps name is 'demoapp' then create 'demoapp' folder inside webapps and put that content frm war inside this folder

Re: file upload without browse button

2010-05-24 Thread aditya sanas
Hi guys, here is the solution which i have found on the gwt groups people who wants change look and feel of their file upload widget here is the ideal solution for those guys. http://code.google.com/p/gwtupload/wiki/GwtUpload_GettingStarted

Re: GWT Compile Issue

2010-05-24 Thread aditya sanas
Please check for is your java code is not importing some unnecessary stuff which might be not supported by GWT. to remove unnecessary imorts you can opt for a short cut key : Ctrl+Shift+O and then try to compile. -- Aditya On Mon, May 24, 2010 at 2:00 PM, Sorinel C

Re: GWT designing

2010-05-24 Thread aditya sanas
hi, you are seemed to little confuse with exactly what you want to do. In GWT which is module base, which loads a single class which override a method onModuleLoad() from entry point and which we specify in the module using entry-point class='com.weshine.intelltest.client.Admin'/

Re: difference between hosted mode and development mode

2010-05-21 Thread aditya sanas
ohk i got it that means whenever i wish to deploy an application in developement mode the extra parameter for gwt plugin eg 'gwt=something' is required and at that time browser is using Java code instead of javascript. and in case of production mode it doesnt refer to java it just refer to the

Re: Fail to open the GWT application when deployed on TomCat

2010-05-19 Thread aditya sanas
Hi, I had faced this problem long ago but wht i did at that time, i was selecting checkbox for GAE and so it wasnt working well in Tomcat but after that i removed GAE from my project recompiled it and put my war folder under Tomcat hierarchy it workd fine so i thnk the problem wht u r facing is

Re: About Date object in GWT

2010-05-17 Thread aditya sanas
Ignore deprecation warning u have only one option on client side i.e. Date() object from java.util so user getYear(),getMonth() etc. methods for getting hrs minutes secs and year -- Aditya On Mon, May 17, 2010 at 12:20 PM, Sabbir leo.sh...@gmail.com wrote: and how about reading the years,

Re: Let users build a user interface in the browser

2010-05-14 Thread aditya sanas
hi, Thats a great idea. all d best -- Aditya On Fri, May 14, 2010 at 2:55 PM, linuxdogm togroe...@googlemail.com wrote: Hello, I already read about the GWT UiBinder which lets developers easy build user interfaces from XML files. What I want is letting the users build user interfaces

Re: New to GWT

2010-05-14 Thread aditya sanas
Hi, There are few GWT tutorials available online some f them are PPTs but currently there is no any book available for gwt so not a great news for novice programmers :( so if you really want to learn GWT you have to practice this tool its the only way that you can learn this. -- Aditya On

Re: log4j:WARN No appenders could be found for logger

2010-05-12 Thread aditya sanas
hi, include tht jar file using java build path and problem will be solved. -- Aditya On Tue, May 11, 2010 at 1:31 PM, fomba collins fomba_coll...@yahoo.comwrote: Hi, I believe this error means that the log4j.properties is not seen in the class path. Please can someone help me