Re: GWT Check-List-Box?

2012-05-18 Thread Hamzeh
Thanks!
Certainly. I am working on it and have gotten some good results too.
But I thought something may be available.

On May 18, 11:55 am, Dimitrijević Ivan  wrote:
> You can make it.
>
>
>
>
>
>
>
> On Monday, May 14, 2012 3:34:34 PM UTC+2, Hamzeh wrote:
>
> > Hi,
> > I need something likehttp://code.google.com/p/dropdown-check-list/in
> > GWT.
> > Is there anyone? I know some big GWT-based libraries may implement
> > this or more than this (like SmartGWT), but I prefer a small and pure-
> > GWT one.
> > Thanks.

-- 
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.



GWT Check-List-Box?

2012-05-14 Thread Hamzeh
Hi,
I need something like http://code.google.com/p/dropdown-check-list/ in
GWT.
Is there anyone? I know some big GWT-based libraries may implement
this or more than this (like SmartGWT), but I prefer a small and pure-
GWT one.
Thanks.

-- 
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.



DataGrid vs CellTable

2011-12-30 Thread Hamzeh
Hello,
Can anyone tell me what is the difference between DataGrid and
CellTable? When should we use which one?
It seems GWT documentations uses CellTable in DataGrid API page as an
example (http://google-web-toolkit.googlecode.com/svn/javadoc/latest/
com/google/gwt/user/cellview/client/DataGrid.html).
Are they same?
Thanks.

-- 
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.



Re: How to align header/footer text in cell table

2011-12-28 Thread Hamzeh
It may help:

SafeHtmlHeader header = new SafeHtmlHeader(new SafeHtml() {

@Override
public String asString() {
return "My Column Header";
}
});
myCellTable.addColumn( myCol,  header);

Clearly you can change 'center' with your favorite align.

On Dec 16, 9:26 am, Vivek Dudani  wrote:
> Hey guys,
>
> can u tell me how to fix the issue in case of CheckboxCell.
> I need to allign the CheckboxCell in the header column. how can i do that?
>
> Thanks

-- 
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.



Re: Workaround for Embedded objects

2011-05-12 Thread Hamzeh
I am not sure, but try:
public enum PermissionEnum implements Serializable{ ...

On May 11, 5:23 pm, Jerome Thoma  wrote:
> Could you please provide more information on using enums? I am trying to use
> a custom enum type:
> public enum PermissionEnum{
> ...}
>
> in an EntityProxy as:
>     PermissionEnum getPermission();
>     void setPermission(PermissionEnum permission);
>
> The PermissionEnum type is declared in a package that is accessible from
> both the server and the client.
> When I request an object from the server, it all works fine, but when I try
> to send an object to the server for persisting I get a ServerFailure
> exception stating that:
> Server Error: The requested entity is not available on the server
> Does this have anything to do with the use of the enum type?
>
> Cheers
> Jerome

-- 
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.