Enables or Disables the Uploadbox

23 Nov 20171 minute to read

This feature helps set the enable or disable option for Uploadbox by setting Boolean type value to enabled property. For enable or disable option, set enabled property to ‘false’. The data type is Boolean.

The following steps explain the configuration of enabled property in Uploadbox.

In the HTML page, add the <div> element to configure the Uploadbox element.

  • HTML
  • <div id="Uploadbox"></div>
  • JS
  • // Initialize the control in JavaScript.
        $(function () {
            //Declaration.
            $("#Uploadbox").ejUploadbox({
                saveUrl: "saveFiles.ashx",
                removeUrl: "removeFiles.ashx",
                enabled: false
            });
        });

    For JS, configure saveFiles.ashx and removeFiles.ashx files as mentioned in the Save file action and Remove file action respectively.

    The following screenshot displays the output.