mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-04 12:17:41 +08:00
Correct attributes for Tree #PL-2569
This commit is contained in:
parent
8b5ecee262
commit
6cdc7f4573
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user