Hi All,
i'm trying to concatinate Name attribute from a column in a SubGrid to one field.
I added a JS code to the subgrid to get the id and the name, but i don't know how can i put them in other field in the form.
function RunOnSelected(executionContext) {
var selected = executionContext.getFormContext().data.entity;
var Id = selected.getId();
var Name = selected.attributes.getByName("cr5a2_name").getValue();
}
any idea please?