This documentation is for the old version. Go to the latest Upload Suite docs

UploadPane.InitComplete Event

Supported in: ActiveX , Java

Raised when this instance of the UploadPane is completely created and initialized.

Syntax

JavaScript
<script type="text/javascript" src="iuembed.js">  </script>
<script type="text/javascript">
function UploadPaneID_InitComplete() {
	//...your code...
}
var up = new UploadPaneWriter("UploadPaneID", 610, 500);
//...params...
//...other event listeners...
up.addEventListener("InitComplete", "UploadPaneID_InitComplete");
//...other event listeners...
up.writeHtml();
</script>