You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot seem to tackle the problem of multiple file upload from one form.
The problem is that both elements go into the json as base64 under the undefined element.
Am i using this wrong, or is there no way?
Hi.
I cannot seem to tackle the problem of multiple file upload from one form.
The problem is that both elements go into the json as base64 under the undefined element.
Am i using this wrong, or is there no way?
{
name: 'image',
id: 'image',
data: null,
render: function (data, type, row, meta) {
return
<img style='max-width:300px;max-height:300px' src='static\\data\\tool_images\\${data.image_link}'>
;},
type: "file",
title: "Image"
},
{
name: 'image2',
id: 'image2',
data: null,
render: function (data, type, row, meta) {
return
<img style='max-width:300px;max-height:300px' src='static\\data\\tool_images\\${data.image_link2}'>
;},
type: "file",
title: "Image2"
}
The text was updated successfully, but these errors were encountered: