Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2022-06-10 07:17 AM
We have requirement where we have to place an image in a dashboard and on click of that image, user should navigate to create a new Questionnaire record directly.
That dashboard is custom i-view and code is written in HTML to present different dashboard by clicking on the respective image.
Suggest any code to get the below "New" Button behind the image which is present on the "All" Records page. @DavidPetty @Anonymous
2022-06-10 07:25 AM
Just use deep link for creating the record:
https://[BASE_URL]/RSAarcher/default.aspx?requestUrl=..%2fGenericContent%2fRecord.aspx%3fid%3d0%26moduleId%3d[MODULE_ID]
2022-06-10 07:25 AM
Just use deep link for creating the record:
https://[BASE_URL]/RSAarcher/default.aspx?requestUrl=..%2fGenericContent%2fRecord.aspx%3fid%3d0%26moduleId%3d[MODULE_ID]
2022-06-10 07:54 AM
Where can I find the module ID?
2022-06-10 08:09 AM
@Anonymous Your solution worked.Thanks
2022-06-10 08:13 AM
Anytime
2022-06-10 08:13 AM - edited 2022-06-10 08:15 AM
@KunalGandhi use this instead.
$nf('/GenericContent/Record.aspx?id=0&moduleId=419');
To get the module id:
Prior to 6.9 SP3 hover your mouse over the questionnaire and at the very bottom right is the id.
6.9 SP3+ On the Application/Questionaire/Sub-form listing at the top right click on the eye icon and select ID.
Advisory Consultant
2022-06-10 09:03 AM
How can we create a common link for this which should work in my both UAT and PROD environments. @DavidPetty @Anonymous
2022-06-10 09:14 AM
Both ways mine and David will work in both environments if your module id is same. Otherwise, you woudl have to maintain the code in each environment.
2022-11-28 10:56 AM
select * from tblModule
where Alias like '<application name>'
2023-05-18 12:46 AM
@DavidPetty The info in this page helps a lot. I want to check if there is any similar link to navigate to all records within an application. Like when user clicks a button from the dashboard, it directly takes to the modules all records.