|
|
|
|
|
|
|
|
|
|
Re: Xtext Cell Editor [message #1738691 is a reply to message #1738654] |
Fri, 22 July 2016 10:02 |
Philipp Heisig Messages: 26 Registered: November 2014 |
Junior Member |
|
|
I created a CustomXtextStyledTextCellEditor class which extends the XtextStyledTextCellEditor and overides the doSetValue method:
protected void doSetValue(Object value) {
if(value == null){
value = "";
}
super.doSetValue(value);
}
This removes the AssertionFailedException, but the Xtext Editor don't pop up. Instead, I can just write every String into my property. However, I've right now no clue how to get it run.
---Edit---
I attached a new example to represent the current state
[Updated on: Wed, 27 July 2016 13:19] Report message to a moderator
|
|
|
Powered by
FUDForum. Page generated in 0.05966 seconds