Unfortunately, there is no such functionality in our system to export dashboards.
We have already registered the idea for our R&D team to implement this functionality in further releases. I will assign your case to this project in order to increase its priority.
Could you please elaborate a bit on your business task? Can you share a screenshot of the desirable result or an example of such filter in a system?
If I may refer to the subject of your post "FIXED FILTER ON SECTION", then this functionality can be achieved with a help of development as described in the post shared in my previous comment.
I wanted to implement a funtionality where a validation should happen on click of Approve button. If the valiation fails the approval should not happen.
To achive the above task I tried with the following approaches, on the "UsrReturns" custom object.
Tried to implement "asyncValidate" on "UsrReturnsVisaPageV2", but it didn't work (Seems the approval is happening outside the context of this page). Also not sure what is the use of this page.
Tried to implement validation using Entity Events Layer on the object "UsrReturnsVisa". Although it didn't approve the request, but it didn't throw the exception as well with the following code,
if(true){thrownew Exception("Can not approve");}returntrue;
Tried to implement a custom approval logic using "ApprovalDashboardItemViewModel", but I can not create a replacing schema with this.
So need a way to implement such funtionality. Any suggestions will help.
this is a bad request response returned by the app and we need to see the actual response (from the "Response" tab of the request in the "Network" tab).
To add some logic upon approval you need to replace the "approve" method in the "VisaNotificationsSchema" module (for "reject" actions its "reject" method). You will be in the context of the approval record and you can use data from there to process further with the approval\rejection. So you need to override the logic of these two methods.
We are creating email templates in DEV environment. In the DEV, we are adding link to object in the template and it works perfectly on DEV. But the issue comes when we migrate the changes to higher instances, it still shows the link to DEV.
How we can show the link for the same application from which the email is being sent? Really appreciate any suggestions.
It seems that you are typing the whole link in the string value. Perhaps it would be suitable to replace them with macros and use Website Url (system setting for example) value to populate it.
If your case does not allow you to use macros - please provide more details and screenshots along with step-by-step recreation of the misbehavior and a description of the expected behavior you want to achieve.
Unfortunately, the link to the object is absolute and not website-dependent. You should either modify it manually after migration or use the macros that was mentioned above. It is planned to change this in future versions, but there are no details available yet.
We have a requirement where the user should be able to Copy and paste images into the "Notes" field in the "Attachments and Notes" detail which is available out of the box. Request you to respond if anyone has implemented this before or is aware of the steps.
We've checked the information with a responsible R&D team, and there is no OOB functionality as of now.
We already have a query registered for them to consider implementing such functionality in the upcoming application versions. I will assign your case to it to increase its priority.
Kalymbet Anastasia, Where is the values of the notes saved in the DB? which object to refer and in case if i need to copy the notes into another section notes? is it possible?
Yes, I do this often with CSS. It takes a bit of playing in dev tools to find the correct element to apply the styles to. In the case where you have two details "DetailA" and "DetailB", the styles are typically like this (you'll need to find the element of the detail that has the class "added-detail" to apply these to):
/* DetailA - apply to element with class .added-detail */#AccountPageV2UsrSchema8Detail1c7637b0Container {
display: inline-block;
width:45%;
margin-right: 10px;
vertical-align: top;}/* DetailB - apply to element with class .added-detail */#AccountPageV2UsrSchema6Detail0235cca7Container {
display: inline-block;
width:45%;
vertical-align: top;}
Yes, I do this often with CSS. It takes a bit of playing in dev tools to find the correct element to apply the styles to. In the case where you have two details "DetailA" and "DetailB", the styles are typically like this (you'll need to find the element of the detail that has the class "added-detail" to apply these to):
/* DetailA - apply to element with class .added-detail */#AccountPageV2UsrSchema8Detail1c7637b0Container {
display: inline-block;
width:45%;
margin-right: 10px;
vertical-align: top;}/* DetailB - apply to element with class .added-detail */#AccountPageV2UsrSchema6Detail0235cca7Container {
display: inline-block;
width:45%;
vertical-align: top;}
Does anyone know how to enable approvals in the latest version ? knowing that there's no View>Open section wizard in the section created with the newwest version
Could you please elaborate on the issue and explain what functionality exactly you are not able to find? How did you create the section exactly and how did the "Enable approvals" look in the older sections?
In version 8, i've created a new section in the Application Hub > New Application > New page.
In the older version we used to create a new section in the Section Wizard. Also in the older version, in the section itself, we usually click on View > Open section wizard where we can find multiple section properties including the Enable Approvals checkbox.
Tha't what i'm trying to find in the newest version, as there's now View > Open section wizard in the page.
I have checked this matter with our R&D team and unfortunately "Enable approvals" checkbox is not available in the Freedom UI yet. It is planned to add it in future releases, but it is hard to tell when exactly it will happen.
So what's the current workaround for that ? Supposed we're working on a new section developed using the version 8 and we wanted to enable the approval on it