Hi community!

I need that instead of navigating the tabs by means of the arrow ->, they are shown in a list below, to be able to see them all together without having to navigate. That is, they are displayed in various rows depending on the amount that exists.

Any idea?

King Regards,

Ezequiel

Like 0

Like

2 comments

Hello Ezequiel,

You'll need to add the following CSS:

.ts-tabpanel {
    height: auto;
}
 
.ts-tabpanel-items {
    overflow...

MoreLess

Show all comments (1)

Is it possible to specify date formatting when using email templates?

Like 0

Like

1 comments

Dear Carlos,

As for now there is no such functionality, but I'll inform our R&D team about this issue and suggest them to implement it....MoreLess

Show all comments
Question

Hi;

I check value of field (attribute) on page in onRender method

sometime it work correctly and sometime it show error that this.get("usrStatus") is undifined

here is my code,

            onRender: function() {

                var that = this;

                setTimeout(function() {

                    if (that.get("UsrStatus").value === "22a42a46-1f02-46d4-8a1b-e947631a0671") {

                        that.set("justClosed", true);

                        that.sandbox.publish("UnblockManClosed");

                    }

                });

                this.callParent(arguments);

            }

Regards

Tomek

Like 0

Like

4 comments

Try putting the code in onEntityInitialized instead of onRender. With your setTimeout it likely sometimes gets the timing right that the...MoreLess

Show all comments (3)

Hi. 

how can I use password protected excel for Template in Excel Report Builder ?

It showing below error when I generate the report.

Like 0

Like

1 comments

Dear Visitor,

Most likely it is not possible to use password protected excel file as a template in the application. I would suggest...MoreLess

Show all comments

Hi, community.

I am experiencing something strange... When logged in as the supervisor, I can see email and telephone for leads and contacts both in the left bar and in the communication options area, but when logged in as any other user, I can only see them in the left bar, but not in the communications options area ...

Does anyone know why this happens?

Thank you!

Regards,

Juan Carlos

Like 0

Like

1 comments

Hello.

Most likely it is related to the access rights. We recommend you to check whether you have restricted the access rights for the contact...MoreLess

Show all comments

Hi Community,

This code below gets the Guid of the current user in client side code

Terrasoft.SysValue.CURRENT_USER.value

How about in script task, using C# code what is its equivalent?

Like 0

Like

4 comments

In a script task you have access to UserConnection. This exposes a  CurrentUser property (which provides an object of type SysUserInfo)...MoreLess

Show all comments (3)

Hello community



I am working with a business process using the process element [Call Web Service].

The web service configuration and the call are working correctly.

The JSON response is similar to:

{

"$ totalResults": 2,

"$ startIndex": 1,

"$ itemsPerPage": 100,

"$ resources": [

    &nbs...MoreLess

Like 0

Like

1 comments

get/set a parameter value in a business process script task

var parameter1 = Get<Guid>("Parameter1");

Set("Parameter2", parameter1.ToString())...MoreLess

Show all comments

Is it possible to create a printable for an entity without a section? I looked into source code of ReportService and it seems it should be possible to generate documents for this kind of entities (either by C# or by calling the service from JavaScript) but I'm unable to define the printable, because...MoreLess

Like 0

Like

1 comments

Dear Carlos,

Indeed, you can create a printable without a section and call it by custom development. However, there is no way to add such...MoreLess

Show all comments

Hi Team,

I am implementing the approval in my custom section with three stages in a case as attached. User was able to edit the record field when the approval is in progress. I have made the approval step as required in the stage but no success. Please suggest. I have tried adding a new approval record and approval task in business process and linked the business process in my stage but no success. 

Thanks,

Venkat.

File attachments
Like 0

Like

1 comments

Hello.



The approval itself does not lock the record, it is just a step needed to go to the next stage. Your idea with the access rights element...MoreLess

Show all comments

I added a tab to a previously empty tab list in a detail object. I've removed all fields and details inside the tab, but when I select the 'X' for removal, nothing happens.

Like 0

Like

1 comments

Dear Jordan,

You can delete tab from the page by commenting it in the schema directly. To do so you'll need to find the detail schema in configuration...MoreLess

Show all comments