i can't add new text field to contact (customer360app) module



Collection "EntitySchemaColumnCollection" item "EntitySchemaColumn" with unique identifier "{65DB5BF4-C253-4BD3-8988-CA1C6397A7EE}" not found.

Like 0

Like

3 comments

Hello Arkadiusz Polus,

 

This is not a typical error and it does not recreate OOTB.

 

Please contact Creatio support directly at support@creatio.com. It would be required to inspect this particular issue individually.

 

Best Regards,

Dan

Hello Arkadiusz Polus,

Did you get the answer for this issue? Because I have the same issue.

Thanks, 

Timea

Timea Losonc,

Hello Timea,

 

Please contact Creatio support directly at support@creatio.com providing the details of your issue. This is not a typical error and, thus, each case should be inspected individually.

 

Best regards,

Yuliya

Show all comments

How to trigger event in string text field.

 

Example: I want to open document lookup when there is changes in the value of text field 

Like 0

Like

1 comments

Dear Fulgen,

See this example to find out how to create a method that watch for changes in some fields. In simple words, you will need creating an attribute, that will have dependencies on needed columns and fires a method. You can see many examples in the configuration like this one:

attributes: {

                    "Status": {

                        "lookupListConfig": {

                            "orders": [{columnPath: "Position"}]

                        },

                        "dependencies": [

                            {

                                "columns": ["Status"],

                                "methodName": "onOrderStatusChanged"

                            }

                        ]

                    },

...

where:

"columns": ["Status"] - list of columns where you watch for changes

"methodName": "onOrderStatusChanged" - method that fires when "Status" column is changed

Show all comments

I have a string text field which I want to do is open a document lookup whenever I hit [Enter] on it.

Like 0

Like

1 comments

Dear Fulgen,

I have answered here how to watch for changes in a field. Pressing Enter fires the changing event. If you need more complex logic, you may need to create your own controls. Follow this link to see how.

Show all comments