GWT 2.3 and roadmap

2011-04-05 Thread Hasan Turksoy
Hi, As already known, 2.3-Beta is out. Does anyone know when the 2.3 will be released? btw; i couldn't find a global roadmap page. anyone know of a link to, or info about, the roadmap? Regards, Hasan. -- You received this message because you are subscribed to the Google Groups Google Web

Re: GWT-RPC-MAIL

2010-01-21 Thread Hasan Turksoy
you can use this[1] code... server side mail service from one of my applications. [1] http://code.google.com/p/apiks2/source/browse/trunk/src/edu/hacettepe/bote/server/service/MailServiceImpl.java Hasan http://www.jroller.com/hasant On Jan 20, 9:38 pm, Florentine3D artem.boro...@gmail.com

Re: Building a Calendar Widget like Google Calendar with GWT advisable?

2010-01-21 Thread Hasan Turksoy
i don't know much about it but there is a component library including calendar here: http://code.google.com/p/ftr-gwt-library/ you can see the demo from here: http://www.future-earth.eu/gwt/calendar/MainDemoApp.html hope it helps, Hasan... On Jan 21, 2:24 pm, mstu...@googlemail.com

Re: Timer in GWT?

2009-12-14 Thread Hasan Turksoy
you should use import com.google.gwt.user.client.Timer;... see StockWatcher tutorial for a sample : http://code.google.com/webtoolkit/doc/latest/tutorial/codeclient.html Hasan On Dec 14, 1:21 pm, Dennis Madsen den...@demaweb.dk wrote: I'm trying to have a Java Timer in my EntryPoint:        

Re: Session Management

2009-08-31 Thread Hasan Turksoy
my suggestion for session management: http://developerlife.com/tutorials/?p=230 Hasan On Mon, Aug 31, 2009 at 11:23 AM, tolga ozdemir tka...@gmail.com wrote: Hi folks! I am looking for a good solution for session management in GWT web applications. Do you have any idea? or do you suggest a

Re: prerequisities of GWT to develop JPA

2009-08-12 Thread Hasan Turksoy
my code is a simplest form of JPA-GWT integration... it is a demo app in a GWT presentation to achieve the fastest startup... don't expect it to apply complex patterns :) BTW, as Rakesh's suggested tutorial states, you can use DTO pattern to play with not-too-complex domain models. In fact, i

Re: prerequisities of GWT to develop JPA

2009-08-11 Thread Hasan Turksoy
Hi Tolga, Below is a simple demo [1] from one of my GWT presentations implementing GWT-JPA integration. It's configured as to connect HSQLDB but you can find a commented configuration to connect to MySQL as well (see [2])... you can check it out and run using GWT Eclipse Plugin - you don't need

Re: How to send Post/Get Method by Using GWT?..

2009-07-09 Thread Hasan Turksoy
use FormPanel... add your widgets into it... then call FormPanel.submit(); method inside onClick method of your button.. Hasan... On Thu, Jul 9, 2009 at 5:09 PM, Leonardo Carreira leonardo.carre...@yahoo.com.sg wrote: Sorry i forgot.. What i mean is.. i want to send POST Method to any

Re: File Upload error 404

2009-07-09 Thread Hasan Turksoy
set the url-pattern as url-pattern /upload_0.2/UploadFileServlet/url-pattern Hasan... On Thu, Jul 9, 2009 at 7:11 PM, ghita ghita.benkir...@gmail.com wrote: Hello, I'm a newbie to gwt, I have a simple application that I use to upload file to server, but keeps giving the following error. I

Re: A native GWT chart library?

2009-04-22 Thread Hasan Turksoy
Hi, Tatami http://code.google.com/p/tatami/ project wraps the dojo framework in GWT... it's open source. Regards, Hasan... On Wed, Apr 22, 2009 at 6:38 AM, Ben FS ben.su...@gmail.com wrote: Thanks all for your help. You're welcome! Ben, I looked at the links you gave me, a lot of

Re: [Ask] Simple Form login with GWT

2009-04-09 Thread Hasan Turksoy
this document will give you necessary info: http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ in addition, this project inludes a login implementation which has extra utilities like remember me : http://code.google.com/p/gwt-stuff/ project's login module:

Re: Validation Framework

2009-03-05 Thread Hasan Turksoy
i didn't try it but you can take a look at the gwt-validationhttp://code.google.com/p/gwt-validation/project... Hasan... On Thu, Mar 5, 2009 at 7:37 AM, Pete pete.s...@gmail.com wrote: Has anyone found a simple and still supported validation framework for gwt yet? Cheers Pete

Re: application (with custom shell servlet) is not working at external tomcat

2009-01-30 Thread Hasan Turksoy
to 'edu.hacettepe.bote.apiksApp'. That's the root of the problem. The easiest solution would be to rename your module to something starting with a *lowercase* letter. Or just edit your module xml file... Hope it helps On Jan 15, 9:26 am, Hasan Turksoy hturk...@gmail.com wrote: Hi all, i've

Re: how to listen to ESC key for popup

2009-01-22 Thread Hasan Turksoy
the above lines in my code. On Thu, Jan 15, 2009 at 2:57 PM, Hasan Turksoy hturk...@gmail.com wrote: you can override the PopupPanel#onKeydownPreview method like below; @Override public boolean onKeyDownPreview(char key, int modifiers) { // Use the popup's key preview

application (with custom shell servlet) is not working at external tomcat

2009-01-15 Thread Hasan Turksoy
Hi all, i've implemented a custom servlet (which is extending from GWTShellServlet) only to response my main gwt page requests, otherwise, will call super.doGet or super.doPost. it is like this; /** * Custom servlet which extends GWT's one to make it possible to use other * formats(like JSP,

Re: how to listen to ESC key for popup

2009-01-15 Thread Hasan Turksoy
you can override the PopupPanel#onKeydownPreview method like below; @Override public boolean onKeyDownPreview(char key, int modifiers) { // Use the popup's key preview hooks to close the dialog when either // enter or escape is pressed. switch (key) { case

Re: jsp + javascript code not working. why?

2009-01-02 Thread Hasan Turksoy
to override the gwtshellservlet and make sure that you process the html files as the generated servlets. Not sure if anyone has done it, but it would be a great addition to gwt itself. On Jan 2, 11:07 am, Hasan Turksoy hturk...@gmail.com wrote: Hi all, i want to change my main html page

Re: jsp + javascript code not working. why?

2009-01-02 Thread Hasan Turksoy
sorry for forgotting a point; in addition, i'm reading those request parameters at my GWT EntryPoint class as below; Dictionary params = Dictionary.getDictionary(parameters); String action = params.get(action); String id = params.get(id); Hasan... On Fri, Jan 2, 2009 at 4:18 PM, Hasan Turksoy

Re: How to change the name of the host html page in project

2008-12-29 Thread Hasan Turksoy
this entry may help you... http://java.dzone.com/tips/getting-rid-package-based-gwt- Hasan On Mon, Dec 29, 2008 at 3:23 PM, giannisdag pascoua...@gmail.com wrote: Hi, I can' t figure out the solution to a simple problem. I want to rename my first html page to index.html. I am using eclipse.

reloading pagingscrolltable's listed data

2008-12-11 Thread Hasan Turksoy
of a pagingscrolltable? (since it seems readonly). Thanks in advance, Hasan Turksoy http://www.jroller.com/hasant --~--~-~--~~~---~--~~ 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

what's the caching solution for immutable tablemodels?

2008-12-10 Thread Hasan Turksoy
PagingScrollTableMyType(new MyTableModel(), ...); -- I didn't extend from MutableTableModel since my list will be readonly... (any misusage here?) Thanks, Hasan Turksoy http://www.jroller.com/hasant --~--~-~--~~~---~--~~ You received this message because you