Is it possible to omit setting up telephony parameters?

Hi Community,

Hopefully, my last post about CTI integrations.

Would anyone know if it's possible to omit setting up call center parameters from SetupTelephonyParametersPageModule? I don't need it, but it's mandatory to fill in for the CTI provider to work.

My take is to intercept the setting of ctiSettings.connectionParams with something hard coded in CTIBaseHelper. Does anyone have any better idea?

Like 0

Like

1 comments

I could also use the setting button from module CTIPanel and use it in my side page in freedomUI (i think copying and pasting the code below without changing should work). With that I would have the setting button in my side page instead of going to built in CTI panel. Will try to test it.

				{
					"operation": "insert",
					"index": 1,
					"name": "SettingsButton",
					"parentName": "ctiPanelHeaderContainer",
					"propertyName": "items",
					"values": {
						"click": {"bindTo": "onSettingsButtonClick"},
						"classes": {"wrapperClass": ["settings-button", "cti-settings-btn-wrapper"]},
						"itemType": Terrasoft.ViewItemType.BUTTON,
						"imageConfig": {"bindTo": "Resources.Images.SettingsButtonIcon"},
						"style": Terrasoft.controls.ButtonEnums.style.TRANSPARENT,
						"markerValue": "SettingsButton",
						"hint": {"bindTo": "Resources.Strings.SettingsButtonHint"},
					}
				},
Show all comments