Skip to content
Snippets Groups Projects

Reload Edit Mode toolbox after creating RTs and Properties

Merged Henrik tom Wörden requested to merge f-fix-117 into f-boot-tour
1 unresolved thread
Files
8
+ 0
16
@@ -1158,22 +1158,6 @@ async function retrieve_dragged_property(id) {
return transformation.transformProperty(entities);
}
/**
* Retrieve all properties and record types and convert them into
* a web page using a specialized XSLT named entity palette.
* @return An array of entities.
*/
async function retrieve_data_model() {
// TODO possibly allow single query
let props = await connection.get("Entity/?query=FIND Property");
let rts = await connection.get("Entity/?query=FIND RecordType");
for (var p of props.children[0].children) {
rts.children[0].appendChild(p.cloneNode());
}
return transformation.transformEntityPalette(rts);
}
/**
* Update an entity using its xml representation.
* @param xml The xml of the entity which will be automatically wrapped with an Update.
Loading