KeyPress handler does not working for chrome browser

2012-11-06 Thread lucky
Hi, i have added keypress handler for get textbox. its working for Mozilla browser but its not working for chrome browser. could any one help me on this. Thanks, Lucky -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Re: Clear Cell table data

2012-08-28 Thread lucky
Can any one help me on this? On Monday, 11 June 2012 21:13:45 UTC+5:30, lucky wrote: > > How to clear celltable data when i click on the Button 'Clear'? > > i tried with cellTable.setRowCount(0); > and > private void clearTable() { > if (dataPro

Re: How to add dynamic colums to celltable

2012-08-24 Thread lucky
if possible could you please provide me the brief sample example (like in the showcase). Thanks On Fri, Aug 24, 2012 at 6:40 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > See > http://stackoverflow.com/questions/7172262/create-gwt-celltable-dynamically > >

How to add dynamic colums to celltable

2012-08-24 Thread lucky
Hi, i have a requirement that i need to add dynamic columns to cell table. i Google it but didn't find proper solution. Please provide me some sample to add dynamic columns to cell table Thanks in advance -- You received this message because you are subscribed to the Google Groups "Google

Re: regular expression validator

2012-07-25 Thread lucky
yes. I am using the below code to validate email format: validator.addValidators(email, new EmailValidator(email).addActionForFailure(new StyleAction("validationFailstyle"))); but this is showing me the error for empty email field also. But i want to show this validation only if t

regular expression validator

2012-07-25 Thread lucky
Iam using the RegularExpression validator(validator framework) control to try to validate input. But this is showing me error when that field is empty. I want to validate this field only the value is available. How can i do this? -- You received this message because you are subscribed to the G

Re: sorting celltable data with image

2012-06-21 Thread lucky
Can any one help me on this? On Tue, Jun 19, 2012 at 5:42 PM, lucky wrote: > Hi, > > I have a requirement that i need to sort celltable data with image, and > also when i click on the image i need sort the data again. > Currently i am using the following code: > it will disp

sorting celltable data with image

2012-06-19 Thread lucky
Hi, I have a requirement that i need to sort celltable data with image, and also when i click on the image i need sort the data again. Currently i am using the following code: it will display image but i am not able to sort the data when i click on the image(Like down Arrow and UPArrow) I am us

Re: how to check whether the email or website is real website or email

2012-06-12 Thread lucky
Here i need to check whether this website or email exist or not? -- 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/-/tcoe42e0x4MJ. To post to this

how to check whether the email or website is real website or email

2012-06-12 Thread lucky
could any one provide me the solution to validate whether the given email or website is real or not? -- 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-too

Clear Cell table data

2012-06-11 Thread lucky
How to clear celltable data when i click on the Button 'Clear'? i tried with cellTable.setRowCount(0); and private void clearTable() { if (dataProvider.getDataDisplays() != null && dataProvider.getDataDisplays().isEmpty() == false) { dataProvider.removeDataDisplay(cellTable);

Re: Celltable performance issue

2012-06-04 Thread lucky
Could you please provide me the sample example for this? -- 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/-/ubpiMGBB0FUJ. To post to this group,

Re: Celltable performance issue

2012-06-01 Thread lucky
if i load less amount of data it is working time but if i want to load 3000+ records it is loading but taking time when i search it in the google i found that we can use pushApi but i dont know how to use that could you please tell me can we use this.If so, How can we use this? Thanks On Fri, Jun

Re: Celltable performance issue

2012-06-01 Thread lucky
I am using RequestFactory not a GWT_RPC. On Fri, Jun 1, 2012 at 2:50 PM, Jens wrote: > I would guess you load the 9000+ records from the server using GWT-RPC? If > so, its not CellTable thats slow but its the GWT-RPC deserialization that > occurs when you receive the server response with the 900

Celltable performance issue

2012-05-31 Thread lucky
Hi I am using GWT 2.4 version. And using Celltable with pager and ListDataProvider to display the data. I have large amount of data contains(9000+) records(rows and 10 colums) to display. when I am trying to display these records my application becomes unresponsive. Please let me know how can

SessionHandling in RequestFactory

2012-05-28 Thread lucky
Can somebody show me a simple example about session handling with GWT RequestFactory? -- 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/-/s

Re: Export CellTable data to PDF and Excel Format using UIBinder

2012-05-24 Thread lucky
I am using Uibinder my data is ready in celltable when i click on export i need to export data into PDF or in excel formats. how cani do that which api i have to use here? On Thursday, 24 May 2012 17:39:56 UTC+5:30, lucky wrote: > > Hi, > > can any one tell me how can i export my ce

Export CellTable data to PDF and Excel Format using UIBinder

2012-05-24 Thread lucky
Hi, can any one tell me how can i export my celltable data to pdf and excel format? Thanks in advance -- 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-t

How to add sublist in a list

2012-05-18 Thread lucky
Hi, I am using Uibinder. I have a requirement that i need to add subtype to type Typesubtype FruitsApple, Mango, Bananaetc Flowers Rose,Jasmin.etc how i can achieve this? -- You received this message because you are subscribed to the Google Groups "Google

how to set some default format for textbox

2012-05-17 Thread lucky
Hi, how to set default style to to textfield :xxx-xxx- style suppose for example: zip format should be :xxx(3 digits)-xxx(3 digits)-(4 digits) style Thank you.. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discu

valueproxies

2012-05-15 Thread lucky
could you please clarify me that can't we call two times fire methods in same widget? Because i want to get data from the server to client (for this i have created the value proxy and one requestcontext). and send some user input to server(for this i have created one more value proxy and request

Re: java.lang.IllegalArgumentException: Attempting to edit an EntityProxy previously edited by another RequestContext in gwt

2012-05-14 Thread lucky
new Receiver()(While calling this fire () method i am getting the exception) { } in setSearchCriteraFromDisplay aaaProxy searchproxy = req.create(aaaProxy.class); searchproxy. setState(StateBox.getItemText(0)); On Friday, 4 May 2012 12:53:32 UTC+5:30, lucky wrote: >

Re: java.lang.IllegalArgumentException: Attempting to edit an EntityProxy previously edited by another RequestContext in gwt

2012-05-14 Thread lucky
ver() {}). >  Although it seems like your search method should be returning something if > it is indeed searching on the data inside that proxy because since > ValueProxys aren't persisted that would end up doing nothing for your > client-side. > > > > > > &

java.lang.IllegalArgumentException: Attempting to edit an EntityProxy previously edited by another RequestContext in gwt

2012-05-04 Thread lucky
I´m using GWT RequestFactory and want to transport client-side parameters in a service. The parameters should be created on the client, because they aren´t part of the domain model and won´t be stored in the database. so i have created one valueProxy with getters and setters with paramater values

Problems Setting and Retrieving Cookies with GWT 2.0

2010-01-18 Thread Mr. Lucky
Hello, I'm trying to write some code that will let me manage cookies from with in the GWT that will set, show, and delete cookies. However, I'm unable to create the cookie via gwt on either Firefox 3.5.6 or Opera 10.10 (both on Linux). My code is: public class CookieMonster implements EntryPoin

Problem

2009-10-28 Thread lucky
I want to make a web application as igoogle,m using gwt ext,but don know how to save the current state,when i move the widgets and refresh it ,It again comes to the previous order,kindly help. --~--~-~--~~~---~--~~ You received this message because you are subscrib