Hi,
I've prepared an Upload configuration to fit my best understanding of your scenario:
- Disabled automatic upload. This gets us a "Upload files" button after a file is selected.
- Disabled multiple file selection.
- Changed remove and upload button text
- Moved upload button next to remove button
Or in pseudo-code:
$("#exp").kendoUpload({
localization: {
remove: "Remove expenditure",
uploadSelectedFiles: "Add expenditure"
},
multiple: false,
async: {
autoUpload: false
},
select: function() {
// Move the "Upload files" button next to the remove button...
}
});
The end result:
A live sample is available here:
http://jsbin.com/ufovir/2/edit
Please, feel free to share more details in case I misunderstood your scenario.
Regards,
Tsvetomir Tsonev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework -
download Kendo UI now!