+ Add post
Hello,
I am using the following link to create multi select from a detail using my custom sections.
https://academy.creatio.com/documents/technic-sdk/7-16/adding-multiple-…
whenever i add the following :
mixins: { // Connecting the mixin to the schema. LookupMultiAddMixin: "Terrasoft.LookupMultiAddMixin" },
the detail does not display, when i remove it, the detail displays but i cannot add anything.
Did anyone face this kind of behavior ?
Maher.
Like
Hi maher,
What errors do you see in the browser console?
Ryan
Ryan Farley,
Hello Ryan,
I get the below error:
Ryan thank you for your reply, i fixed it, i forgot to add the LookupMultiAddMixin string at the top of the schema.
In fact your article on customerfx made me realize my mistake.
Regards,
Hi all,
I found the "ContactPageV2" use method "syncEntityWithCommunicationDetail" when changing value of any community option. So, how can I override that method in my "ContactPageV2"?
Thanks
Hello Mai,
You need to simply override the basic method and put your logic in it. Here is the Creatio Academy article that will be useful.
Best regards,
Oscar
syncEntityWithCommunicationDetail : function(){
this.callParent(arguments);
YOUR CODE HERE;
}