Время создания
Filters
How_to_mark_record_in_creatio_readonly_on_particular_condition
Studio_Creatio
8.0

I want to make a record read-only for all users in Creatio based on a condition.

I have added a checkbox field on the record. When this checkbox is checked, I want the entire record to become read-only for all users.

To achieve this, I created a Business Process that modifies access rights for the record when the checkbox is updated. The process runs successfully without any errors. However, the changes are not getting reflected on the UI users are still able to edit the record.

Could you please help me understand:

  • Is modifying access rights via Business Process the correct approach for making a record read-only?
  • Are there any additional steps required to enforce read-only behavior on the UI?

Any guidance or best practices would be greatly appreciated.

Like 0

Like

0 comments
Show all comments

HIi,

I have a question regarding passing clicked data from list in business process. Using sub-process i was able to get the clicked values ( i think ). 



However i want to pass the value via Read Data for these ID's. I tried several parameter but ended not showing after i click the <?> in the read object. How do i obtain and loop for each of the ID's?



Thanks before!

Like 0

Like

2 comments

Hello,

If I understand your request correctly, you need to read a collection of records in the main process and then pass this collection into a sub-process element. The sub-process will then run as a separate iteration for each of the records.

You can find the specific instructions on how to set up processing of a collection of records in this article:

https://academy.creatio.com/docs/8.x/no-code-customization/bpm-tools/bu…

Hello.

Thanks for the reply. The screenshot i provided is the trace data from the main process, which already gets the selected ID from the list. 

 

However when i try to read the returned ID, it does not show in parameters. How do i read these ID from the Sub Process then proceed to modified them?

 

 

Show all comments
Freedom
mobile
designer
Mobile_Creatio
8.0

Hello all,

We are trying to configure new Mobile app pages using the new Freedom UI mobile designer in 8.3.2. The pages all exist and are connected to their respective apps but even after logging out and logging back in in the mobile app, the new pages do not appear.

Anybody else having issues with the new mobile app pages?

Like 0

Like

1 comments

Hi Kevin,

you can just add this section to Mobile Workplace in system designer

Show all comments
Automatically_move_cases_with_new_email_replies_into_a_dedicated_folder_and_trigger_a_system_notification_to_the_assignee

Hi, 

I need to implement a solution for Case management: whenever a customer replies to an existing case via email, that case should automatically appear in a specific 'Customer Replied' folder. 

Additionally, a real-time notification should be triggered to the case assignee via the notification panel to ensure a prompt response.

Regards,

Sakshi Chadda

Like 0

Like

0 comments
Show all comments
FreedomUI
Javascript
DataGrid
tooltip
hover
Service_Creatio
8.0

Hi Community,

I’m trying to implement a small UX feature in a Freedom UI native DataGrid and wanted to check whether there is any supported/native way to do this.

I have a DataGrid column that contains a masked value. What I would like to achieve is:

  • when the user hovers over that cell (preferred),

or at least:

  • when the user hovers over the row,

I want to show the full value in a tooltip.


I went through the Freedom UI List/DataGrid documentation and page customization docs, but I could not find anything describing:

  • a hover listener / mouseenter event for DataGrid cells or rows
  • a native way to bind a tooltip on hover to a specific grid column
  • a request/handler that is triggered by hovering a native DataGrid cell

So at the moment it looks like hover is not exposed as a native event in the standard DataGrid.

By inspecting the rendered DOM, I can see the table and cells generated by Angular/CDK/Material, for example something like:

document.querySelector('#cdk-drop-list-0')

and column/cell selectors such as:

td[crt-data-table-column-id="f6"]

So one idea I had was to try with plain JS / DOM event delegation, for example:

  • attach a mouseover / mouseenter listener to the rendered table
  • detect when the event target is inside the masked-number column
  • inject a title attribute or custom tooltip dynamically

However, this feels quite fragile because this does not seem like an officially supported Freedom UI extension point.

My question is:

Has anyone implemented hover behavior in a native Freedom UI DataGrid without using a custom component?

More specifically:

  1. Is there any native/supported way to react to hover on a DataGrid cell or row?
  2. Is there any native way to show a tooltip for one specific column?
  3. Has anyone successfully used a DOM hack like querySelector(...).addEventListener(...) for this in Freedom UI?
  4. If hover is not supported, what would be the best native workaround?

If anyone has an example, that would help a lot.

Thanks

Like 17

Like

0 comments
Show all comments