Moving Fields location via Script

We have a form with an existing SharePoint attachment field. However, there we'll also need the same field to appear at a different section of the form depending on its status.

At any one point in time, the field will only appear at one location. Is there a way to duplicate or move the field to the other section via script? Also will that maintain to be mobile responsive?

Hello @W.T,

Do you need to display the list of attached files in different sections, or allow users to attach files?

Hi @mnikitina,

Thanks for your response. We want to allow users to attach files. Would you have any possible solution for this?

Do advice.

@W.T,

You can add a custom button that opens the file chooser dialog. Use the code below in the click property:

$('.k-upload-button input').click()

image