Hi Community,

I installed this  https://marketplace.creatio.com/app/multiple-choice-field-setup-creatio   on our development system version "7.15.3.1649". I added the required codes on our page and it's working as expected. There are few problems with this addon on our page.

1) When...MoreLess

Like 1

Like

20 comments

Hi JP Ngo,

I have forwarded your problems to the responsible team. I will let you know the results by the end of this week.

Show all comments (19)

Hi;

We run the process like that

            ProcessSchema schema = userConnection.ProcessSchemaManager.GetInstanceByName("UsrSendExtraPaymentCancellationToNav");

            bool canUseFlowEngine = ProcessSchemaManager.GetCanUseFlowEngine(userConnection...MoreLess

Like 0

Like

1 comments

Dear Tomasz,

Unfortunately, I could not reproduce the issue. The provided code worked fine on my end. However, I can suggest two ways of how...MoreLess

Show all comments

Hello Community!



While we are aware that the Creatio web application is primarily an 'online' application and does not support offline usage, Will a loaded page stay as is, if network disconnects for a few minutes? I did a quick check on a pre configured page and it stayed as is. I was able to resume...MoreLess

Like 0

Like

2 comments
Best reply

    Hello!

    Yes, the loaded page won't crash until you try to refresh it.

When you have some page or the list of...MoreLess

Show all comments (1)

First off all, if you're just accessing the local install via localhost, you can turn on a development certificate in the bindings for the website...MoreLess

Show all comments (5)

Hi 

I made a Multi Select lookup as described in this article using ConfigurationEnums:

https://academy.creatio.com/documents/technic-sdk/7-16/creating-detail-selection-lookup

It can be also done using LookupMultiAddMixin as described on this article:

https://academy.creatio.com/documents/technic-sdk/7-15/adding-multiple-records-detail

Theses...MoreLess

Like 0

Like

1 comments

Dear Oren,

In order to implement the required functionality please debug the “BaseManyToManyGridDetail” and “LookupPage” schemas. Please feel...MoreLess

Show all comments

Hello all,

After I selected Object to inherit access permissions I clicked publish and I got the error: Internal failure occurred while running MSBuild. Has my change been published or more likely it did not? Will this affect my package?

Regards

Like 0

Like

3 comments

Hi Yania,

You are using the trial PostgreSQL build and we need to reproduce the same behavior on our end so to tell you the exact reason. Can...MoreLess

Show all comments (2)

Hi;

I create the edit page which contain editable detail on it

When i run this page from section or from process i can edit this detail

when i run it from another edit page by the link in noneditable detail i cant edit it there is no add button and when i enter the detail the data disapear.

Regards

Tomek

Like 0

Like

1 comments

Usually, when the data is disappearing, I have had the wrong columns set in the Detail setup in the Page Wizard. If the detail is looking for...MoreLess

Show all comments

Hi;

My wait for timer element last extreamly long

I set wait for timer for 30 secont it takes almost 3 days

any ideas.

Details in attached file

Regards

Tomek

File attachments
Like 0

Like

1 comments

Hi Tomek,

Seems that you have a huge number of processes that use the timer element and that's why the scheduler can't process some of the...MoreLess

Show all comments

I am searching for any article or guidance to add an confirmation message when user tries to change status in a section record, the system first asks user via confirmation message(pop up). The pop message should state whether if you are sure to change state or not with Yes or No option.

I only that there will be use of localizable strings in object schema but how it all adds up to create a pop message.

can anyone help in this matter?

Thank you

Like 0

Like

8 comments
Best reply

I do have this article describing how to show various prompts in Creatio via code, like confirmation dialogs etc.

https://customerfx.com/article/displaying-information-confirmation-and-error-dialogs-in-bpmonline/

Is...MoreLess

Show all comments (7)

Hi 

I want to create a query on a Section Schema in the same way I do it normally on a Page Schema.

On a Page Schema It usually starts with getting the current record ID like this:

var recordID = this.get("Id");

But when I do the same on the Section Schema I get an undefined value to my recordID variable.

Does some one know how to fix this issue ?

Like 1

Like

3 comments

Since the Section Schema is a list, you cannot get the Id by simply using:

this.get("Id")

Instead you must use the following to first get th...

MoreLess

Show all comments (2)