BreadCrumb implemention in GWT2.4

2012-07-28 Thread vaibhav jain
Hi, Can any one help how to implement breadcrumb in GWT2.4?Is there any widget to achieve this? 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@googlegrou

how to auto set the width of a widget in VerticalPanel

2012-02-16 Thread vaibhav jain
Hi All, how to auto set the width of a widget in VerticalPanel?? I used: setCellWidth(Mywidget,"100%"); but its not working,i also tried below: setCellWidth(Mywidget, Window.getClientWidth()+""); but its not giving proper result. Regards, VJ -- You received this message because yo

is it necessary to use DataGrid.Resources for changing the datagrid look and feel

2012-02-13 Thread vaibhav jain
HI all, How can we change look and feel of data grid in gwt2.4. I am using like: dataGrid.addStyleName("tableWidget"); and in CSS i have defined : .tableWidget { background: brown; color: black; font-weight: bold; font-size: 14px; } it changes the color of text as black and changi

GWT 2.4 ,how can we change display of SelectionCell at run time.

2012-02-10 Thread vaibhav jain
Hello All, here i m finding the column of datagrid Column col = (Column) dataGrid.getColumn(j); if (col.getCell().getClass().toString().equals("class com.google.gwt.cell.client.SelectionCell")) { Window.alert("SelectionCell");

Re: Getting name of Column in overrided method onColumnSort of ColumnSortEvent.Handler in GWT2.4

2012-02-09 Thread vaibhav jain
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@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com.

Getting name of Column in overrided method onColumnSort of ColumnSortEvent.Handler in GWT2.4

2012-02-08 Thread vaibhav jain
Hello All, I am implementing ColumnSortEvent.Handler in my class in which i am making a datagrid ,am overriding its onColumnSort method. public void onColumnSort(ColumnSortEvent event) { } here in this method ,how can i find the name of my column who has been clicked. Regard

Facing exception: java.lang.RuntimeException: Deferred binding failed for 'com.google.test.client.CustomDataGridResources' (did you forget to inherit a required module

2012-01-31 Thread vaibhav jain
Hello All, I have created the interface import com.google.gwt.user.cellview.client.DataGrid; import com.google.gwt.user.cellview.client.DataGrid.Resources; import com.google.gwt.user.cellview.client.DataGrid.Style; public interface CustomDataGridResources extends Resources { @Source("../pu

Re: Apllying CSS in DataGid in GWT2.4

2012-01-30 Thread vaibhav jain
exact exception is java.lang.RuntimeException: Deferred binding failed for 'com.google.test.client.CustomDataGridResources' (did you forget to inherit a required module On Tue, Jan 31, 2012 at 12:18 PM, vaibhav jain wrote: > Hi kiran, > I tried as you told me but i

Re: Apllying CSS in DataGid in GWT2.4

2012-01-30 Thread vaibhav jain
ng code to specify class name: > > > dataGrid.getElement().setClassName("dataGridEvenRow"); > > > Best Regards, > Kiran > > On Mon, Jan 30, 2012 at 3:57 PM, vaibhav jain wrote: > >> >> Hello Experts, >> How can i change my DataGrid l

Apllying CSS in DataGid in GWT2.4

2012-01-30 Thread vaibhav jain
Hello Experts, How can i change my DataGrid look and feel in gwt2.4,I tried to simply define the property in my CSS to change the background color of even rows, .dataGridEvenRow { background: #FF3030 !important; } and in code i used dataGrid.setStyleName("dataGridEvenRow"

Re: Can we add RootLayoutPanel into other panel in GWT 2.4??

2012-01-25 Thread vaibhav jain
msg/google-web-toolkit/-/XIwu2GT4l64J. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/

Can we add RootLayoutPanel into other panel in GWT 2.4??

2012-01-25 Thread vaibhav jain
Vertical/HorizontalPnael. Regards, Vaibhav Jain. -- 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@googlegroups.com. To unsubscribe from this group, send email to google-w

Re: Example of code using Data Grid of GWT2.4

2012-01-24 Thread vaibhav jain
Any one can also look at the code given at: http://rvsoni.wordpress.com/2011/10/25/gwt-datagrid-with-pagination-using-simple-pager/#comment-37 On Tue, Jan 24, 2012 at 9:50 PM, vaibhav jain wrote: > Thanks a lot .I tried the same and it worked. > > > On Tue, Jan 24, 2012 at 9:21 PM,

GWT 2.4 List Box with Scroll Bar

2012-01-24 Thread vaibhav jain
other remaining elements. Regards, Vaibhav Jain. -- 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@googlegroups.com. To unsubscribe from this group, send email to google-web-t

Re: HELP.. ADDING IMAGE TO PushButton.

2012-01-24 Thread vaibhav jain
be from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- vaibhav jain. -- You received this message because you are subscribed to the Google Group

Re: HELP.. ADDING IMAGE TO PushButton.

2012-01-24 Thread vaibhav jain
ogle-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- vaibhav jain. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gro

Re: Example of code using Data Grid of GWT2.4

2012-01-24 Thread vaibhav jain
glegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- vaibhav jain. -- 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-too

Re: Deleting the contents of a GWT DataGrid Widget

2012-01-23 Thread vaibhav jain
Hi, Can you please mail me some example of data grid having sorting ,paging and editable columns features,I am new to GWT and haven't found any example in java doc. Thanks in advance. Regards, Vaibhav On Jan 6, 2:08 pm, Thomas Broyer wrote: > dataProvider.getList().clear() ? -- You received

Example of code using Data Grid of GWT2.4

2012-01-23 Thread vaibhav jain
Hello Experts, I need to implement the DataGrid of GWT 2.4,Can you please share with me any running example of Data Grid,I looked into the code given at java doc for Data Grid,they have used cell table by mistake in example code of Data Grid. Thanks, Vaibhav -- You recei

Re: Collapsible Component in GWT2.4

2012-01-19 Thread vaibhav jain
/AWuBKFhUgTQJ. > To post to this group, send email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. &

Collapsible Component in GWT2.4

2012-01-19 Thread vaibhav jain
=1723 I have made the classes as given in above link,i just want to do the task by these classes. -- vaibhav jain. -- 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@googlegrou

Documentation of GWT

2011-12-26 Thread vaibhav jain
Hi, I am new to GWT.I have seen documentation of GWT available on links like http://code.google.com.I want to know if there is any way to download this documentation as a PDF because i have limited access to internet. Thanks and Regards, Vaibhav -- You received this message because you are s