Hi community
I want to filter lookup field in detail of a page on the basis of record of another section and the page is in freedom UI and object of that detail is in classic UI
 

Like 0

Like

1 comments

Hello!

Thank you for submitting the post on the Community!

Could you please provide more details regarding your task so we can better understand...MoreLess

Show all comments

Hello Team,

I have a requirement that I need solution for.

Is there any possibility to populate the detail having same lookup field value as that of this record as soon as the lookup value is populated and thee record  is still not saved i.e. whenever I click on new and fill a value in a perticular...MoreLess

Like 0

Like

2 comments

That sounds like something you'd have to implement with code, as it's a bit of a specific requirement to have them showing as being updated...MoreLess

Show all comments (1)

Hi Community,

I've created a detail in FreedomUI that adds attachments to the SysFile table. But upon upload, I can see the newly added file in the detail only after reloading the whole page. 

I tried to reload the detail on upload using the following code but it didn't work:



{

  ...MoreLess

Like 1

Like

2 comments

Hello,

Please try reloading using this code

setInterval(async ()=>{
                                const handlerChain = sdk.HandlerChainService...

MoreLess

Show all comments (1)

Hi community,

I made a custom button in the product in order detail action menu.

In this button onClick event, I called a business process and had to pass the order's id to it.

How do I get the order id from within the product in order detail schema so that I can pass it to the business process?

Thank you!

Like 0

Like

2 comments
Best reply

Hi,

You can use:

this.get("MasterRecordId")

to get the master record Id value and use it in the click handler method.

Show all comments (1)

Hi community,

I read the article (https://community.creatio.com/questions/add-action-detail) in Creatio community and added a button in the action menu of our order product detail.

But the visibility seems not working. May you help me to adjust the code below? What I

need is to show the button when...MoreLess

Like 0

Like

2 comments
Best reply

Hi Andrew,

Please use the following approach:

methods: {
				addToolsButtonMenuItems: function(toolsButtonMenu) {
					this.callParent(arguments...

MoreLess

Show all comments (1)

I have a button on a detail that I want to use to filter the records in the said detail upon clicking it. The Apply filter option doesn't seem to be there. Quick filters seem to be working for a section but not on a detail. 

Anyone knows a possible solution ?

Regards,

Abilash

Like 0

Like

2 comments

hi Abilash,



Have you checked by refreshing the page?

Did you debug to see the execution of the Detail button event?



If the execution of the...MoreLess

Show all comments (1)

Hi all,

I wanted to add a mini page to add a record to a detail that does not exist as a section. It is created based on a new object. How can we achieve this?

Thank you.

Geeviniy

Like 0

Like

1 comments

Hello Geeviniy, 

You can add and configure a mini page for the section. In case you have a custom object and there is obviously no oo...MoreLess

Show all comments

Hi, community.

 

Is there a way to make a "Detail" read-only on mobile?

I need to hide the "Add" and "Delete" buttons in "Detail" according to some rules.

I know that in the web version we can do this with the code below:



 

getAddRecordButtonVisible: function() {return false; },          

editCurrentRecord: () => false,

getEditRecordMenuItem: Terrasoft.emptyFn,

getCopyRecordMenuItem: Terrasoft.emptyFn,

getDeleteRecordMenuItem: Terrasoft.emptyFn,





 

Thanks,

Tiago Pierine.

Like 0

Like

7 comments

Hi Tiago,

There is a getChangeModeOperations method for each page\view\gird controller and is specified in the following manner in th...MoreLess

Show all comments (6)