I'm developing my own custom Angular component for Creatio. I would like to use some of the standard components within it, such as a lookup field. How can I achieve this?
Is it possible to create a custom component that acts as a container for other elements, similar to crt.FlexContainer, which defines an items property for child components?
Unfortunately, it's impossible to reuse components in custom angular components for now, but Creatio plans to add such functionality in future releases.
Sorry, but we don't know if it can even be achieved using additional front-end development. The only solution we can think of is adding a column to the view you already use where the calculation will be performed automatically and displayed in the pivot table.
In the basic configuration, there is no option to display all rows as collapsed by default in the pivot table functionality. We have noted this idea to our R&D team. You might consider implementing a fixed style for lists using development tools.
I see we have already implemented automatic feedback receiving when and add satisfaction level when recevied. I want to record date when we receive the feedback. Any suggestion? I have tried with business rule but it doesn't udpate the to current date when satisfaction level is filled in. Does anyone know whereabout of logic for CSAT score so I look into modifying code to achieve this.
I recommend using a business process, because business rules work only on the case page, so if a field is changed by a user in the UI, a business rule will be triggered. Since the feedback is filled in through internal services without interaction with the case page, the business rule will not work because there will be no trigger for its execution. Therefore, set up a process that will change the required fields in the case and fill in the required fields.
In our project we are producing with Creatio application some printable document (.pdf and .doc).
In these document we are inserting some Rich Text fields but in the document produced we are not able to visualize/report all the style changes done on the Rich Text field.
As of now, it's not possible to correctly display the field with HTML formatting in the printable.
Our R&D team has already been informed and is currently working on the mentioned issue.
As a workaround suggestion, you can replace the rich text field with a simple text field. We understand that it’s missing the format settings and cannot be applied to tables, but it should work for a sentence or two simple comments.
Thank you for being an active part of the community and helping to make Creatio better!
No that's not what I'l looking for. What I want to do is what history.replaceState(state, unused, url) does in JS. change the shown url and the browser history, but not navigate.
Ah I see now. I've not noticed any equivalent of that in the devkit. I've seen a navigationservice and router classes as possibilities in the internal code, but they aren't exposed in devkit.
Might take a little playing with to figure out how to get the other params passed for stateObj, pageTitle, etc. Searching the source for "crt.7XRequest" would likely find some examples of similar requests.
The above will populate the UsrSomeName column on the detail with the value of the UsrName column on the current page and also populate UsrSomeDate on the detail using the value of the CreatedOn of the page.
You can also use values that don't exist on the page, for example:
Hi, when in a section that contains a multiple cases. you change from one case to another with a field change, a button is shown to validate the case change.
Is there a way to avoid this? I want to progress bar to automatically update from one case to the other without user intervention.
I'm having a scenario where I need to add two custom columns in attachment detail and need to edit that.So I have overridden the LinkPageV2 and added those two columns in diff.Now the fields are displaying in the required section attachment detail.However other section showing error in console stating that the columns are not found in that sectionFile Object
Is there a way to dynamically load diff based on the condition/for a particular section only?