Is it possible to restrict the "Owner" filter for Timeline components to only show Contacts which match a specific filter condition? We are currently seeing every Contact as an option, but for us this should be restricted to only Contacts which have a User record associated with them, and ideally we'd want to add some more customisation to the filter options beyond this.

Like 0

Like

9 comments
Best reply

I've discovered that it's possible to add this using code. To do so, you need to override the crt.LoadDataRequest handler and use the following code:

{
	request: "crt.LoadDataRequest",
	handler: async (request, next) => {
		// Filter Timeline's Owner filter to just Contacts with a User record
		if(request.dataSourceName === "ByOwnerQuickFilterInTimeline_xi3lpgm_ComboBox_List_DS") {
			const filter = new sdk.FilterGroup();
			await filter.addExistsFilter("[SysAdminUnit:Contact:Id].Id");
 
			// workaround for filters
			const newFilter = Object.assign({}, filter);
			newFilter.items = filter.items;
 
			request.parameters.push({
				type: "filter",
				value: newFilter
			});
		}
 
		return await next?.handle(request);
	}
},

You have to replace the name of the Timeline component in the above code from Timeline_xi3lpgm to whatever the component is called on your page.

Hello Harvey,



There is no such option for now, however, we've registered it in our R&D team backlog for consideration and implementation in future application releases.

 

Thank you for helping us to improve our product. 

Thanks Bogdan, it's definitely a feature that's needed - having every Contact show up in the Owner filter with no way to change this on a CRM platform isn't ideal.

I've discovered that it's possible to add this using code. To do so, you need to override the crt.LoadDataRequest handler and use the following code:

{
	request: "crt.LoadDataRequest",
	handler: async (request, next) => {
		// Filter Timeline's Owner filter to just Contacts with a User record
		if(request.dataSourceName === "ByOwnerQuickFilterInTimeline_xi3lpgm_ComboBox_List_DS") {
			const filter = new sdk.FilterGroup();
			await filter.addExistsFilter("[SysAdminUnit:Contact:Id].Id");
 
			// workaround for filters
			const newFilter = Object.assign({}, filter);
			newFilter.items = filter.items;
 
			request.parameters.push({
				type: "filter",
				value: newFilter
			});
		}
 
		return await next?.handle(request);
	}
},

You have to replace the name of the Timeline component in the above code from Timeline_xi3lpgm to whatever the component is called on your page.

Harvey Adcock,

good find, thanks!

You should mark your own answer as solution ;)

Harvey Adcock,

Well done! Thanks for sharing this Harvey. 

Also, if you've moved to 8.1.1 you no longer need the filters workaround - it's finally working properly in 8.1.1, just thought I'd mention.

Ryan

Ryan Farley,

Ahh great to hear, thanks for the info Ryan - and thanks for spreading the info about that workaround in the first place!

I'd like to share my solution on lookup filtering.

We wanted to have only contacts from our company and in certain functional role.

{
	request: "crt.LoadDataRequest",
	handler: async (request, next) => {
		if (request.dataSourceName !== "FbContact_List_DS") {
			return await next?.handle(request);
		}
 
		const ourCompanyFilter = new sdk.CompareFilter(
			sdk.ComparisonType.Equal, 
			new sdk.ColumnExpression({
				columnPath: "Account.Type"
			}), 
			new sdk.ParameterExpression({
				value: Constants.AccountType.OurCompany
			})
		);
 
		const funcRoleFilter = new sdk.CompareFilter(
			sdk.ComparisonType.Equal, 
			new sdk.ColumnExpression({
				columnPath: "[SysAdminUnit:Contact:Id].[SysUserInRole:SysUser:Id].SysRole.Id"
			}), 
			new sdk.ParameterExpression({
				value: Constants.FunctionalRole.MyCustomFunctionalRole
			})
		);
 
		request.parameters.push({
			type: sdk.ModelParameterType.Filter,
			value: ourCompanyFilter
		});
 
		request.parameters.push({
			type: sdk.ModelParameterType.Filter,
			value: funcRoleFilter
		});
 
		return await next?.handle(request);
	}
}

 

Alex Zaslavsky,

Interesting, it hadn't occurred to me to push multiple filters to the parameters. I've always added the multiple filters to a FilterGroup and then added the group to the parameters. I guess it's an array for a reason :) Nice to know it works that way as well.

Ryan

Hello , 

Can we set a current user as a default in timeline quickfilter ? 

Show all comments

Hi,



I am trying to add a new entry in the following because I enrolled a new Activity Type: Notes.



Do you know how to modify this, addon?



Below is the TimelineEntityValues where I want to add another entry.

 

Like 2

Like

1 comments

Hello Solem,

To make changes to the addon, you can modify the Modifications package node of the addon structure.

There is an article in Creatio Academy with an example of how you can customize the Timeline component: https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

Show all comments

Is it possible within Freedom UI to trigger a refresh of the Timeline/Feed/Next Steps components using JS? We seem to have an issue where the "Enable live data update" option does not seem to be working in Creatio CRM 8.1 for our Activities on certain pages, and while we've raised a support request for this, we were trying to find a workaround by manually updating the components from code for a specific use case, but we can't see what the data source is called for these types of components. Does anybody know what it would be? I presume refreshing the PDS would refresh them, but this seems heavy handed and might end up with data being lost on the main form page while the data actually being refreshed is just a child entity, so I would expect it to have its own data source.

Like 3

Like

3 comments

+1

Hello Harvey and Damien!

In Freedom UI Pages, the structure of the page is different and along with this a new way to refresh anything on the page. In this article you can find the way to achieve your goal:

https://customerfx.com/article/refreshing-reloading-page-or-list-data-on-a-creatio-freedom-ui-page/

Here's example of handler which you can use:

handlers: /**SCHEMA_HANDLERS*/[
 {
  request: "crt.HandleViewModelAttributeChangeRequest"/* The custom implementation of the system query handler. */
  handler: async (request, next) => {
   await next?.handle(request); 
   if (request.attributeName === 'Your Attribute Name' )
   {
    const handlerChain = sdk.HandlerChainService.instance;
    await handlerChain.process({
     type: 'crt.LoadDataRequest', $context: request.$context,
     config: { loadType: 'reload' },
    dataSourceName: 'Data Source Of Obj You Want To Refresh'
    });   
   }
  }
 },

You may also find this article useful:

https://customerfx.com/article/receiving-server-side-messages-in-a-creatio-freedom-ui-page/

 

Anhelina,

 

How can we find what the data source is for a component like a Timeline or Next Steps component though? The article suggests looking at the modelConfig elements in the page code, but none of these seem to relate to the timeline or timeline tiles. I expect there is some data source being created behind the scenes but finding out what it's called is the main problem for applying the theory of being able to reload anything on the page as is suggested.

 

Many thanks,

Harvey

Show all comments

Hello community,

 

I am trying to bring timeline for custom section. I have created a record in TimelinePageSettings table. To update the data i used the below script. So when i am using the full json ,timeline tab is not showing on the UI. When i am using the json with only SocialMessage it is working properly for messages. I have checked appending Id to reference column name but it didnt work .  I might be missing a step , please help me out.

 

 

UPDATE TimelinePageSetting

SET Data = CONVERT(varbinary, '[

  {

    "entityConfigKey": "706f803d-6a30-4bcd-88e8-36a0e722ea41",

    "entitySchemaName": "Activity",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "09a70391-b767-40ab-97b8-6d1b538adbe6",

    "entitySchemaName": "Activity",

    "typeColumnName": "Type",

    "typeColumnValue": "e2831dec-cfc0-df11-b00f-001d60e938c6",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

{

    "entityConfigKey": "35b5c45f-36e7-450f-a282-81c56624d29e",

    "entitySchemaName": "SocialMessage",

    "referenceColumnName": "EntityId",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "aeca6df0-5c89-4066-bdfa-eff486ae8fed",

    "entitySchemaName": "Call",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "59de07a7-28dd-4dc9-a106-a07cb9981423",

    "entitySchemaName": "UsrCreditCheckFile",

    "typeColumnName": "Type",

    "typeColumnValue": "529bc2f8-0ee0-df11-971b-001d60e938c6",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  },

 

  {

    "entityConfigKey": "09a6dad5-036b-4075-a813-e8278a5360ea",

    "referenceColumnName": "UsrCreditCheck",

    "typeColumnName": "Type",

    "typeColumnValue": "539bc2f8-0ee0-df11-971b-001d60e938c6",

    "entitySchemaName": "UsrCreditCheckFile",

    "masterRecordColumnName": "Id"

  },

  {

    "entityConfigKey": "a5900576-dca5-4d82-aed3-91c8909a3028",

    "entitySchemaName": "Document",

    "referenceColumnName": "UsrCreditCheck",

    "masterRecordColumnName": "Id"

  }

]')

WHERE Id = 'D15FD665-AAD3-4AC7-8F1A-54DC5342E616';

 

Like 0

Like

1 comments

Hello,

 

You need to create a custom item view module based on the Contact object and add it to the Leads section. Please use this article as a reference where the same task is described using a custom "Books" section added as timeline item to the "Accounts" section.

Show all comments

Hello,



Anyone experience that Email are not visible in Section > Timeline > Email for other users?



Note:

- Object permission for Activity is set as All Employees > All Employees.

- User I tried logging in has no Email Account.



What could possible be the solution/issue?



Regards,

Solem A.

Like 0

Like

4 comments
Best reply

Solem Khan Abdusalam,

 

Please find more information here.



Best regards,

Bogdan

Hello Solem,

 

The emails on the timeline are only visible to the users, who have access to the 'can read/edit any data' operation permission.



Best regards,

Bogdan

Bogdan,



I saw the option and the Object "Activity" already has the user's role and Create/Edit/Delete are already check.



Regards.

Solem A.

Solem Khan Abdusalam,

 

Please find more information here.



Best regards,

Bogdan

Bogdan,

 

Work's like magic!



Thanks,

Solem A.

Show all comments

Hi community,

 

I was wondering if there was a way to add a "PRINT" button to a section which when clicked will export a whole tab (in this case the timeline tab) to PDF or directly print the whole timeline tab ?

 

I am pretty sure that it needs some coding to be done but in which way ?

Is it necessary to call some APIs via C# code ?

 

Many thanks for the help provided.

 

Best regards,

Jonathan

Like 1

Like

5 comments

Hi Jonathan,

 

The timeline tab displays information from connected entities (like activities or orders and so on). That's why this task can be completed without additional development by the correct specifying of the table part in the printable and exporting data needed.

Hi Oleg,

 

Thank you for the answer. I have searched a bit in the system but did not found how to achieve this.

 

Can you explain me a bit further "by the correct specifying of the table part in the printable and exporting data needed."

 

Many thanks,

Jonathan

Jonathan Quendoz,

 

there is no separate documentation on this matter since this functionality is similar to the details functionality on the page. You can setup table part in printalbes here:

Once you select adding a new record there you will see the page where you can select the object you are interested in and the connection setup between your master object (from which the print will be performed) and the target object (where connected data is located). In this example below:

my master entity is the "Contacts" section (since I create a Word report based on it) and the target entity is the "Activity" section. Once saved you can get the information on the "Subject", "Start" and "Due" columns of all activities connected to the contact from which the printable was generated and only activities where this contact is specified as "Owner" will be displayed. Additional filtration of activity records can be added to the "Table filters" tab (in the screenshot above).

 

In the report designer you can add this table part as in this example below:

As a result once you print data you will get this file:

Just perform a couple of tests using report tables and using them you will be able to get the same data that is located in the timeline.

Oleg Drobina,

 

When exporting the "Email" Activity type, how can I export the whole email text ? I have tried with the "body" column but it print the whole html body and not only the text.

 

In addition, how can I export all the activites from the timeline ? I have tried to implement it your way but id has printed only the last activity of the concerned contact.

 

Many thanks for the clarifications.

 

Best regards,

Jonathan

Jonathan Quendoz,

 

It should export all activities related to the contact, maybe the filtration or the connection was specified in the way that made the system to get only one activity instead of several activities. Maybe its because the contact you are interested in is not an owner or reported of missing activities, but is present as the activity participant in those activities.

 

As for the email - the body column in the object contains the HTML code as well (that is then displayed in the "Rich_text" column type so that's why you don't see HTML tags). In this case a custom macro should be created to process the subject column and remove HTML tags from it. For example you can create a custom macro as described here for the "Subject" column and inside this macro process the received HTML code using the code below (received from base method that is used in the incident registration from incoming emails where email body goes to the case description):

protected virtual string ClearHtmlText(string inputString) {
			var htmlWithoutImages = Regex.Replace(inputString, @"(<img\/?[^>]+>)", string.Empty, RegexOptions.IgnoreCase);
			var noCss = Regex.Replace(htmlWithoutImages, @"/\*.+?\*/", string.Empty, RegexOptions.Singleline);
			var noFormatting = Regex.Replace(noCss, @"/<!--[\s\S]*?-->/g", string.Empty, RegexOptions.IgnoreCase);
			var noStyle = Regex.Replace(noFormatting, "<style.*?</style>", string.Empty, RegexOptions.Singleline);
			var noScript = Regex.Replace(noStyle, "<script.*?</script>", string.Empty, RegexOptions.Singleline);
			var noHTML = noScript.Replace("\r\n</span>", " </span>");
			noHTML = noHTML.Replace("</span>\r\n", " </span>");
			noHTML = Regex.Replace(noHTML, @"<div>|<li>", "\r\n");
			noHTML = Regex.Replace(noHTML, @"\r\n{2,}", "\r\n");
			noHTML = Regex.Replace(noHTML, @"<[^>]+>|", string.Empty);
			noHTML = Regex.Replace(noHTML, "<.*?>", string.Empty);
			noHTML = HttpUtility.HtmlDecode(noHTML);
			noHTML = Regex.Replace(noHTML, @"^\s+$[\r\n]*", "\r\n", RegexOptions.Multiline);
			noHTML = Regex.Replace(noHTML, @"<base[^>]*>", string.Empty, RegexOptions.IgnoreCase);
			if (noHTML.StartsWith("\r\n")) {
				noHTML = noHTML.Substring(2, noHTML.Length - 2);
			}
			return noHTML;
		}

 

Show all comments

Activities are a powerful tool, but it seems that their functionality is limited by cut features.

 

A key one is the Timeline view.  Can that tab be added to the standard Acitivities page?

 

I am using Sales Team module, version 8.0.1.1990.

1 comments

Dear John,

 

Thanks for sharing your idea!

 

We have registered it for R&D team to implement this feature in future releases.

 

Best regards,

Anastasiia

Show all comments

It would be nice to have the ability to review the comments people make on feed posts when looking at the timeline of the case. Currently you can only see the feed post on the timeline, to see if there are comments, you have to open the feed tab.

1 comments

Hello Mitch, 



Thank you for sharing this idea with us. 

We will register it for the responsible R&D team for the further consideration.



Kind regards,

Roman 

Show all comments

hello community,



in the Account section page, i'm trying to change the display of some timeline tiles (the Order one for example). I can hide some fields i don't need by modifiying the TimelineTileSetting data ('0ef5bd15-f3d3-4673-8af7-f2e61bc44cf0' for Order).



Fine, but if i also want to add new fields in the tile : i then added my own UsrTimelineItemViewModel and UsrTimelineItemView for that.

Then i added a corresponding TimelineTileSetting and finally changed TimelinePageSetting to make it match .

 

Unfortunately, i can't make it to work. The displayed tile keep to be the old one,

it's like the updated TimelinePageSetting is not read by the system.

No matter what i do, logging out, clear cache...

 

What am i missing, please ?

 

best regards.

Patrice

Like 0

Like

2 comments

Dear Patrice,

 

Try to follow this guide on how to add a custom object to the timeline

https://academy.creatio.com/documents/technic-sdk/7-13/timeline-tab

 

Regards,

Dean

Hello Dean,

thanks for the answer.

In my case, i use 7-17 so i went to https://academy.creatio.com/documents/technic-sdk/7-16/introduction-17



So in AccountPageV2's TimelinePageSetting, i changed the original data, from 

          {

            "entityConfigKey": "0ef5bd15-f3d3-4673-8af7-f2e61bc44cf0",

            "entitySchemaName": "Order",

            "referenceColumnName": "Account",

            "masterRecordColumnName": "Id"

          },

to

          {

            "entityConfigKey": "9843b156-452f-463c-8cb6-7e9b3e3d5499",

            "entitySchemaName": "Order",

            "referenceColumnName": "Account",

            "masterRecordColumnName": "Id"

          },



which hold my new TimelineTileSetting Id.

is it not supposed to work like that ?



am i supposed to add a whole new TimelinePageSetting for my AccountPageV2 section like described in documentation ? or can i modify the existing one ?



Regards,

Patrice

Show all comments

Hello colleagues

 

We install https://marketplace.creatio.com/template/marketing-record-types-timeline today and after it get NOTHING on Timeline tab, please see at https://prnt.sc/vojm67

 

I uninstall the package and continue having no Timeline content, please your help. I also close the session, clear cache, but nothing, no Timeline ☹

 

How can I restore my Timeline content?

 

Thanks in advance

Like 0

Like

4 comments

Hi Julio,

I've not used that marketplace add-on, so only guessing, but since the UI isn't even loading on the timeline tab, I would assume there is an error occurring in the client-side code. If you open the browser dev tools is there an error that shows in the console or on the network tab? If so, that might help track down the issue.

Ryan

Ryan Farley,

Thanks Ryan, yes it give an error. Also, I reported to Creatio support, because at this time I uninstall the add-on and continue having no Timeline. Here is the error I get on console

performanceLogger.js:346 GET https://nodos-cl.creatio.com/0/Nui/Terrasoft/EsqTimelineDataProvider.js?_dc=1606251564623 404
XMLHttpRequest.send @ performanceLogger.js:346
(anonymous) @ polyfills-es5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:1
O.i.<computed> @ polyfills-es5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:1
loadScriptFile @ all-combined.js:6
require @ all-combined.js:6
syncRequire @ all-combined.js:6
(anonymous) @ all-combined.js:6
instantiate @ all-combined.js:6
(anonymous) @ all-combined.js:6
(anonymous) @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:49
Terrasoft.each @ all-combined.js:36
_initDataProviders @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:49
init @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:49
initDataStorage @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
(anonymous) @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
e @ all-combined.js:41
(anonymous) @ all-combined.js:41
execCb @ require.js:1702
check @ require.js:883
enable @ require.js:1176
init @ require.js:788
(anonymous) @ require.js:1466
setTimeout (async)
req.nextTick @ require.js:1821
localRequire @ require.js:1455
requirejs @ require.js:1803
Terrasoft.require @ all-combined.js:41
requireDataProviders @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
e @ all-combined.js:41
(anonymous) @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
e @ all-combined.js:41
callback @ all-combined.js:6
initialize @ _bundle_6.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:38
(anonymous) @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
e @ all-combined.js:41
callback @ all-combined.js:6
(anonymous) @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
(anonymous) @ all-combined.js:41
execCb @ require.js:1702
check @ require.js:883
enable @ require.js:1176
init @ require.js:788
(anonymous) @ require.js:1466
setTimeout (async)
req.nextTick @ require.js:1821
localRequire @ require.js:1455
requirejs @ require.js:1803
Terrasoft.require @ all-combined.js:41
initTimelineFiltersProfile @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
e @ all-combined.js:41
Terrasoft.chain @ all-combined.js:41
(anonymous) @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
callback @ all-combined.js:6
(anonymous) @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
e @ all-combined.js:41
callback @ all-combined.js:6
(anonymous) @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
querySysSettings @ all-combined.js:41
initGoogleTagManager @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
e @ all-combined.js:41
callback @ all-combined.js:6
(anonymous) @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
callback @ all-combined.js:6
(anonymous) @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
(anonymous) @ all-combined.js:41
execCb @ require.js:1702
check @ require.js:883
enable @ require.js:1176
init @ require.js:788
(anonymous) @ require.js:1466
setTimeout (async)
req.nextTick @ require.js:1821
localRequire @ require.js:1455
requirejs @ require.js:1803
Terrasoft.require @ all-combined.js:41
requireProfile @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
initializeProfile @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
e @ all-combined.js:41
Terrasoft.chain @ all-combined.js:41
init @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
callParent @ all-combined.js:6
init @ _bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45
(anonymous) @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:28
(anonymous) @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:28
tryReturnCache @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:33
(anonymous) @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:33
(anonymous) @ all-combined.js:41
execCb @ require.js:1702
check @ require.js:883
enable @ require.js:1176
init @ require.js:788
(anonymous) @ require.js:1466
setTimeout (async)
req.nextTick @ require.js:1821
localRequire @ require.js:1455
requirejs @ require.js:1803
Terrasoft.require @ all-combined.js:41
getSchema @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:33
build @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:33
generateSchemaStructure @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:28
init @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:28
fn @ core-base.js:110
safeExecute @ core-base.js:904
initModule @ core-base.js:107
_processModule @ core-base.js:210
(anonymous) @ core-base.js:305
execCb @ require.js:1702
check @ require.js:883
enable @ require.js:1176
init @ require.js:788
(anonymous) @ require.js:1466
setTimeout (async)
req.nextTick @ require.js:1821
localRequire @ require.js:1455
createModuleInstance @ core-base.js:304
(anonymous) @ core-base.js:411
execCb @ require.js:1702
check @ require.js:883
enable @ require.js:1176
init @ require.js:788
(anonymous) @ require.js:1466
setTimeout (async)
req.nextTick @ require.js:1821
localRequire @ require.js:1455
(anonymous) @ core-base.js:409
execCb @ require.js:1702
check @ require.js:883
enable @ require.js:1176
init @ require.js:788
(anonymous) @ require.js:1466
setTimeout (async)
req.nextTick @ require.js:1821
localRequire @ require.js:1455
loadModule @ core-base.js:408
injectedSandbox.loadModule @ core-base.js:682
loadModule @ _bundle_0.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:41
callModelMethod @ all-combined.js:41
(anonymous) @ all-combined.js:41
fire @ all-combined.js:6
continueFireEvent @ all-combined.js:6
fireEventArgs @ all-combined.js:6
fireEvent @ all-combined.js:6
onOwnerCtAfterRenderOrAfterRerender @ all-combined.js:41
fire @ all-combined.js:6
continueFireEvent @ all-combined.js:6
fireEventArgs @ all-combined.js:6
fireEvent @ all-combined.js:6
onOwnerCtAfterRenderOrAfterRerender @ all-combined.js:41
fire @ all-combined.js:6
continueFireEvent @ all-combined.js:6
fireEventArgs @ all-combined.js:6
fireEvent @ all-combined.js:6
render @ all-combined.js:41
setVisible @ all-combined.js:41
setControlPropertyValue @ all-combined.js:41
c @ all-combined.js:41
T @ all-combined.js:21
g @ all-combined.js:21
h @ all-combined.js:21
c.trigger @ all-combined.js:21
set @ all-combined.js:21
set @ all-combined.js:41
callParent @ all-combined.js:6
set @ all-combined.js:41
activeTabChange @ _bundle_7.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:5
callParent @ all-combined.js:6
activeTabChange @ _bundle_7.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:5
callParent @ all-combined.js:6
activeTabChange @ _bundle_5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:35
callModelMethod @ all-combined.js:41
(anonymous) @ all-combined.js:41
fire @ all-combined.js:6
continueFireEvent @ all-combined.js:6
fireEventArgs @ all-combined.js:6
fireEvent @ all-combined.js:6
setActiveTab @ all-combined.js:41
onTabClick @ all-combined.js:41
eval @ VM9367:7
k @ all-combined.js:6
value @ polyfills-es5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:1
value @ polyfills-es5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:1
value @ polyfills-es5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:1
p @ polyfills-es5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:1
h @ polyfills-es5.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:1
Show 53 more frames
VM4677:3 Uncaught TypeError: c is not a constructor
    at eval (eval at getInstantiator (all-combined.js:6), <anonymous>:3:8)
    at Object.instantiate (all-combined.js:6)
    at Object.create (all-combined.js:6)
    at i.<anonymous> (_bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:49)
    at Object.Terrasoft.each (all-combined.js:36)
    at i._initDataProviders (_bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:49)
    at init (_bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:49)
    at initDataStorage (_bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45)
    at i.<anonymous> (_bundle_10.js?hash=bdb8b91ac2da4b9591ee94e2f0737aef:45)
    at e (all-combined.js:41)

 

Hi Julio,

Did you tweak any other settings in Timeline (such as adding info about other Creatio objects)? Or did any errors occur when compiling Creatio?



I have reproduced your case, but Timeline has been successfully restored after uninstalling the package. That's why we need more information to investigate this error.



I have forwarded your initial issue with Timeline to the responsible team.



Sorry for the inconvenience. 

Alexander Demidov,

Hi Alex,

 

I made a simple video of what's happening with the Marketing Timeline app from Marketplace, please see at https://share.vidyard.com/watch/JfP8dVHLKVEyXDrHcyWXq2? 

Show all comments