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

Hello,

I'm attempting to access a customer feedback page, but I'm unable to do so due to the error message stating "Endpoint not found". Could you please assist me with resolving this issue?

 

 

Like 0

Like

2 comments

Hello,

 

Please make sure that the system setting 'Website URL' is populated correctly: https://yoursite.domain.com/0

Bogdan,

Thank you for your message. Unfortunately, the way you provided didn't work. :(

Show all comments

Hi, I was testing the case section and could not see attachements while logged in as a service agent, but when I tried as an admin I could see it.

 

Any idea about what I should change in order to make it available to my agents?

 

Best Regards

Like 0

Like

1 comments

Hello,



The issue is already fixed in version 8.1.2, so we recommend to update your application.

 

If you require the fix for 8.1.1 please contact support team on this matter.

Show all comments

Hi,

Has anyone managed to run the Creatio application as an external IDE on a Mac?

 

Thanks,

Smadar

Like 0

Like

0 comments
Show all comments
Question

Is there a way to remove from an Application field the link functionality? Some time users click here and there in the application and if the field is configured as a link they open new windows.

File attachments
Like 1

Like

0 comments
Show all comments

Hi!

I need a custom button that will change value in a recaord and then save this record. I've tried it on a OpportunitySectionV2 with this code

 

define("OpportunitySectionV2", [], function() {
	return {
		entitySchemaName: "Opportunity",
		details: /**SCHEMA_DETAILS*/{}/**SCHEMA_DETAILS*/,
		diff: /**SCHEMA_DIFF*/[ 
            {
                "operation": "insert",
                "parentName": "ActionButtonsContainer",
                "propertyName": "items",
                "name": "MainContactSectionButton",
                "values": {
                    itemType: Terrasoft.ViewItemType.BUTTON,
                    caption: { bindTo: "Resources.Strings.OpenPrimaryContactButtonCaption" },
                    click: { bindTo: "onOpenPrimaryContactClick" },
                    "layout": {
                        "column": 1,
                        "row": 6,
                        "colSpan": 1
                    }
                }
            }]/**SCHEMA_DIFF*/,
		methods: {
			prepareResponseCollectionItem: function(item) {
				this.callParent(arguments);
         		if (item.get("MgtImportantFlg") === false){
					item.customStyle = Ext.apply({}, {
					  "background-color": "#cc081c",
					  "font-family": "cursive"
					}, item.customStyle);		  		
		  		}
			},
			onOpenPrimaryContactClick: function(){
				var activeRow = this.get("ActiveRow");
				var bFlag = this.get("GridData").get(activeRow).get("MgtImportantFlg");
					if(bFlag){
						this.get("GridData").get(activeRow).set("MgtImportantFlg",false);
						this.save();
					}
					else{
						this.get("GridData").get(activeRow).set("MgtImportantFlg",true);
						this.save();
					}
			}
		}
	};
});

it change the value in my field but didn`t save it, so after reload shows old value.

Could anyone help me how should i change code for my purposes?

Like 0

Like

1 comments

Hello,

In the section module, it is better to use an UpdateQuery class to change the value of the records. You can find the example here.

Show all comments