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 0

Like

3 comments

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,

Maher.

Show all comments

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

Like 0

Like

2 comments

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;

}

Show all comments