ZOHO Creator subform link

ZOHO Creator subform link

Dear Community Support,

I am looking for some guidance on how to add a clickable link within a Zoho Creator subform. The goal is for this link to redirect users to another Creator form where they can edit the data related to the specific row they clicked on.

Currently, I am using the following code to populate my subform upon form load:

reg = input.Reg_Num;
hw_records = HW[Registration_Number_HW == reg];
info hw_records.count();
for each  hw in hw_records
{
row = Connected_Assets.HW_Installed();
row.Dev_Serial_HW=hw.Dev_Serial;
row.Cat_Number_HW=hw.Cat_Number;
row.Status_HW=hw.Status;
row.Reg_Number_HW=hw.Registration_Number_HW;
row.HW_ID=hw.ID;
if(row.HW_ID != null)
{
hwID = row.HW_ID.toString();
reportURL = "https://creatorapp.zoho.eu/myapp/MyAssetst#Report:HW_Report?ID=" + hwID;
row.OpenHWPopup="<a href='" + reportURL + "' target='_blank'>Edit</a>";
}

input.HW_Installed.insert(row);

Within this subform, I have a field called `OpenHWPopup`, which is intended to contain the URL for the edit form. However, while this field displays a URL, clicking it in a browser leads to an empty form.

Could you please provide instructions or an example of how I can make this URL in the subform row a functional link that opens the correct edit form with the associated data? Any assistance you can offer would be greatly appreciated.

Thank you for your support.

Best regards,
Andy