Hello Community! How can order a new custom container in the page?

I need put them on top of the page.

Any cod of example?

Like 0

Like

1 comments

Can I hide/unhide a detail fields group using business rule? If there is a way in page designer please share an example.

 

Thanks!

Like 0

Like

4 comments

Hi,

 In the current version there is no possibility to hide tab on a certain condition within user tools. Though it is already planned by our R&D team for further releases. For now it requires additional development. Please find a discussion which can be useful -  https://community.bpmonline.com/discussion/10833 There are the parts of the code that are used to make the detail visible for the certain group of users only, you can change it for the functionality to meet your needs. 

Lisa

Hi Lisa, 

That link does not lead anywhere. Could you please repost the photo for I am also interested in exploring this possibility.

 

 

Dear Philip,

Here is the link: https://community.bpmonline.com/questions/hide-detail-specific-user

Regards,

Lily

This feature is implemented in Creatio 7.16.3 release via business rules

Show all comments

How can I build a custom Radiobutton list/Checkbox list in BPM'Online Designer? Is there a way? I know you can use looksups to select a single item but I need something like a Radiobuttonlist or checkboxlist to select multiple items.

Appreciate your insight!

Like 0

Like

2 comments

Hello,

You can check the topic about multiselect within the lookup: https://community.bpmonline.com/search?search_api_fulltext=multiselect&field_tags=&sort_by=search_api_relevance

Maybe it can help you to achieve your goal.

Otherwise, you can set a few fields of boolean type one by one on the Section wizard page to make them checked/unchecked.

Please also examine the articles in our development guide regarding radio buttons: https://academy.bpmonline.com/documents/technic-sdk/7-11/controls-introduction

Best regards,

Lily

 

Thanks

Show all comments
Question
Hi there!  this BPM can be installed on a WebLogic server
Like 0

Like

1 comments

Hi,

Oracle can be chosen for on-site installations only. As for the cloud instances, all of them are implemented on SQL servers.

Lisa

Show all comments

Hi there! 

I'm looking an example and a step by step to call an own DLL from an element of BPM, probably "Task Script".

I tried to use something similar to what is proposed in the article: https://community.bpmonline.com/questions/integration-bpmonline-other-a…

but it did not work

Regards.

 

Like 0

Like

1 comments
Question

Hi,

We do need to add a custom lookup field in a custom section to be created.

I created an object in the custom package using the same structure as an existing lookup object (AccountCategory).

The object has been saved and published correctly and i can't find it in the list of objects when i try to create a new lookup table.

Can't find any help in the online documentation.

Thanks in advance for your help.

Eric 

Like 0

Like

2 comments

Hello!



We generally recommend you to add new lookup field from the page designer deirectly. http://prntscr.com/iha3ti

This way the object will be registered automatically.

After that you can access the required lookup in the [Lookups] section and populate it with data. There you have to click New Lookup and  make sure you are entering the correct value for the Title or Name, while creating a new lookup table . 

In case you want to use the object you have created, please make sure that the parent object for the one you have registered is a [Base lookup] object and you are entering either the correct Title or the Name (the name generally contains a code Usr, if you have created the object in the Custom package).

Best regards,

Matt

 

Thanks

 

Show all comments

Hello Community! Is posible make multiline a column with text multiline in a detail?

The idea is show the text with the break lines like the text control multiline.

I did try with CSS but the text is load without the breaklines.

Regards,

 

Like 0

Like

6 comments

Dear Federico,

Unfortunately, currently there is no option to make multi-line fields for the grid. They just don't work there yet. However, such opportunity may be added in one of our future releases. We have added this to our backlog.

Lisa

Thanks Lisa

Lisa any workarround to make that?

Dear Federico,

There is no workaround, I'm afraid. Kindly wait until the functionality is implemented into the out-of-the-box system version. 

Lisa

Lisa Brown,

Hello Lisa! this was implement in the new release 7.12?

Regards,

Dear Federico,

I'm afraid there is no ETA for the implementation yet, so the option will not appear in the nearest releases.

Lisa

Show all comments

Hello Community!

In a script task need get from the EntitySchemaQuery the column name and the value (string) of them.

Any example?

 

Like 0

Like

2 comments

You could create new ESQ instance, then pull columns with the addcolumn method, then do something with that date. 

 

Example:

//Create esq instance 

var esq = new EntitySchemaQuery(UserConnection.EntitySchemaManager, "Account");

//Add column method returns object, and save a reference to column object in var nameColumn

var nameColumn = esq.AddColumn("Name");

//add a filter or more columns . . .

//when youre finished setting up the columns and filter you can run the "GetEntityCollection" method to grab data

var entityCollection = esq.GetEntityCollection(UserConnection);

//do something with data 

return true;

 

What exactly are you trying to do?

Please find the answer in the post by the link below

https://community.bpmonline.com/questions/get-title-columns-esq

Show all comments



Hello community!

Is possible make a formula but get the title of the fields. For example:

The idea is create a string with the Title of the field and the value.

Regards,

 

Like 0

Like

1 comments

Hi Team,

Does anybody have the code snippet to open a new Webpage in a seperate tab from a button action in BPMOnline?

I have a field with link in the Accounts section, I have created a custom button with name "Open Webpage". When user clicks on this button, the link in the custom field has to open in a new seperate tab on the same page.

Please share if you have any code snippet.

Thanks,

Venkat.

Like 0

Like

2 comments

Dear Venkat,

Please find the following example:

1. I bind my button to the custom method:

//button insert code
"values": {
	"itemType": Terrasoft.ViewItemType.BUTTON,
	"click": {"bindTo": "openWindow"}
}

2. Method:

 openWindow: function() {
     var path = this.get("CustomFieldWithURL");
     window.open(path, '_blank');
 }

Hope this will help you.

Regards, 

Anastasia

Hi Anastasia,

It worked for me. Thanks for the reply.

Thanks,

Venkat.

Show all comments