GWT-log 3.1.3 issues GWT 2.6.1 with

2016-01-11 Thread vaibhav gwt
Hi, GWT 2.6.1 Just upgraded to 2.6.1 and ran into the following when trying to build with gwt-log-3.1.3.jar. [java][ERROR] Errors in 'com/allen_sauer/gwt/log/client/util/DOMUtil.java' [java] [ERROR] Line 33: Rebind result

Re: GWT CellTree : DataBinding, Sorting filtering

2012-04-06 Thread vaibhav gwt
) { /// return false; } } How to perform sorting filtering based on MyTreeViewModel ? On Apr 5, 3:25 pm, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, April 5, 2012 12:10:42 PM UTC+2, vaibhav gwt wrote: @ Data_Binding : From server side we

Re: GWT CellTree : DataBinding, Sorting filtering

2012-04-05 Thread vaibhav gwt
, DataBinding On Apr 5, 1:13 pm, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, April 5, 2012 8:54:03 AM UTC+2, vaibhav gwt wrote: I want to  render large tree dynamically so I selected CellTree widget. I also want  to know How CellTree widget supports DataBinding, CellTree, like all Cell widgets

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

2012-03-28 Thread vaibhav gwt
Thanks for reply. How to cancel key events for spaces when in edit mode? On Mar 27, 8:52 pm, Thomas Broyer t.bro...@gmail.com wrote: Answered on SO:http://stackoverflow.com/questions/9891671/gwt-celltable-how-to-avoid... On Tuesday, March 27, 2012 3:55:38 PM UTC+2, vaibhav gwt wrote

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

2011-11-27 Thread vaibhav gwt
Any Idea How to resolve this issue ? On Nov 15, 10:11 pm, vaibhav gwt bhalke.vaib...@gmail.com wrote: I also called updateRowData(startIndexOfPage, recordList); updateRowCount(updatedRecordCount, true); Still same issue :-| On Nov 15, 6:01 pm, vaibhav bhalke bhalke.vaib...@gmail.com wrote

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

2011-11-15 Thread vaibhav gwt
I also called updateRowData(startIndexOfPage, recordList); updateRowCount(updatedRecordCount, true); Still same issue :-| On Nov 15, 6:01 pm, vaibhav bhalke bhalke.vaib...@gmail.com wrote: Hi, I am using celltable -- gwt2.3. I found strange behavior in celltable. My celltable's pagesize is

Re: Last Page too big in SimplePager

2011-11-09 Thread vaibhav gwt
Hi I am using GWT2.3 Celltable I'm using SimplePager and I want to show 11 items(users) per page. 1 empty records + 10 actual records = 11 records per page so PageSize=11 All my data is 36 items. I want to show text in Simple pager such way that Pager should display following values in my pager

Re: how do i add a tooltip to a column header in a celltable ?

2011-11-07 Thread vaibhav gwt
Hi, Following e.g works only for Name of column header i.e. when we move mouse on name of column header then only tool tip appear. CellTable ct; ct.addColumn(col, SafeHtmlUtils.fromSafeConstant(span title='!!!tool tip text goes here!!!'---header text---/span)); We want too tip on entire column

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

2011-11-02 Thread vaibhav gwt
Thanks Ozgur. public void render(com.google.gwt.cell.client.Cell.Context context, String value, SafeHtmlBuilder sb) { if(context.getColumn()==2 context.getIndex()==0 ){ sb.appendHtmlConstant(div

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

2011-09-15 Thread vaibhav gwt
How to determine which button is clicked by user ? Is there any way to find out NEXT,PREV,LAST FIRST button clicked ? On Aug 6, 7:49 pm, Patrick Tucker tucker...@gmail.com wrote: Look at range change. On Aug 5, 6:31 am, vaibhav bhalke bhalke.vaib...@gmail.com wrote: Hi, How to

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

2011-09-02 Thread vaibhav gwt
Thanks for reply In your provided code , you are calling TargetServlet from client. I want to call targetServlet from BasicServiceImpl(GWT Servlet). On Sep 1, 6:41 am, Abduxkur Ablimit sugar...@yahoo.com wrote: you can call a servlet from client side like this (may be you want put these

Re: GWT CELLTABLE How to restore old value in cell if validation fails

2011-08-09 Thread vaibhav gwt
ArrayListEditTextCell(); // clear incorrect values for the whole row for (EditTextCell editCell : editCells) {      editCell.clearViewData(KEY_PROVIDER.getKey(object)); } cellTable.redraw(); Regards, Ioan On Aug 3, 12:25 pm, vaibhav gwt bhalke.vaib...@gmail.com wrote: Thanks Loan

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

2011-08-09 Thread vaibhav gwt
Thanks for your reply. I set fieldUpdaters for each of cell so any changed in cell reflected to dataProviderList :) **.getDataProvider().getList() returns updated ListMyObject On Aug 8, 10:52 am, Ashwin Desikan ashwin.desi...@gmail.com wrote: you have to define fieldUpdaters for each of

Re: GWT CELLTABLE How to restore old value in cell if validation fails

2011-08-03 Thread vaibhav gwt
Thanks Loan :) I can restore old value in specific cell if validation fails. Is it possible that all column values from particular row restore to old value ? || ID || Dept || Code || RNO || RCode || .||ZCode || || 1 || CS || 001 || 3

Re: GWT CELLTABLE Editable value not persisted when user clicked cell twice or thrice

2011-08-03 Thread vaibhav gwt
How to update the value stored in your dataprovider to the new value. ? On Aug 2, 5:27 pm, Ioan Agopian ioan.agop...@gmail.com wrote: Hi, You have to update the value stored in your dataprovider to the new value. If not, when user clicks repeatedly the cell, it will revert to the old