Skip to main content
1-Visitor
March 2, 2021
Question

how to convert model to relationmodelowner

  • March 2, 2021
  • 1 reply
  • 1274 views

Hi

 

I have model object and want to convert it to relation owner object for weblink. How to get the same?

1 reply

15-Moonstone
March 3, 2021

Model is already RealtionOwner because Model extends RelationOwner .. I have not used weblink but in Jlink I would do this:

 

Model model = session.GetCurrentModel();

RelationOwner relOwner = (RelationOwner) model; //casting model to relation owner, but I suppose you do not have to cast it in javascript because it is dynamically typed language so it will automatically handle inheritence

 

However I do not have to cast it in Jlink because it already have RelationOwner methods so both of theese is valid:

model.GetRelations();

relOwner.GetRelations();