Hi praxis73,
#1
You can achieve the first requirement by property "InsertButtonID"
<button id="button1" style="width: 450px; height: 40px" class="auto-style12">
myUpload
</button>
uploader.InsertButtonID="button1" #2
You can hide the upload button after upload in API CuteWebUI_AjaxUploader_OnPostback
Add the code below to the bottom of our page will hide the upload button after upload.
<script>
function CuteWebUI_AjaxUploader_OnPostback()
{
var hidden=this;
hidden.internalobject.insertBtn.style.display='none';
}
</script>
Regards,
Ken