Library for Validation in GWT

2015-05-14 Thread abdullah
I have an application developed using Pure GWT. Throughout the Application I need to do validation like email,phone number,SSN or Date validation.Is there any good third party JS or library available to integrate with GWT? -- You received this message because you are subscribed to the Google Gr

How to Apply Styling to particular Cell table Row ?

2015-04-06 Thread Abdullah
I Would like to apply background color to particular cell table row element based on some condition, I found one API method *getRowElement(rowNo).getStyle().setBackgroundColor* * public void setRowStyleCell(final int rowNo){* *getRowElement(rowNo).getStyle().setBackgroundColor(style)

How to Assign and Use map in JavaScript (JSNI) in GWT?

2015-04-06 Thread Abdullah
Is there any way to assign Map in JavaScript (JSNI) which are passed from Java Code and iterate,see the Below Example *Map Holds key,value Pair:* private Map map;public Map getMapValue(){return map;} *Calling JSNI:* cellTableTemp(getMapValue()); *JSNI Method:* public static native void ce

Re: Injecting JavaScript(JSNI) to Cell Table DOM

2015-04-03 Thread Abdullah
Hi Frank, Thanks for your suggestion.. I added this in Scheduler Scheduler.get().scheduleDeferred(new ScheduledCommand() { @Override public void execute() { initTooltip(); } }); This Works for me.. > can you try: > $wnd.$($doc).ready( > > function(){ > $wnd.jQuery("[rel=tooltipTop]").toolti

Debug GWT application in a remote browser

2015-04-02 Thread abdullah
Hi, How to debug gwt application in remote browser? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To po

Injecting JavaScript(JSNI) to Cell Table DOM

2015-04-01 Thread Abdullah
Hi, In my application i am using GWT Cell Table, for some of the Column Header i want to add tooltip.Column Header is created by using SafeHtml and Injecting JS to cell table header using JSNI. But that time the DOM is not creating and JavaScript is not attaching to the column Header for toolti

Re: insert data into database in testbox

2015-03-28 Thread Abdullah
TextBox txt=new TextBox(); button.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { //method to save the data txt.getValue(); //Get the value from textbox and send it to server to saved in database

Re: Menu like in http://www.gwtproject.org/

2015-03-25 Thread Abdullah
I think this component is available in gwtbootstrap showcase (Tabpanel) see the link https://gwtbootstrap.github.io/#component: Likewise you create your own component (custom Widget) On Wednesday, March 25, 2015 at 2:54:07 AM UTC+5:30, Juan Calderón wrote: > > Hello, > > I would like to do a me

Re: Hide Column in CellTable

2015-03-24 Thread Abdullah
Hi Jens, Thanks for your reply, It is normal CSS only,not cssResource see the below snapshot CSS which are applied to the celltable column is appear on colgroup. Any Clue? Hopefully it is a

Re: Hide Column in CellTable

2015-03-24 Thread Abdullah
e; } Is any other think is missed out here? On Tuesday, March 24, 2015 at 4:13:55 PM UTC+5:30, Abdullah wrote: > > Hi, > How to hide the columns in gwt Cell table?I need column for grouping > purpose but don't want to show in table.Is there any way to hide..Any clue

Re: Hide Column in CellTable

2015-03-24 Thread Abdullah
; } Is any other is missed out here? On Tuesday, March 24, 2015 at 4:13:55 PM UTC+5:30, Abdullah wrote: > > Hi, > How to hide the columns in gwt Cell table?I need column for grouping > purpose but don't want to show in table.Is there any way to hide..Any clue? > -- Yo

Hide Column in CellTable

2015-03-24 Thread Abdullah
Hi, How to hide the columns in gwt Cell table?I need column for grouping purpose but don't want to show in table.Is there any way to hide..Any clue? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop r

Re: Wrapping JavaScript into GWT CellTable

2015-03-23 Thread Abdullah
function) and I tried with adding Timer > then its working but this is not a good solution with that i cannot > proceed.Any Suggestion. > > On Thursday, March 19, 2015 at 12:14:43 PM UTC+5:30, Abdullah wrote: > >> Use a scheduleFinally command, or call flush() to force immedi

Re: Wrapping JavaScript into GWT CellTable

2015-03-20 Thread Abdullah
UTC+5:30, Abdullah wrote: > > Use a scheduleFinally command, or call flush() to force immediate > rendering: > http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/cellview/client/AbstractCellTable.html#flush() > > > -- You received this message because you are sub

Re: Wrapping JavaScript into GWT CellTable

2015-03-19 Thread Abdullah
Is there any other way to Handle? On Thursday, March 19, 2015 at 12:14:43 PM UTC+5:30, Abdullah wrote: > > Hi, > In GWT Cell Table I am wrapping jquery functionality (like grouping) Using > JSNI. But its throwing JavaScriptObject Exception(function is undefine).I > am calling t

Wrapping JavaScript into GWT CellTable

2015-03-18 Thread Abdullah
Hi, In GWT Cell Table I am wrapping jquery functionality (like grouping) Using JSNI. But its throwing JavaScriptObject Exception(function is undefine).I am calling this JSNI method once after the data is loaded *table.setRowData(loadContactInfo()); //To Load Data* *loadGridData();/

Re: MVP Pattern Without History Mechanism?

2015-03-11 Thread Abdullah
Because of History Mechanism,When Switching from one Screen to other screen i need to pass some data to that Screen that i am unable to achieve using History Mechanism.Will it possible to pass the data?Is there any example code? On Wednesday, March 11, 2015 at 12:56:01 PM UTC+5:30, Abdullah

MVP Pattern Without History Mechanism?

2015-03-11 Thread Abdullah
Hi, Is any Impact Implementing MVP Pattern Without History Mechanism? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@goog

Grouping in celltable?

2015-03-06 Thread Abdullah
Hi, Is there any way how to do grouping in GWT Celltable or Data Grid?Any example code? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit

Main Advantages of using GWT against other technology like [jsp,spring,javascript...]

2014-09-06 Thread abdullah
Hi, I am newbie to GWT and started developing my application using GWT.I would like to know what is the main advantages for going to GWT since we have lot of technology like JSP,Struts,..Can anyone give me suggestion on this? -- You received this message because you are subscribed to the Googl

Re: ListBox vs ValueListBox

2014-09-06 Thread abdullah
ListBox will hold only String values and ValueListBox will accept a set of available values (of any type). I think in GWT we dont have smartGWT combobox Widget. On Wednesday, September 3, 2014 9:33:58 AM UTC+5:30, Mohammed Sameen wrote: > > Hi, > Can anyone Explain me the difference between Lis

Re: GWT dev plugin for Chrome 21.0.1180.60 m not installing

2012-09-07 Thread Abdullah
*Steps on adding extensions from other websites* We recommend you only add extensions from other websites that you trust. In Chrome, you can follow these steps to add the extension: 1. Download the extension file from the website and save it to your computer. 2. Click the wrench icon

should ActivityMapper always return default activity

2011-08-15 Thread Abdullah Shaikh
Hi All, I have 5 activitymappers for all the directions of DockLayoutPanel, and they all return appropriate Activities for DefaultPlace. My query is, I have a menu (hyperlinks) on the West side, whenever user clicks on the hyperlink, a place is activitated, for example, SetContentOnCenterPlace, n

mvp with DockLayoutPanel

2011-08-01 Thread Abdullah Shaikh
Hi All, I have a DockLayoutPanel having activities in all the directions of the DockLayoutPanel, and the DockLayoutPanel itself is a activity. So as the application is started the DockLayoutPanel is dispalyed with all the Activites. I have a button on the Activity on the west side which should d

Re: Remove gwt.codesvr=127.0.0.1:9997 from http://127.0.0.1:8888/MyApp.html?gwt.codesvr=127.0.0.1:9997

2011-01-06 Thread Abdullah Shaikh
When you run your app in development, gwt.codesvr is there for you to be able to debug the app. If you compile and deploy the app gwt.codesvr is not required. - Abdullah On Thu, Jan 6, 2011 at 12:19 PM, Noor wrote: > I am tired of trying to remove gwt.codesvr=127.0.0.1:9997 this from my &g

Re: runtime UI

2010-12-30 Thread Abdullah Shaikh
2010 at 10:30 AM, Chris Conroy wrote: >> >> Ted Malaska has a prototype project which may suit your needs. At this >> time, we're not looking to add something like this to GWT proper. >> >> See: https://groups.google.com/d/topic/google-web-toolkit-contributors/NFAX

runtime UI

2010-12-29 Thread Abdullah Shaikh
? Thanks, Abdullah -- 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...@google

Junk characters in response payload

2010-12-21 Thread Abdullah Shaikh
","Category Type 33","Product Category Id 33","Category Name:34","Category Type 34","Product Category Id 34","Category Name:35","Category Type 35","Product Category Id 35","Category Name:36","Catego

Extending UI Binder

2010-12-06 Thread Abdullah Shaikh
files, I want to integrated GWT with it, so that the user can define the gwt ui, using the same xml files. Any links of extending UI binder or how the GWT compiler works will be helpful ? Thanks, Abdullah -- You received this message because you are subscribed to the Google Groups "Googl

Dynamic inclusion of UI/script

2010-12-02 Thread Abdullah Shaikh
/cons or any way to achieve this ? Thanks, Abdullah -- 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-w

Re: Newbie qn: GWT.xml inherits vs Build path

2010-09-29 Thread Abdullah Shaikh
Yes you are right for the client side part, but in case of server side, you can't add any jar file with the tag, it has to be a gwt module jar file which contains .gwt.xml file. Also the jars that you include is only for the client side nothing to do with the server side. Abdullah On Wed

Re: Newbie qn: GWT.xml inherits vs Build path

2010-09-28 Thread Abdullah Shaikh
Adding jar on the build path helps eclipse for code completion and compile errors, while adding the in .gwt.xml file is for the gwt compiler to know that it needs to include the specified gwt module. Abdullah On Wed, Sep 29, 2010 at 12:17 AM, Will wrote: > Hi, > > Beginner question:

Re: MVP framework: Mvp4g vs gwt-platform

2010-09-20 Thread Abdullah Shaikh
Pierre, Thanks for the article, it was good. I have been using mvp4g for around 4 months, and I loved it. Xplana is cool .. Abdullah On Mon, Sep 20, 2010 at 6:17 PM, Pierre wrote: > I wrote this article to compare Mvp4g & gwt-platform, it will give you > a better idea of the adv

Re: Date Picker component

2010-09-14 Thread Abdullah Shaikh
DateBox needs to be improved to support year navigation. - Abdullah On Tue, Sep 14, 2010 at 3:33 PM, Thomas Broyer wrote: > > > On Sep 13, 5:40 pm, Vik wrote: > > Hie > > > > I was looking for the date picker component and found one as: > http://google-web-tool

Re: Image problem, can't use file:/// URL, ie new Image("file:///c:/blah/blah.png");

2010-09-01 Thread Abdullah Shaikh
Yes its browser security, you need to load the images from the server and not directly from the drive, I dont know what you are trying to do, but this wont work on client side as the user may not have c: drive or the images. - Abdullah On Thu, Sep 2, 2010 at 10:39 AM, Andrew Hughes wrote: >

Re: GWT 2.04 + Eclipse Galileo

2010-08-16 Thread Abdullah Shaikh
Hi kirtcathey, Run it as "Web Application" instead of "GWT Application" - Abdullah On Mon, Aug 16, 2010 at 3:40 AM, kirtcathey wrote: > Tried the new project thing and same result but you lead me in the > right direction. Obviously not in dev mode since it

Re: GWT issue when browser offline

2010-05-11 Thread Abdullah Shaikh
Hey I know that in offline mode the browser doesn't access server, what I was asking is how will the user know about this, by user I mean the end user and not the developer. Anyways I think I will go as per Sripathi explained by having a centralized error handling. - Abdullah On Tue, M

GWT issue when browser offline

2010-05-10 Thread Abdullah Shaikh
y solution ? - Abdullah -- 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...@google

Re: GWT presentation/workshop

2010-04-19 Thread Abdullah Shaikh
Hi Ed, I just saw the entire presentation, thanks, it was really useful. - Abdullah On Mon, Apr 19, 2010 at 3:46 PM, Ed wrote: > Hi All, > > If you really have nothing to do, have a look at this GWT > presentation: > http://www.slideshare.net/edbras/all-about-gwt > I m

DatePicker

2010-04-15 Thread Abdullah Shaikh
in GWT's DatePicker that I am missing ? - Abdullah -- 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 goo

Re: -port keeps disappearing

2010-04-12 Thread Abdullah Shaikh
OK, but is it not required to specify the port no. of my external server ? I am using port 8080. - Abdullah On Mon, Apr 12, 2010 at 9:19 PM, Jason Parekh wrote: > Hi, > > The "-port" argument is for specifying the port of the embedded server. In > your case, you're

Re: -port keeps disappearing

2010-04-12 Thread Abdullah Shaikh
In the "Server" tab, I see a option to run built-in server, and I have the check box unchecked, bcoz I want to run the gwt app in my external server. I have check the checkbox it adds -port 8080 -server. - Abdullah On Mon, Apr 12, 2010 at 6:37 PM, Katharina Probst wrote: > Hi, &g

Re: -port keeps disappearing

2010-04-12 Thread Abdullah Shaikh
-logLevel INFO -war /home/abdullah/projects/myapp_ws/MyApp/war com.app.myapp.MyApp Do I need to set the ${gwt_remote_ui_server_port} or something ? - Abdullah On Mon, Apr 12, 2010 at 4:54 PM, Ian Bambury wrote: > In the Run Configs - Arguments I add -codeServerPort -noserver and -port. >

Re: Irony: GWT Showcase demo does not work with Chrome

2010-04-09 Thread Abdullah Shaikh
It works for me too on Chrome 5.0.342.9 on Ubuntu 9.10 - Abdullah On Thu, Apr 8, 2010 at 8:03 AM, Unconquered wrote: > With the latest Chrome, running on Mac OS X, the Google Web Toolkit > "Showcase of Features" at > > http://gwt.google.com/samples/Showcase/Showcase.

Re: Single Origin Policy ByPass With IE8

2010-04-06 Thread Abdullah Shaikh
Does that mean that I can even call https using JSONP ? - Abdullah On Tue, Apr 6, 2010 at 1:47 AM, lineman78 wrote: > You should switch your project over to use JSONP. I was able to do so > with minimal headaches assuming you can add the capability server > side. I developed a solut

Re: entire website in GWT, yes/no ?

2010-04-03 Thread Abdullah Shaikh
Hi Ian, Are you talking about using Ajaxcrawling ( http://code.google.com/web/ajaxcrawling) or some other way ?. Can you give details on what are you doing for this or any link which will provide details ? - Abdullah On Fri, Apr 2, 2010 at 9:36 PM, Ian Bambury wrote: > Have to disagree w

Re: entire website in GWT, yes/no ?

2010-04-03 Thread Abdullah Shaikh
ould recommend you split your website into two parts along the above > lines. For the website portion, use whatever technology you are familiar > with, make it SEO friendly, and deliver it over http. For the interactive > portion, use GWT. That way, you get best of both worlds. > > --Sr

Re: entire website in GWT, yes/no ?

2010-04-03 Thread Abdullah Shaikh
Hi Kathrin Ajaxcrawling looks good, I will give it a try. Are you using / used it ? if yes, how did you find it ? - Abdullah On Fri, Apr 2, 2010 at 7:29 PM, Katharina Probst wrote: > Hi Abdullah, > > to make your app searchable, you may also want to consider looking

entire website in GWT, yes/no ?

2010-04-02 Thread Abdullah Shaikh
is there any issues with ? also I would need to have multiple gwt applications using this approach for each & every page where I need got user interactivity & UI. Thanks for any help. - Abdullah -- You received this message because you are subscribed to the Google Groups "Googl

Re: How to share data ?

2010-04-01 Thread Abdullah Shaikh
Cool .. I will try this out ... thanks - Abdullah On Thu, Apr 1, 2010 at 12:58 PM, Subhrajyoti Moitra wrote: > In my AppController i have this in bind(). > > this.eventBus.addHandler(LoginEvent.TYPE,new LoginEventHandler() { > > public void onLoginEvent(L

Re: How to share data ?

2010-04-01 Thread Abdullah Shaikh
my controller. Is there anything I am missing ? Thanks Abdullah On Thu, Apr 1, 2010 at 12:11 PM, Subhrajyoti Moitra wrote: > Hello, > > if u are using MVP pattern u must be having a AppController class to > control the application flow and listen to history events (if required). >

How to share data ?

2010-03-31 Thread Abdullah Shaikh
Dictionary, is it ok to use it for this purspose or is there any other way ? Thanks, Abdullah -- 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 unsubs

Re: Newbie question : Problem with GWT RPC when running running through GWT + AppEngine tutorial

2010-03-31 Thread Abdullah Shaikh
I think you are sending an object of type not defined in you rpc file, delete you rpc file so that a new one is created. - Abdullah On Wed, Mar 31, 2010 at 1:58 AM, vijay wrote: > hi, > I am using GWT 2.0.3 version, I am going through the steps mentioned in GWT > tutorial

Re: Disabling click on DecoratedStackPanel

2010-02-23 Thread Abdullah Shaikh
anyone ? On Tue, Feb 23, 2010 at 8:08 PM, Abdullah Shaikh < abdullah.shaik...@gmail.com> wrote: > Hi All, > > I have a DecoratedStackPanel, the stacks of which I want to show > programatically using the showStack method, but I want to disable the user > clicking on the sta

Disabling click on DecoratedStackPanel

2010-02-23 Thread Abdullah Shaikh
Hi All, I have a DecoratedStackPanel, the stacks of which I want to show programatically using the showStack method, but I want to disable the user clicking on the stack to open it, how to disable click ? Thanks, Abdullah -- You received this message because you are subscribed to the Google

Re: Basic question on running a gwt app

2010-02-21 Thread Abdullah Shaikh
Thats because you are running your GWT app in hosted mode, and for this gwt.codesvr parameter is required, to run without this parameter you need to deploy your app. - Abdullah On Sun, Feb 21, 2010 at 7:00 PM, Vik wrote: > Hie > > When i run my GWT app using eclipse it generate

Re: Images in server folder (store and access)

2010-02-12 Thread Abdullah Shaikh
I guess you need to generate the images in war/images - Abdullah On Thu, Feb 11, 2010 at 10:27 PM, K. K. Forest wrote: > To extend on this, when generating an image (I am operating in hosted > mode) it puts it into MyEclipseProject/images, but when running the > service (in hosted

Re: gwt-ckeditor v0.3 release

2010-02-09 Thread Abdullah Shaikh
Hey Damien, I just had a look at the editor, its cool .. - Abdullah On Tue, Feb 9, 2010 at 4:45 PM, Damien Picard wrote: > Thank you :) > > 2010/2/9 Thomas Broyer > > >> >> On Feb 9, 8:57 am, Damien Picard wrote: >> > Hi, >> > >> > I&

Re: Newbee CSS questions

2010-02-05 Thread Abdullah Shaikh
Hey Dave, I dont know if you have copy/pasted the css from your css file or typed it down here. It should be gwt-Label instead of qwt-Label, note the G instead of Q. - Abdullah On Sat, Feb 6, 2010 at 6:59 AM, dhoffer wrote: > So is there a global way to change all font? Or is this done

Re: Help on gwt app initial download...

2010-02-04 Thread Abdullah Shaikh
GWT.runAsync() is the way to go.. I was able to bring down the initial size a lot less compared to not using code splitting. All the presenters/views not required initially, and required on an event, I have put all of them in code splitting. HTH - Abdullah On Thu, Feb 4, 2010 at 5:15 AM

Re: validation in gwt ?

2010-02-04 Thread Abdullah Shaikh
Hi Ric, Yes I think I should go with gwt-vl, you mean gwt-vl right ? or gwt-validation, they both are different, the showcase link that you provided is of gwt-vl. Abdullah On Thu, Feb 4, 2010 at 1:10 PM, Ric66 wrote: > Hi Abdullah, > > AFAIK, validation is scheduled with GWT 2.2

validation in gwt ?

2010-02-02 Thread Abdullah Shaikh
? any links to docs on gwt-incubator validation. Thanks, Abdullah -- 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

Re: GWT Password Transfer

2010-02-02 Thread Abdullah Shaikh
t:443/gwtapp, then it will work, but I will have to forcibly use https for all the further communication, because I cant do XHR to http because of SOP. Regards, Abdullah On Tue, Feb 2, 2010 at 4:18 PM, Lothar Kimmeringer wrote: > Abdullah Shaikh schrieb: > > What about SOP, I mean if yo

Re: GWT Password Transfer

2010-02-02 Thread Abdullah Shaikh
What about SOP, I mean if you use https on the login page then how to proceed to the other pages after login ? I mean after login all the other pages would have to be on https right ? or am I missing something ? - Abdullah On Tue, Feb 2, 2010 at 3:21 PM, Lothar Kimmeringer wrote: > Ahmad Bd

Re: Local events dispatch/handling. Don't wanna go through the EventBus...

2010-01-29 Thread Abdullah Shaikh
wide eventbus ? I don't think this should be done like this. a local EventBus which will be a part of TabPresenter will be good for this case I guess. - Abdullah On Fri, Jan 29, 2010 at 3:00 PM, Thomas Broyer wrote: > > On Jan 29, 8:46 am, Mirco Dotta wrote: > > Hi, > >

Re: Stick a widget on a "just opened" new blank page

2010-01-28 Thread Abdullah Shaikh
urapp/#widgettoshow I am new to gwt, but I guess this should work, if you already have history management in you application. - Abdullah On Thu, Jan 28, 2010 at 4:09 PM, Mirco Dotta wrote: > Hi folks, > > I'm wondering if there exist a way to stick a widget into a new page. > >

Re: GWT support for Grails/Groovy domain objects

2010-01-28 Thread Abdullah Shaikh
> > On 1/28/10 9:14 AM, Abdullah Shaikh wrote: > >> Hi Roger, >> >> Then the only option left is xml, of course if we are not going GWT-RPC >> way. >> >> So what do you think will be better JSON or XML ? >> >> I have created a GWT application, th

Re: GWT support for Grails/Groovy domain objects

2010-01-28 Thread Abdullah Shaikh
hook something in between the service side application & GWT to communicate, so I am looking out if it should be json or xml. - Abdullah On Wed, Jan 27, 2010 at 5:11 PM, Roger Studner wrote: > And to add one thing. > > Using JSON w/ GWT is well.. "awful". > > The

fluid or fixed layout ?

2010-01-19 Thread Abdullah Shaikh
for each and every widget in percentage ? Thanks, Abdullah -- 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

Re: TRying to upload a file

2010-01-18 Thread Abdullah Shaikh
Yes you are correct. GWT has not automated file upload, it just submits the data to the server, where you need to get this data and store the file somewhere, as in any non-GWT project. - Abdullah On Mon, Jan 18, 2010 at 1:16 PM, Ewald Pankratz wrote: > I am a newbie and I am never sure ab

Re: Panel with mouse events

2010-01-16 Thread Abdullah Shaikh
To support mouse events on panels you need to create a subclass of panel and implement mousehandlers. Example for mouse out : class MyPanel extends VerticalPanel implements MouseOutHandler, HasMouseOutHandlers Thanks, Abdullah On Fri, Jan 15, 2010 at 8:20 PM, Viliam Durina wrote: > I nee

Implementing a custom menu

2010-01-15 Thread Abdullah Shaikh
for this type of scenario, but not sure. any ideas ? Thanks, Abdullah -- 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, sen

Re: Loading images from local filesystem.

2010-01-13 Thread Abdullah Shaikh
inary data form.setMethod(FormPanel.METHOD_POST); form.setWidget("your widget which contains FileUpload control"); - Abdullah On Wed, Jan 13, 2010 at 5:14 PM, Juan M.M.M. wrote: > Yes I understand what u say. I will try to, I don't know how but I > will try it. > >

Re: Loading images from local filesystem.

2010-01-13 Thread Abdullah Shaikh
plication. I guess I got you correctly ? - Abdullah On Wed, Jan 13, 2010 at 3:45 PM, Juan M.M.M. wrote: > Basically, this is the question. What I want to do is simple in C# but > too difficult with JAVA and GWT, I don't know why. > > First I declare a Panel, after this declare de

Re: Open Dialog Box

2010-01-12 Thread Abdullah Shaikh
You need to use FileUpload - Abdullah On Tue, Jan 12, 2010 at 4:27 PM, Juan M.M.M. wrote: > Hi everybody! > > What I want to do is make up a button that will be open an dialog box > to select a file of my hard disk. This is the first time I am using > GWT 2.0 framework but is

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Thanks Philippe, I will try this out. - Abdullah On Fri, Jan 8, 2010 at 6:47 PM, philippe wrote: > If you want a menu which is very personnalized you should uses div > elements with some handlers. > > You must play with dom as html / CSS / Javascript but you can do in > gwt / CS

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
not over the tab bar. - Abdullah On Fri, Jan 8, 2010 at 5:23 PM, mariyan nenchev wrote: > Well, when the mouse is not over the tab bar. > > > On Fri, Jan 8, 2010 at 1:09 PM, Abdullah Shaikh < > abdullah.shaik...@gmail.com> wrote: > >> And when should I hid

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
And when should I hide the menu ? also should I use PopupPanel or DialogBox for menu ? I will try out with TabPanel, will update my findings. Thanks - Abdullah On Fri, Jan 8, 2010 at 4:10 PM, mariyan nenchev wrote: > > Well it's actually very simple. > Create one TabPanel and

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Finally got this link, http://www.salesforce.com/demos/, when you go to Products or Services menu, there is a popup displayed with 2 columns. I wanted the same way. Any idea on how to achieve this ? - Abdullah On Fri, Jan 8, 2010 at 3:01 PM, Abdullah Shaikh wrote: > Sorry I should have gi

Re: help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
Sorry I should have given some other example site, but I couldn't find any. Actually I want the menu drop down to be in 2 columns or may be 3 ? I will try to find an example online. - Abdullah On Fri, Jan 8, 2010 at 2:43 PM, Olivier wrote: > Hi, > > Why don't you use t

help in creating menu using popuppanel or dialogbox

2010-01-08 Thread Abdullah Shaikh
popupanel so that I can add a mouseout handler and hide the PopupPanel, but again this will also not solve the issue as the user might not take his cursor over PopupPanel. Any Ideas ? - Abdullah -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Re: Any thing in GWT for Gridlayout???

2010-01-07 Thread Abdullah Shaikh
In my case I have used FlexTable, I guess GridTable will also do. You can set the controls using setWidget(row, column, widget) - Abdullah On Fri, Jan 8, 2010 at 11:09 AM, Abhay Singh wrote: > Hi > > Do we have any thing in GWT to implement GridLayout > I need to designs a

Re: Contacts example download

2010-01-07 Thread Abdullah Shaikh
Yes, here http://code.google.com/webtoolkit/doc/latest/tutorial/projects/Contacts.zip - Abdullah On Fri, Jan 8, 2010 at 6:54 AM, Jimmy Su wrote: > In the article "Large scale application development and MVP", it uses > the Contacts example throughout the tutorial. I wo

Re: GWT Session management regardless of Servlet Container

2010-01-04 Thread Abdullah Shaikh
Regarding the 2 option for XSRF, passing a custom, static http header in every RPC request, can we pass the jsessionid itself as http header. - Abdullah On Fri, Jan 1, 2010 at 3:55 AM, Sripathi Krishnan < sripathi.krish...@gmail.com> wrote: > There are two use cases generally need to

Re: Is there a free-standart GWT Designer or which tools do you use to design User Interface ?

2009-12-31 Thread Abdullah Shaikh
There plugin available for NetBeans & IntelliJ, I haven't used them though - Abdullah On Thu, Dec 31, 2009 at 6:10 PM, Murat Doner wrote: > > VistaFei is another alternative but not so usable. > > On Thu, Dec 31, 2009 at 10:44 AM, Murat Doner wrote: > >> We

Re: Dock Panel

2009-12-31 Thread Abdullah Shaikh
quot;) dockPanel.add(westPanel, DockPanel.WEST); VerticalPanel eastPanel = new VerticalPanel(); eastPanel.setStyleName("EAST_STYLE") dockPanel.add(eastPanel, DockPanel.EAST); ofcourse you can use any panel type you want other then VerticalPanel. - Abdullah On Thu, Dec 31, 2009 at

Re: Dock Panel

2009-12-31 Thread Abdullah Shaikh
I am not sure, but I guess you need to set the style on the Panel which you will be adding to the DockPanel. - Abdullah On Thu, Dec 31, 2009 at 12:49 PM, muhannad nasser wrote: > Dear All; > > i want to add a style on a DockPanel cell, such ass the north area, or the > we

Re: AppController or PlaceManager

2009-12-30 Thread Abdullah Shaikh
PlaceManager does the same thing as in onValueChange of AppController ? - Abdullah On Wed, Dec 30, 2009 at 12:27 AM, Prashant Hegde wrote: > I had the pleasure of reading the article as well. > > Although I was slightly disappointed that the source code was not shared > fully in the

Re: AppController or PlaceManager

2009-12-29 Thread Abdullah Shaikh
Anyone ? On Tue, Dec 29, 2009 at 2:45 PM, Abdullah Shaikh < abdullah.shaik...@gmail.com> wrote: > I went through > http://code.google.com/webtoolkit/doc/latest/tutorial/mvp-architecture.html, > I am confused, does AppController as mentioned in the article does the same > that

AppController or PlaceManager

2009-12-29 Thread Abdullah Shaikh
o GWT, I understood the gwt-presenter, but I couldn't get how the AppController as described in the above link works ? Thanks, Abdullah -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai

Help with MVP

2009-12-25 Thread Abdullah Shaikh
= new Button("Login"); } public HasClickHandlers getLogin() { return login; } public Widget asWidget() { return this; } } Let me know where am I going wrong ? I think AppPresenter / AppView to be the display of the initial application page using other Pre

Re: RequestBuilder with xml request and xml response

2009-12-23 Thread Abdullah Shaikh
@Override public void onError(Request request, Throwable exception) { //handle error } } ); This should help. - Abdullah On Thu, Dec 24, 2009 at 10:32 AM, Malli wrote: > Hi, > some body help

Re: Need some suggestions

2009-12-21 Thread Abdullah Shaikh
bout GIN, MVP but from the discussion it seems there are some issues. http://stackoverflow.com/questions/1234389/whats-your-recommendation-for-architecting-gwt-applications-mvc-mvp-or-custom - Abdullah On Sun, Dec 20, 2009 at 12:41 PM, Sripathi Krishnan < sripathi.krish...@gmail.com> wrot

Need some suggestions

2009-12-19 Thread Abdullah Shaikh
using GWT RPC but instead I will be communicating using xml, so how will this perform, keeping xml parsing in mind ? I choose xml because maybe some parts will be developed using Flex so to have consistent code which can later work with any technology. Thanks for the help Regards, Abdullah --

Re: Year navigation in DateBox

2009-12-15 Thread Abdullah Shaikh
or instead of the DefaultMonthSelector > > didn't try it but i think it should do. > > Good luck ! > > > On Dec 14, 12:27 pm, Abdullah Shaikh > wrote: > > Hi All, > > > > I am using DateBox control, its ok for date navigation, but for year > > na

Year navigation in DateBox

2009-12-14 Thread Abdullah Shaikh
WT. I am looking for something like this http://www.softcomplex.com/products/tigra_calendar/ Thanks, Abdullah -- 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...@googl

Re: Upgradeing to 2.0, web.xml file problem

2009-12-10 Thread Abdullah Shaikh
Hey this piyush sharma is a spam and messages from this id are over all the ML messages. Can someone block this id ? - Abdullah On Thu, Dec 10, 2009 at 5:00 PM, darkflame wrote: > umm...did you mean to say something? > > On Dec 10, 7:05 am, piyush sharma wrote: > > On 12/1

Re: DateBox year navigation

2009-12-08 Thread Abdullah Shaikh
Hi All am I not clear enough or is this option not available in GWT yet. On Mon, Dec 7, 2009 at 5:55 PM, Abdullah Shaikh wrote: > I have a DateBox, the format of which I have set is to set only month & > year, as I don't require date, is there any way or any settings that I

DateBox year navigation

2009-12-07 Thread Abdullah Shaikh
t I have see a calendar control in which when clicked on year it displays the panel with years, replacing the days panel, to navigate faster through the years. Thanks, Abdullah -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post t

Re: Query on Google Web Toolkit (GWT)

2009-12-06 Thread Abdullah Shaikh
from this forum answers that's fine. - Abdullah On Mon, Dec 7, 2009 at 11:34 AM, Nilesh Patwardhan < nileshpatward...@gmail.com> wrote: > Hey Chris, > > http://code.google.com/p/gwt-ext/ > *Status Update* This project is no longer under active development and has > been

  1   2   >