use of org.eclipse.scout.rt.ui.html.json.IJsonObject in project scout.rt by eclipse.
the class JsonBeanColumn method cellValueToJson.
@Override
public Object cellValueToJson(Object value) {
IJsonObject jsonObject = MainJsonObjectFactory.get().createJsonObject(value);
JsonBean jsonBean = (JsonBean) jsonObject;
jsonBean.setBinaryResourceMediator(getJsonTable().getBinaryResourceMediator());
return jsonObject.toJson();
}
Aggregations