CheckboxSelectionModel: uncheck All is not working in Firefox

2009-01-04 Thread Cris

Hi

I am using CheckboxSelectionModel to CheckAll/UncheckAll. This check
box is working fine in IE.But in Firefox Uncheck all is not working
(i.e. all the checkboxes are not getting unchecked when click on
header checkbox). Check all is working fine. Iam using Firefox 3.0.5

Please help me

Cris
--~--~-~--~~~---~--~~
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-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Problem with GWT RPC call with List of DTO objects

2008-12-13 Thread Cris

Hi
My requirement is as below.
1. I have a DTO  as below with setters and getters for the same
 package com.gwt.sample.client.data

 public class TempDTO implements IsSerializable
 {
   private String name;
   private String condition;
 }

2. My RPC stuff is as below
   package com.gwt.sample.client
   public interface MyService extends RemoteService
   {
 List getNames();
   }

  package com.gwt.sample.client
  public interface MyServiceAsync
  {
void getNames(AsyncCallback async);
  }

3. Servlet is
  public class MyServlet extends RemoteServiceServlet implements
MyService
  {
public List getNames()
{
  List rs = new ArrayList();
  TempDTO dto1 = new TempDTO();
  dto1.setName(A1);
  dto1.setCondition(Set);
  rs.add(dto1);
  return rs;
}
  }

When made a request to this MyServlet I am getting strange error in
browser Could not complete the operation due to error c00ce514
number:
This error message is (throwable.getMessage()) is displaying in
onFailure() method.

The same code is working fine if I pass List of strings. The problem
is only with List of DTOs.

Please, can anyone help me.

Thansk,
Cris


--~--~-~--~~~---~--~~
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-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Expandable rows in GWT ext table grid

2008-12-08 Thread Cris

Hi
Can any help me in how to create an expandable rows using gwt ext.
(i.e. on click on an icon the entire table row should be expanded ).

Thanks in advance
Krish
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



problem with CheckboxSelectionModel

2008-12-05 Thread Cris

Hi,
I am using CheckboxSelectionModel to create a column with list of
checkboxes. when I click on any column of the row the checkbox is
getting selected. How can I remove this checkbox selection.

I used the following steps to create the Checkbox cloumn

final CheckboxSelectionModel cbsModel = new CheckboxSelectionModel();
CheckboxColumnConfig ckbCol = new CheckboxColumnConfig(cbsModel);

Please help.

Thanks and regards,
Cris
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



How to add checkbox as header in table

2008-12-04 Thread Cris

Hi,
I am using GWT-ext to create grid. I need to create an table with
multiple columns. One of the column should have checkbox as header.

For ex: Defined 'FieldDefs' and 'ColumnDefs' as below

FieldDef[] fieldDefs = new FieldDef[]{
  new StringFieldDef(company),
  new FloatFieldDef(price)};

ColumnConfig[] columns = new ColumnConfig[]{
  new ColumnConfig(Company, company, 160, true, null,
company),
  new ColumnConfig(Price, price, 35)};

So I need to add one more checkbox column. How to do that.

Please give your suggestions

Thanks,
Cris



--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



How to add expandable table row using gwt-ext

2008-12-04 Thread Cris

Hi,
I am using Gwt-ext to build my table. But I need to implement the
table in such a way that the row can be expandable when I click on +
symbol.

Please provide me example to this

Thanks in advance.

Cris
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---