The error indicates that the WebSockets are not properly set up in your local environment.
Please take a closer look at the Setup WebSockets Academy article that describes the process of setting up Creatio configuration files for the correct operation of websockets.
Please let us know in case any additional information is required.
The error indicates that the WebSockets are not properly set up in your local environment.
Please take a closer look at the Setup WebSockets Academy article that describes the process of setting up Creatio configuration files for the correct operation of websockets.
Please let us know in case any additional information is required.
By default in the Calendar section page, it shows only one button "Task" which maps to the edit page of Activity Type - "Task" :
I have added a new edit page of Activity type "Schedule" and overridden the Button Diff to change the caption.
As a result of this, it shows all the edit pages in the Test button DropDown as you can find in the below image. The above code returns all the editPage when count greater than 1.
How to map the "Schedule" edit page button to the Test and remove all the other buttons and the dropdown feature. Similar to how by default "Task" edit page button gets mapped to Task button.
We checked your problem and came up with the following solutions:
1. You may turn off 'Values of the type Lookup' that you don't want to use in your drop-down menu. In this way you'll get just one button to choose. But please be careful because all you previous activities will be shown due to the page that is opened upon clicking on the chosen button. (In your case - Schedule).
2. The second way you can implement it using code (in case option 1 was applied all the changes from option 1 should be reverted before applying the next code):
return page.get("SchemaName") === "UsrActivity1Page"; // Display only activities
});
return result;
} else {
return null;
}
}
}
}
}
}
}
},
]/**SCHEMA_DIFF*/,
methods: {}
};
});
P.S.
In this case you still have a little drop down menu (with one option): UsrActivity1Page - the object page that will be displayed. In this case all your activities remain the same.
We are using two EditPages one is OOTB - "Activity Type - TASK" which is used to create tasks through UI. That's where we need the OOTB button with activity type as "TASK".
Apart from this, we are creating a new custom edit page for Another Activity Type. We don't need to show the button in UI.
If we follow the first option proposed by Bogdon, the business case will get failed.
I need to use both edit pages in the Activity section. But it's enough to show only the OOTB button ("NEW TASK").
We found that sometimes the filters are not showing up on the Calendar page when we switch between the sections. We could see a blank space in the filter area and throws a few errors on the base page.
As you can see in the above image, the filters are hidden.
Error in console,
This is an intermintent issue. Repo rate - 2/5. couldn't able to find the root cause for it as it throws error in the base page.
I had no issues with generating a report in Studio Creatio, Enterprise Edition, version 7.17.2.
Please send us more information to help us reproduce this issue. What we need the most are the name of your Creatio product and its version. Moreover, do you use *.xlsx file templates in your reports? Can you see any error messages in the console after clicking to generate a report?
I have a use case, to data bind the printable and use it across instances. I have dataBinded with the object SysModuleReport,
This is actual dataBind been setup in the instance,
But after the dataBinded and installed in other instance, I could see only Setup report data columns alone be binded but the associated Setup Report Tables are not been binded. As you see in below image,
Can you help me out with this, how to make a complete databind with all the setup in report tables also.
Please email us at support@creatio.com and show us the app. It's impossible to analyze such questions without actual access to the system where bindings were performed and the package developed, unfortunately. We will take the package, install it to the clean app and check the result and if the report tables are not passed to the target website we will check the bindings.
I wanted to understand a bit more about the NotHtmlNote column in the KnowledgeBase table. I tried a few scenarios and notice the following behavior -
Any Knowledge base article is stored as markup in the 'Notes' column and stripped down to pure text (without the mark up tags) and stored in the 'NotHtmlNote' column.
Whenever the knowledge base article is updated & saved, the 'NotHtmlNote' value is re-populated based on the 'Notes' column. This seems to be one way binding and not the reverse. Eg I tried data importing an Excel with junk values in 'Solution without Html tags' column. These junk values did get updated in that column but it never overwrote the 'Notes' column which contains actual mark up to be displayed in the Knowledge base.
I set the NotHtmlNote column value of a Knowledge base article to an empty string directly in the database. The Knowledge base article still perfectly displays on the UI.
Few questions below -
What is the NotHtmlNote column used for?
I would like to directly import Knowledge base articles via the Data base (Through SQL queries). I tried this out by inserting values for the 'Notes' column but ignoring the 'NotHtmlNote' column. This worked perfectly. Pls let me know if there are any gotchas in this approach.
I'm experiencing a problem in the installation process for "Data binding tool for Creatio" market place app, when the configuration dll's compilation starts the installation fails and returns this error:
Autogenerated\Src\GlbDataBindingHelper.GlbDataBinding.cs(323,47) errore CS0246: The type or namespace name 'EntityDataSource' could not be found (are you missing a using directive or an assembly reference?)
We have a Package with a few object schemas and source code schemas and we work out of file development mode. When we upload the files from file system to the application, we get an error saying "The type or namespace name 'Logging' does not exist in the namespace 'Terrasoft.Configuration'. Are you missing an assembly reference". This error happens in a few Autogenerated files (In the C# Class files for new objects we had created).
This is weird because we tried installing this on a brand new Vanilla instance and the same issue persist. Few questions below -
Why does this happen and what is the fix for this?
Is this related to the contents of our package or related to the setup of the instance itself?
Could you please advise if you are seeing an error or a warning?
Is it possible for you to share a screenshot?
In addition, after you receive this message, have you tried 1. Generating the source code and then 2.Compiling the system and checking if there is the same message?
Usually Generating the source code and then compiling the system helps to resolve this issue.