Re: GWT-log 3.1.3 issues GWT 2.6.1 with

2016-01-11 Thread vaibhav bhalke
Error resolved with following combination GWT 2.6.1 or newer gwt-log-3.3.2.jar On Mon, Jan 11, 2016 at 6:01 PM, Paul Robinson wrote: > > On 11 Jan 2016 11:13 a.m., "vaibhav gwt" wrote: > > Just

How to add/remove dynamic column to/from celltable.

2013-04-24 Thread vaibhav bhalke
Hi, I am gwt celltable. My columns are configurable through other module. used AsyncDataProvider to update row data. Is there any way in celltable to updateColumnData only? so that newly added data get inserted into celltable or to remove column from celltable. Assume, 10 column in table. User

How to create dependent dropndown/selection cell In GWT celltable 2.3?

2013-01-29 Thread vaibhav bhalke
http://stackoverflow.com/q/14534616/297907 -- Best Regards, Vaibhav -- 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...@google

How to call gwt api from jquery/javascript ?

2013-01-29 Thread vaibhav bhalke
Hi All, I want to know is there any way to call gwt's api from javascript/jquery. -- Best Regards, Vaibhav -- 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 t

GWT :: How to Commit & Cancel GWT's EditText cell using javascript/jquery?

2013-01-26 Thread vaibhav bhalke
I am using GWT2.3 celltable GWT :: How to Commit & Cancel GWT's EditText cell using javascript/jquery ? Following is cancel() of EdittextCell-GWT Any alternative to do this in javascript ? /** * Commit the current value. * * @param context the context of the cell * @param parent

GWT CellTable : How to override OnBrowseEvent for Custom EditTextCell?

2012-05-17 Thread vaibhav bhalke
I am using GWT CellTable 2.1. How to override OnBrowseEvent for Custom EditTextCell (NumberCell,CustomStringCell etc..)? In my CustomStringCell, I want to avoid space only at Initial position(1st index) How to do? I tried following way @Override public void onBrowserEvent(Context con

GWT CellTree : DataBinding, Sorting & filtering

2012-04-04 Thread vaibhav bhalke
Hi, I want to render large tree dynamically so I selected CellTree widget. I also want to know How CellTree widget supports DataBinding, Sorting & filtering etc.. ? -- Best Regards, Vaibhav -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

Any widget in GWT to filter node in Tree widget

2012-04-03 Thread vaibhav bhalke
Hi, Is there any widget in GWT to filter node in Tree widget? -- Best Regards, Vaibhav -- 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-toolkit@googlegroup

GWT Celltable : How to avoid entering particular value in editTextCell- column- Celltable?

2012-03-27 Thread vaibhav bhalke
Hi, I am using GWT2.3. How to avoid entering particular value in editTextCell- column- Celltable? Is there any event in editTextCell? Validation while entering values in cells of celltable In case of String :Dont enter spaces in cell Integer : Dont use characters + avoiding spaces in cell i.e

GWT SimplePager LastButton issue

2012-03-22 Thread vaibhav bhalke
Hi, I am facing problem with lastButton of SimplePager. I have 3 pages in celltable, Page size=11 (1 empty record + 10 records(with value)), Total record=26. I used CustomerPager by extending SimplePager. In 1st attempt 1+10 records display in celltable : Next & Last page button is enabled (Firs

GWT- Quirks mode :Is there any way to force Document mode to "Quirks" in GWT ?

2012-01-19 Thread vaibhav bhalke
any way to force Document mode to "Quirks" in GWT ? -- Best Regards, Vaibhav Bhalke <http://about.me/vaibhavbhalke> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to goo

Gwt SimplePager : How to change pager buttons images?

2011-12-13 Thread vaibhav bhalke
Hi, How to replace pager buttons images like first:last_PageEnabled/disabled , next:prev_PageEnabled/disabled? I am using GWT2.3 n simplePager. How to override existing images of pager buttons with our images? Thanks in advance. -- You received this message because you are subscribed to the Goo

GWT SimplePager : How to provide GoTo Functionality in pager?

2011-12-11 Thread vaibhav bhalke
Hi, I am usign GWT2.3. We developed CustomPager by overriding SimplePager. We override createText() method such a way that we are showing string like "Page 1 of 4" using following code > public String createText() { > if(searchRecordCount%pageSizeForText == 0){ > totalPag

GWT EditTextCell : How to increase editable TextBox width in EditTextCell?

2011-12-11 Thread vaibhav bhalke
Hi, I am using GWT2.3 in my project. I want to increase editableTextBox width when user click on editableTextCell. Problem is My Column width is 200 Px. when user clicks on editableTextCell then that TextBox is width(around 125px) in EditableTextCell is less as compare to column width. I added Ed

How to access javabean in gwt module( client + server) from outside gwt module?

2011-12-07 Thread vaibhav bhalke
I want to access javabean(VO) in gwt module(client & server ) from outside module ( non-gwt module). class that we want to re-use, is general business class and not belonging to any GWT module How to access, used that javabean in gwt module? Any solution for this case ? Thanks in advance. --

GWT CELLTABLE : How to unchecked header check-box on pagination ?

2011-11-16 Thread vaibhav bhalke
@Override > public Boolean getValue(Record object) { > // Did some operation here > } > CheckboxCell cell = new CheckboxCell(); > CustomHeaderCheckBox customHeaderCheckBox = new CustomHeaderCheckBox(cell); > customHeaderCheckBox.setChangeValue(new HeaderCheckBoxValueCh

Gwt celltable : Unexpected behavior : when record deleted from page then other record repeated in page.

2011-11-15 Thread vaibhav bhalke
Hi, I am using celltable -- gwt2.3. I found strange behavior in celltable. My celltable's pagesize is 10. Total 13 records. When Page contains 3 records A 1 11 B 2 22 C 3 33 When I deleted any one record e.g. A record then that record is deleted from page but other record repeated / sets in page.

GWT Celltable : Custom DatePickerCell

2011-11-05 Thread vaibhav bhalke
Hi, I want to use customize datepicker cell Current GWT2.3 Datepicker cell is as follows [image: gwt_datepicker_cell.PNG] I am using GWT 2.3. DatePicker cell showing Navigation only for month not for year also there is no seprate navigation for month and Year. Is there any way to create Custom

GWT celltable How to create selectioncell in edittextcell ?

2011-11-04 Thread vaibhav bhalke
Hi, I want to create editable cell with datatype boolean. I don't want to use selectioncell for boolean data type My testBooleanColumn column's cell contains string with value true,false.. when I will click on cell present in testBooleanColumn then that cell should be editable and In th

GWT CELLTABLE: How to set column's cell value depending on changes in other column ?

2011-10-31 Thread vaibhav bhalke
Hi, I have 3 column + 10 rows in celltable. value1Column, value2Column, RecordState 1 | 2 | * 2 | 4 | - : : 3 | 5 | - 6 | 5 | * Whenever user changes values either value1 or value2 then immediately cell related to that record set to * in RecordState column. How to set * in RecordState column o

GWT Celltable How to make Non-Editable cell in Editable column

2011-10-31 Thread vaibhav bhalke
Hi, I added EditTextCell(stringTestEditTextCell) to Column(testColumn). EditTextCell editTextCell = new EditTextCell(); Column stringColumn = new Column( editTextCell) { @Override public String getValue(Record object) { return objec

GWT Celltable: How to apply mouse enter event in celltable's cell

2011-10-31 Thread vaibhav bhalke
Hi, How to apply mouse enter event in celltables cell. If Mouse enter in cell for record edition then I want to set string to Record State column that record is edited "Record modify" On Mouse enter I will check cellvalaue is not equal old value then I will set "Record modify" value to related rec

GWT Dialogbox Draggable icon not comes when mouse over to caption of dialogbox

2011-10-19 Thread vaibhav bhalke
GWT Dialogbox not showing draggable icon when mouse over to caption of dialogbox. I follow http://examples.roughian.com/index.htm#Widgets~DialogBox Example provided in above link. works fine + draggable icon comes when mouse over to caption of dialog-box dialog box's Drag gable property is worki

GWT CELLTABLE : How to add column in celltable which is combination of non-editable text + hyperlink

2011-10-13 Thread vaibhav bhalke
add Column which is combination of non-editable text(valid) + hyperlink (invalid)if any. -- Best Regards, Vaibhav Bhalke <http://about.me/vaibhavbhalke> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group

GWT CELLTABLE : How to set descending icon to column on celltable header ?

2011-10-04 Thread vaibhav bhalke
Hi all, How to set column in descending i.e DESC icon on top header ? On celltable loading.. I want to set sorting order to column i.e. previously sorted column/sorting order by user (In last login , before logout) I tried following way table.getColumnSortList().push(testColumn); i.e setting co

GWT CELLTABLE CELL event

2011-09-29 Thread vaibhav bhalke
Hello all, - How to implement KeyPress event for a cell within a Celltable? - After editing cell i.e "" --> "text_added" How to clear edited value "text_added" from that cell on any event ? I tried stringColumn.getFieldUpdater().update(index, object, ""); Not working :|

GWT CELLTABLE column's cell value updation

2011-09-05 Thread vaibhav bhalke
I am using gwt2.3 My celltable contains 10 rows, 5 columns. All cells in 1st row is empty,editable. Whenever user clicks on column cell lets say 1st row X 3rd column then user will edit that cell say "xyz". after that when user click on button: "update column cell" then xyz value set to all cell

GWT : How to call SERVLET FROM GWT_SERVLET and How to return value from target servlet to source servlet?

2011-08-31 Thread vaibhav bhalke
I have 2 servlets. One In GWT module i.e *BasicServiceImpl* extends RemoteServiceServlet implements BasicMassUpdateService and other servlet *TargetServlet* extends HttpServlet in TargetServlet in diff module/package com.comp.server.servlets I am using GWT-RPC in my gwt module. I want to write o

GWT-RPC Unable to access servlet in web application

2011-08-26 Thread vaibhav bhalke
public void onFailure(Throwable caught) { Window.alert("On Failure :"+caught); // No resource available :-| } }); Any help or guidance in this matter would be appreciated -- Best Reg

GWT CELLTABLE :How to avoid RPC call in AsycDataProvider when I click on prev button.

2011-08-16 Thread vaibhav bhalke
) Same way How we can handle in AsyncDataProvider ? -- Best Regards, Vaibhav Bhalke <http://about.me/vaibhavbhalke> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to go

GWT CELLTABLE : How to add empty row in celltable with different celltype

2011-08-11 Thread vaibhav bhalke
row then all values in same column should be edited immediately. Any help or guidance in this matter would be appreciated -- Best Regards, Vaibhav Bhalke <http://about.me/vaibhavbhalke> -- You received this message because you are subscribed to the Google Groups "Google Web Too

GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread vaibhav bhalke
help or guidance in this matter would be appreciated. -- Best Regards, Vaibhav Bhalke <http://about.me/vaibhavbhalke> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to go

GWT CELLTABLE :How to handle event on checkbox header like gmail Inbox?.

2011-08-07 Thread vaibhav bhalke
. createCheckboxManager()); -- Best Regards, Vaibhav Bhalke About me : http://about.me/vaibhavbhalke <http://about.me/vaibhavbhalke> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to go

GWT CELLTABLE:How to get Updated DataProviderList after changes in any cell value ?

2011-08-07 Thread vaibhav bhalke
value in cell then How to get my updated *RecordList / DataProviderList* . I want updated RecordList / DataProviderList because I want to generate xml from updated List. -- Best Regards, Vaibhav Bhalke About me : http://about.me/vaibhavbhalke <http://about.me/vaibhavbhalke> -- You receive

GWT CELLTABLE SimplePager : Event handling on first,last,next,prev button present in SimplePager?

2011-08-05 Thread vaibhav bhalke
); Whenever I will click next button then I will made server request for getting next 1OO records same way for every button.. How to Handle event on buttons present on SimplePager ? Any help or guidance in this matter would be appreciated -- Best Regards, Vaibhav Bhalke <http://about

GWT CELLTABLE : How to handle event on pager button

2011-08-04 Thread vaibhav bhalke
Hi How to handle event on pager button. first,last,next,prev page ? Right now I want to handle event on last page i.e when user click last page button then next 100 record need to added in data provider (update/refresh ) -- Best Regards, Vaibhav Bhalke <http://about.me/vaibhavbha

GWT CELLTABLE : How to add empty row in celltable with different celltype

2011-08-03 Thread vaibhav bhalke
edited immediately. Any help or guidance in this matter would be appreciated -- Best Regards, Vaibhav Bhalke <http://about.me/vaibhavbhalke> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send

GWT CELLTABLE How to restore old value in EditableTextCell?

2011-08-01 Thread vaibhav bhalke
Hi, I want to used editableNumbercell like intger,decimal etc.. But there is no such gwt widget present so I am using editable text cell and using validation for numbers when user update value in cell. Problem is that if validation fail then editabletext cell value restored to old value. intgerC

Script (nocache.js) not loads GWT compiled module in IE8

2011-06-08 Thread vaibhav bhalke
Hello all, Script (nocache.js) loads into Mozila FF but not loads into IE8. I cleared cache for IE8 still no loading of script. Any solution ? gwt.nocache.js is generated in gwt folder gwt/gwt.nocache.js src path is correctly added. Browser shows just GWT heading in html page. and message on too