hi, all~~
I have some problem with checkbox.
My project has DataGrid. And It has CheckboxCell in Column.
Chrome Browser work very well.
But IE8 Browser has some promblem.
in IE8, CheckboxCell don't receive event.
(If install Chrome Frame, it work vert well... But I Don't use it. Our user
environment Not Support.)
How can I resolve this problem.
*** GWT ver : 2.4.0
*** Code ****
CheckboxCell checkCell = new CheckboxCell(true, false){
@Override
public void onBrowserEvent(Context context, Element parent, Boolean value,
NativeEventevent, ValueUpdater<Boolean> valueUpdater) {
User selectedUser = dataProvider.getList().get(context.getIndex());
if(value == false)
{
String name = null;
if(LocaleInfo.getCurrentLocale().getLocaleName().equals(LocalizableResource.KR))
name = selectedUser.getName();
else
if(LocaleInfo.getCurrentLocale().getLocaleName().equals(LocalizableResource.EN))
name = selectedUser.getNameEn();
ClientDataManager.getInstance().addSelectedItem(name,
selectedUser.getEmail(), selectListKind);
}else{
//결과 리스트에서 삭제
ClientDataManager.getInstance().deleteSelectedItem(selectedUser.getEmail());
}
}
};
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/nWuL7f_jqFkJ.
To post to this group, send email to [email protected].
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.