Editor i18n options for Upload/UploadMany
Editor i18n options for Upload/UploadMany
Hi!
I use uploadMany
field in my Editor definition and I need to localize it.
I'd try to change noImageText
, but nothing has changed in the editor's interface.
I want to change Upload button's caption too, but don't find how I can do it.
{
label: "Images:",
name: "files[].id",
type: "uploadMany",
display: function ( fileId, counter) {
//return all_files.files[fileId].filename;
return $.fn.dataTable.Editor.files.files[fileId].filename;
},
dragDrop: false,
noImageText: 'Добавьте файлы'
}
Can I change Upload button caption from "Choose file..." to other string?
P.S. I still use DataTables Editor v1.5.1.
This discussion has been closed.
Replies
You want to use the
uploadText
option of theupload
field type.Allan
Thank you. My my carelessness. Read the docs, but do not see before(.