ASPxClientUploadControl.SetFileInputCount(count) Method
Specifies the count of the file input elements within the upload control.
Declaration
SetFileInputCount(
count: number
): void
Parameters
Name | Type | Description |
---|---|---|
count | number | The file input elements count. |
Remarks
Use the ASPxUploadControl.FileInputCount property to specify the control’s file input elements count on the server side.
End users can add or remove the file input element by using the add and remove buttons, whose visibility within the upload control is controlled by the ASPxUploadControl.ShowAddRemoveButtons property.
To add or remove a file input element from the control on the client side, use the ASPxClientUploadControl.AddFileInput or ASPxClientUploadControl.RemoveFileInput methods.
See Also