Correct attributes for Tree #PL-2569

This commit is contained in:
Yuriy Artamonov 2013-09-18 13:32:32 +00:00
parent 8b5ecee262
commit 6cdc7f4573

View File

@ -123,4 +123,14 @@ public class WebWidgetsTree
public void setCaptionProperty(String captionProperty) {
//do nothing
}
@Override
public boolean isEditable() {
return !component.isReadOnly();
}
@Override
public void setEditable(boolean editable) {
component.setReadOnly(!editable);
}
}