I have a Public Form that is connected to a Sharepoint list which updates the Sharepoint fields.
The Only issue is that I cannot get the Ink Sketch Signature Field to show the Signature on the Sharepoint List.
When I use the Sharepoint Forms Designer, the Ink Sketch Field appears, However, I need the Form to be a public form and not from Sharepoint.
Is there a command line that needs to be entered to make this appear? or is there another solution? Help.
Dear @Michaelp,
Have you looked at this guide here? It should help you achieve what you need - Save Data Table, Ink Sketch, and Likert Scale to SharePoint — Plumsail Web Forms Documentation
Thank you for the quick response Nikita, I have read and applied the instruction which is provided in [quote="Nikita_Kurguzov, post:2, topic:17015"]
Save Data Table, Ink Sketch, and Likert Scale to SharePoint — Plumsail Web Forms Documentation
[/quote]
however, where My issue is mainly being encountered is where I am using the Plumsail WEB Form designer to create the form, and I see the InkSketch on the Plumsail Submissions in my plumsail account, however, when I view the linked Sharepoint List, all fields are populated with my form response, however, the ink sketch field is blank and there seems to be no means to link this field to the WEB Form InkSketch Field. This is where my problem lies and where my Questions leads.
Dear @Michaelp,
Are you using a direct connection to SharePoint? If so, it might be not supported at the moment.
I am using the "Connect to external service" option and connecting to SharePoint when I create the form and am connecting to my SharePoint tenant when designing a public WEB form for creating and updating items in a SharePoint list. The content type is Item and the connection is showing as connected.
when I add the InkSketch field, it does not provide me with any option to add any link or coding as when using "Plumsail Forms for SharePoint 3.8.7".
Dear @Michaelp,
Yes, unfortunately, it's not yet supported out of the box, but you can save it to a Multiline Plain text field with the following JS code:
fd.rendered(function () {
fd.control('InkSketch1').$on('change', value => { fd.field('TextField').value = value; });
});
