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

ShellComboBox.InitComplete Event

Supported in: ActiveX , Java

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

Syntax

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