01-12-2021 03:28 AM
Hi Team,
I have created a form which lists all the data of a feature in a table. I have used Table, Table Fields and Table Actions.
I want to do following:
For case-1 I have written following on the Table Action -
IG.redirectToWorkflowNode({controller:'FORM', nodeid:'Update_Parcel_Attribute2'})
But it only opens the form for the last record in the database not for the current record.
I have added - urlParams:{id: ROW.id1} -
IG.redirectToWorkflowNode({controller:'FORM', nodeid:'Update_Parcel_Attribute2', urlParams:{id: ROW.id1}})
Now its not opening the Update Feature form.
Please suggest.
Regards,
Shashank
Solved! Go to Solution.
01-15-2021 06:18 AM - edited 01-15-2021 06:19 AM
Hi Shashank,
It should be possible with something like this:
IG.redirectToWorkflowNode({nodeid: 'Update_Parcel_Attribute2', urlParams: {id: {ROW.id1}}})
That's very close to what you have there, but there shouldn't be a need to use the 'controller' parameter specification.
I've tested this in a FormTable here as Action and it works for me. To return to the Form after save the 'FollowNode' parameter can be set.
HTH
sclow
01-18-2021 12:42 AM
Thanks Stephen,
Now it's working fine.
Regards,
Shashank