Время создания
Filters

I am trying to add an attachment feature when employees are adding new cases. I am able to add it to the "New" cases screen with the web designer: 

 

But when the cases come through, there is no attachment in the file. 

Any help would be appreciated. 

Like 0

Like

0 comments
Show all comments
mobile
file
Studio_Creatio
8.0

How to get the file creation date in the mobile application when downloading it from the gallery or from the file system?


Here is my code:

onFileTypePickerItemTap: function(el, index, target, record) {
    var source = record.get("Source");
    switch (source) {
        case Terrasoft.Configuration.FilesAndLinksDetailFileSources.Gallery:
            Terrasoft.Camera.captureFromGallery({
                success: this.onCameraCapture,
                failure: this.onFail,
                scope: this
            });
            break;
            ...
        }
    }
},

onCameraCapture: function(fileName, url) {

    Terrasoft.Mask.show({message: Terrasoft.LocalizableStrings.UploadingFile});
    if(fileName && url) {
        this.saveFile(fileName, url);
    } else {
        Terrasoft.Mask.hide();
    }
}

Like 0

Like

0 comments
Show all comments
Discussion
version
ApplicationHub

It would be nice if there was some automatic prompt to the user in the app hub when exporting a customer application to update the version number of a customer application. Just a little popup asking if you would like specify the version number, showing the current version number, would make this feature a lot more visible & easy to incorporate into standard workflows.

1 comments

Adding also possibility to add notes of changes in the new version number so it's directly documented in the app would be great add to be able to direcly see new changes and history of changes.

Show all comments
google
calendar
calendar integration
Studio_Creatio
8.0

Hello all,

I recently connected my instance of Creatio to my Google Calendar and the synchronization connected successfully but it brought in only a fraction of events on my calendar. The integration seems to have skipped over every recurring meeting. Is there a way to bring those meetings in? That seems like a huge gap otherwise.

Like 0

Like

0 comments
Show all comments
Adding_Custom_Icons_to_Freedom_UI_Indicator_Widgets
Studio_Creatio_enterprise_edition
8.0

Hi everyone,

I’m also looking for guidance on using custom icons/images in Creatio Freedom UI indicator widgets.I want to replace the standard indicator widget icon with my own custom icon, such as an SVG or PNG.I have already uploaded/created the image in Creatio, but I'm not sure how to associate that image with an crt-indicator-widget.

For example, my indicator widget is rendered approximately like this:

   ...
   
       ...
   
   ...

What I want to achieve

I would like to have different custom icons for different widgets:

Not Submit       → custom icon 1
Pending          → custom icon 2
Awaiting Approval → custom icon 3
Approved         → custom icon 4
Rejected         → custom icon 5

Ideally, I would like to configure this through Freedom UI, rather than relying on fragile DOM manipulation.

Questions
What is the recommended way to upload/store a custom SVG or PNG so it can be used by a Freedom UI widget?
How can a custom image from Creatio's image/image library be assigned to an indicator widget?
Can the crt-indicator-widget icon be configured directly through the page schema?
If not, is there a supported JavaScript/request-handler approach?
Is there a way to dynamically assign different custom icons based on the widget?
Can the standard indicator-widget-icon be replaced with a custom SVG while keeping the widget's normal functionality?

I have seen the rendered element:

but I would prefer a supported Freedom UI solution rather than directly modifying the DOM if one is available.

Any examples or documentation for implementing custom icons in Freedom UI indicator widgets would be greatly appreciated.

Like 0

Like

0 comments
Show all comments