Hi Nur,
If you want to use reference selector then you have to create the Scenario_B object & save the value in DB & Associations then you will be able to select the value from reference selector.
If you want to use another entity(Enum_Value) value in the dropdown just search the dropdown field -> take dropdown toolbox instead of reference selector -> then select your enum value from association.
But if you want to use the enumeration values in the dropdown without association-> take an enumeration attribute in your SecondMileStone entity -> Go to your dataview -> take a dropdown(search in toolbox) -> select your Enumeration attribute.
Then you will be able to select your enumeration value directly.
Hope you like the answer
Hi Nur,
To show a data in reference selector you need to create object in Entity 1 by choosing the enumeration in dropdown, Then only you can able to choose the enumeration value in reference selector in Entity 2 object
Hi Nur,
In simple words for Scenario B you mightn't need reference selector but use Dropdown make sure Scenario B object create and associated to SecondMilestone.
Extra notes:
Scenario A case was different you can use reference selector since the attribute was String, But Scenario B attribute type Enumeration so use dropdown thats enough.
Hope this helps.
A reference selector, let's you set an association to another object. If the other objects do not exist (in your database), you cannot select them.
So your options are:
You can create an entity (table) to hold records representing the list of options displayed in your reference selector. Each object in this entity corresponds to an option, enabling you to dynamically update the list as needed.
From your context entity, establish an association to this options entity, allowing the reference selector to display the dropdown list.
Additionally, you can apply filters to the list of options using the 'Selectable objects' tab, tailoring the dropdown to meet specific criteria.
Or, just nest your dataview with the entity holding the enumeration and use a dropdown widget instead of a reference selector.