I placed the entity for editing the matrix in the Web form
For instance
Inside the entity, there is an attribute named name
Use select input instead of text input
Select inputelement with the name of another data class (product list) and a list of attributes named
I want to use
For more information on the method you are thinking of now
In the on load event of the Web form
Create entity selection from Product data class
Output of namelist(collection) from Entity selection
Refer Namelist to datasource
5.Select input to bind data source
Is this the right way to go?
You can directly use the select box component and bind it with your selection and only display the name attribute, or bind your select box with a collection of objects having the name as a property (eg newCollection({name:“Product1”};{name:“Product2”};{name:“Product3”})) .
The binding with selection, same case with an array of objects:
Don’t forget, that you have the possibility to enable the search by attribute, to ease the selection when you have many entites
For the Select input component, bind it to the attribute of the entity of the specified datasource
And I want the element list to be bound to a list of different data sources to select
If I got you right, you want to bind your selectbox with an entity selection of type dataClass_A and you want to store the selected element’s name in another entity of different type, say dataClass_B, then you can try copying the selected item attribute in your new entity’s name like so:
Mechanism for selecting input to Entity from a list and simplifying operation
(Standard action for copying from entity1.attribute to entity2.attribute)
I understood that this standard function can be done almost no-code
In this article, we learned how to copy from Entity1.attribute to entity2.attribute